mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
19 lines
871 B
SCSS
19 lines
871 B
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-object-details-with-tab-container--tab-list--padding-left: calc(#{$ibo-object-details--icon--spacing--as-medallion} + #{$ibo-object-details--icon--size} + #{$ibo-object-details--icon--spacing--as-medallion} - #{$ibo-tab-container--tab-toggler--padding-x}) !default;
|
|
|
|
// Note: We use the child ">" selector to ensure this applies only the child tab container, not another one that would be nested
|
|
.ibo-object-details.ibo-has-medallion-icon {
|
|
> .ibo-panel--body {
|
|
// Only for horizontal tabs
|
|
> .ibo-tab-container:not(.ibo-is-vertical) {
|
|
> .ibo-tab-container--tabs-list {
|
|
// Align tab toggler's title with the panel's title
|
|
padding-left: $ibo-object-details-with-tab-container--tab-list--padding-left;
|
|
}
|
|
}
|
|
}
|
|
} |