mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
36 lines
1.1 KiB
SCSS
36 lines
1.1 KiB
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @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: $ibo-spacing-400 !default;
|
|
$ibo-notification-entry--long-description--margin-top: $ibo-spacing-300 !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{
|
|
&:not(.ibo-is-closed){
|
|
.ibo-notification-entry--long-description-toggler-icon{
|
|
transform: rotateX(180deg);
|
|
}
|
|
.ibo-notification-entry--long-description{
|
|
display: block;
|
|
}
|
|
}
|
|
}
|