mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 22:24:12 +01:00
24 lines
595 B
SCSS
24 lines
595 B
SCSS
/*!
|
|
* @copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
/* SCSS variables */
|
|
$ibo-dashlet--width: 100% !default;
|
|
$ibo-dashlet--width--is-inline: auto !default;
|
|
$ibo-dashlet--elements-spacing-x: 24px !default;
|
|
$ibo-dashlet--elements-spacing-y: 24px !default;
|
|
|
|
/* Rules */
|
|
.ibo-dashlet{
|
|
width: $ibo-dashlet--width;
|
|
margin: calc(#{$ibo-dashlet--elements-spacing-y} / 2) calc(#{$ibo-dashlet--elements-spacing-x} / 2);
|
|
|
|
&.dashlet-selected {
|
|
position: relative;
|
|
}
|
|
}
|
|
.ibo-dashlet--is-inline{
|
|
width: $ibo-dashlet--width--is-inline;
|
|
}
|