mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-01 06:28:46 +02:00
Refactor SCSS misc. partial to dedicated partials as it was growing too much
This commit is contained in:
21
css/backoffice/utils/helpers/_visibility.scss
Normal file
21
css/backoffice/utils/helpers/_visibility.scss
Normal file
@@ -0,0 +1,21 @@
|
||||
/*!
|
||||
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
.ibo-is-visible {
|
||||
display: inherit !important; /* Note: !important is necessary as it needs to overload any standard rules */
|
||||
visibility: visible !important;
|
||||
}
|
||||
|
||||
.ibo-is-hidden {
|
||||
display: none !important; /* Note: !important is necessary as it needs to overload any standard rules */
|
||||
}
|
||||
|
||||
.ibo-is-transparent {
|
||||
opacity: 0 !important; /* Note: !important is necessary as it needs to overload any standard rules */
|
||||
}
|
||||
|
||||
.ibo-is-opaque {
|
||||
opacity: 1 !important; /* Note: !important is necessary as it needs to overload any standard rules */
|
||||
}
|
||||
Reference in New Issue
Block a user