/* * @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: $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; } } }