mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-01 23:24:12 +01:00
- Add ObjectFactory for ObjectDetails, ObjectCard, ... - Update SCSS files to integrate its components Note: A big part of the CSS is hardcoded in cmdbAbstract for now as we still need to discuss / work on the migration of the cmdbAbstract APIs (DisplayBareHeader, DisplayBareProperties, ...)
26 lines
849 B
SCSS
26 lines
849 B
SCSS
/*!
|
|
* @copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-object-details--body--padding-top: $ibo-panel--highlight--height !default;
|
|
$ibo-object-details--tabs-list--margin-x: -1 * $ibo-panel--body--padding-x !default;
|
|
|
|
$ibo-object-details--tab-container--margin-x: -1 * $ibo-panel--body--padding-x !default;
|
|
|
|
.ibo-object-details.ibo-panel {
|
|
> .ibo-panel--body {
|
|
padding-top: $ibo-object-details--body--padding-top;
|
|
|
|
> .ibo-tab-container {
|
|
> .ibo-tab-container--tabs-list{
|
|
margin-left: $ibo-object-details--tabs-list--margin-x;
|
|
margin-right: $ibo-object-details--tabs-list--margin-x;
|
|
}
|
|
> .ibo-tab-container--tab-container{
|
|
margin-left: $ibo-object-details--tab-container--margin-x;
|
|
margin-right: $ibo-object-details--tab-container--margin-x;
|
|
}
|
|
}
|
|
}
|
|
} |