N°2847 Add new entry form for activity panel (static atm)

This commit is contained in:
Stephen Abello
2020-10-01 10:05:35 +02:00
parent 7f56911f41
commit c2fe1bc5cb
15 changed files with 276 additions and 5 deletions

View File

@@ -211,4 +211,26 @@ $ibo-activity-entry--sub-information--text-color: $ibo-color-grey-700 !default;
color: $ibo-activity-entry--sub-information--text-color;
@extend %ibo-font-ral-nor-50;
}
.ibo-activity-panel--body--add-caselog-entry--toggler{
@extend %ibo-baseline-centered-content;
border-radius: $ibo-border-radius-full;
width: 36px;
height: 36px;
background-color: $ibo-color-primary-600;
color: $ibo-color-white-100;
position: absolute;
right: 12px;
box-shadow: $ibo-elevation-100;
> i{
height: 100%;
width: 100%;
text-align: center;
font-size: 16px;
line-height: 33px;
}
&:hover {
color: $ibo-color-white-100;
}
}

View File

@@ -106,6 +106,7 @@ $ibo-activity-panel--body--placeholder-hint--color: $ibo-color-grey-800 !default
}
.ibo-activity-panel--tab-toolbar{
display: flex;
flex-wrap: wrap;
}
}
}

View File

@@ -0,0 +1,14 @@
/*!
* copyright Copyright (C) 2010-2020 Combodo SARL
* license http://opensource.org/licenses/AGPL-3.0
*/
.ibo-activity-new-entry-form{
width: 100%;
background-color: $ibo-color-grey-200;
padding: 32px 14px 14px 32px;
}
.ibo-activity-new-entry-form--actions{
margin-top: 5px;
display: flex;
justify-content: space-between;
}