mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
45 lines
674 B
SCSS
45 lines
674 B
SCSS
/*!
|
|
* copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-field-value--color: $ibo-color-grey-700 !default;
|
|
|
|
.ibo-field {
|
|
@extend %ibo-font-ral-nor-150;
|
|
|
|
& ~ .ibo-field {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
.ibo-field-large {
|
|
display: inherit;
|
|
|
|
.ibo-field-label {
|
|
display: inherit;
|
|
}
|
|
}
|
|
|
|
.ibo-field-small {
|
|
display: table;
|
|
width: 100%;
|
|
|
|
.ibo-field-label {
|
|
display: table-cell;
|
|
vertical-align: top;
|
|
}
|
|
}
|
|
|
|
.ibo-field-label {
|
|
min-width: 100px;
|
|
max-width: 145px;
|
|
width: 30%;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.ibo-field-value {
|
|
display: table;
|
|
width: 100%;
|
|
color: $ibo-field-value--color;
|
|
} |