N°3649 - Activity panel: Add notifications

This commit is contained in:
Molkobain
2021-03-11 22:12:44 +01:00
parent 3380b8896a
commit 40d002d9e8
18 changed files with 411 additions and 66 deletions

View File

@@ -0,0 +1,12 @@
/*!
* @copyright Copyright (C) 2010-2021 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
@import "activity-panel";
@import "caselog-entry-form";
@import "activity-entry";
@import "caselog-entry";
@import "transition-entry";
@import "edits-entry";
@import "notification-entry";

View File

@@ -0,0 +1,35 @@
/*!
* @copyright Copyright (C) 2010-2021 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
/* SCSS variables */
$ibo-notification-entry--short-description--text-color: inherit !default;
$ibo-notification-entry--long-description-toggler-icon--margin-left: 12px !default;
$ibo-notification-entry--long-description--margin-top: 8px !default;
/* CSS rules */
/* - Long description */
a.ibo-notification-entry--short-description {
color: $ibo-notification-entry--short-description--text-color;
}
.ibo-notification-entry--long-description-toggler-icon{
margin-left: $ibo-notification-entry--long-description-toggler-icon--margin-left;
transition: all 0.2s ease-in-out;
}
.ibo-notification-entry--long-description{
display: none;
margin-top: $ibo-notification-entry--long-description--margin-top;
list-style: inside;
}
/* - Long desc. opened */
.ibo-notification-entry{
&.ibo-is-opened{
.ibo-notification-entry--long-description-toggler-icon{
transform: rotateX(180deg);
}
.ibo-notification-entry--long-description{
display: block;
}
}
}