mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
23 lines
895 B
SCSS
23 lines
895 B
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-dashlet-within-dashboard--dashlet-header-static--margin-top--is-first-dashlet: $ibo-spacing-0 !default;
|
|
$ibo-dashlet-within-dashboard--dashlet-header-static--margin-top--is-not-first-dashlet: $ibo-spacing-400 !default;
|
|
|
|
.ibo-dashboard--grid-row{
|
|
// Margin on top to have a better visual separation like with fieldsets
|
|
.ibo-dashlet-header-static{
|
|
margin-top: $ibo-dashlet-within-dashboard--dashlet-header-static--margin-top--is-not-first-dashlet;
|
|
}
|
|
|
|
// When the ibo-dashlet-header-static is the first dashlet of the dashboard, it must not have margin on top
|
|
&:first-child{
|
|
.ibo-dashlet:first-child{
|
|
.ibo-dashlet-header-static{
|
|
margin-top: $ibo-dashlet-within-dashboard--dashlet-header-static--margin-top--is-first-dashlet;
|
|
}
|
|
}
|
|
}
|
|
} |