mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 06:04:12 +01:00
52 lines
1.7 KiB
SCSS
52 lines
1.7 KiB
SCSS
/*!
|
|
* @copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
// TODO 3.0.0: This is temporary to make object forms work while it is being migrated to the blocks syste.
|
|
// When there is a real ObjectDetails block, rework this to match the block conventions.
|
|
|
|
.object-details .ibo-title {
|
|
z-index: 1;
|
|
align-items: start;
|
|
position: relative;
|
|
padding-left: 32px;
|
|
}
|
|
.object-details .ibo-title .ibo-title--medallion {
|
|
position: absolute;
|
|
margin-top: 16px;
|
|
}
|
|
.object-details .ibo-title.ibo-has-icon .ibo-title--content {
|
|
margin-left: calc(90px + 32px);
|
|
}
|
|
.object-details .ibo-panel {
|
|
z-index: 0;
|
|
}
|
|
.object-details .ibo-panel > .ibo-panel--body > .ibo-tab-container > .ibo-tab-container--tabs-list{
|
|
padding-left: calc(32px + 90px + 32px - 24px);
|
|
}
|
|
.object-details .ibo-panel > .ibo-panel--body > .ibo-tab-container.ibo-is-vertical{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.object-details .ibo-panel > .ibo-panel--body > .ibo-tab-container.ibo-is-vertical > .ibo-tab-container--tabs-list{
|
|
padding-top: 50px;
|
|
flex-direction: column;
|
|
height: auto;
|
|
padding-left: unset;
|
|
margin-right: unset;
|
|
min-width: calc(32px + 90px + 32px);
|
|
}
|
|
.object-details .ibo-panel > .ibo-panel--body > .ibo-tab-container.ibo-is-vertical > .ibo-tab-container--tabs-list > .ibo-tab-container--tab-header{
|
|
height: 50px;
|
|
width: 100%;
|
|
justify-content: left;
|
|
}
|
|
.object-details .ibo-panel > .ibo-panel--body > .ibo-tab-container.ibo-is-vertical > .ibo-tab-container--tabs-list > .ibo-tab-container--tab-header > .ibo-tab-container--tab-toggler{
|
|
width: 100%;
|
|
justify-content: left;
|
|
}
|
|
.object-details .ibo-panel > .ibo-panel--body > .ibo-tab-container.ibo-is-vertical > .ibo-tab-container--tab-container {
|
|
flex-grow: 1;
|
|
margin-left: unset;
|
|
} |