mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 20:48:46 +02:00
N°3649 - Activity panel: Add notifications
This commit is contained in:
12
css/backoffice/layout/activity-panel/_all.scss
Normal file
12
css/backoffice/layout/activity-panel/_all.scss
Normal 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";
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user