mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 05:44:12 +01:00
108 lines
2.7 KiB
SCSS
108 lines
2.7 KiB
SCSS
/*!
|
|
* copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
$ibo-title--text-color: $ibo-color-grey-900 !default;
|
|
|
|
$ibo-title--medallion--size: 90px !default;
|
|
$ibo-title--medallion--background-color: $ibo-color-grey-100 !default;
|
|
$ibo-title--medallion--border: 2px solid $ibo-color-blue-grey-300 !default;
|
|
$ibo-title--medallion--border-radius: $ibo-border-radius-full !default;
|
|
|
|
$ibo-title--icon--size--must-cover: 100% !default;
|
|
$ibo-title--icon--size--must-zoomout: 66.67% !default;
|
|
|
|
$ibo-title--status-dot--size: 10px !default;
|
|
$ibo-title--status-dot--spacing: 8px !default;
|
|
$ibo-title--status-dot--border-radius: $ibo-border-radius-full !default;
|
|
|
|
.ibo-title {
|
|
@extend %ibo-baseline-centered-content;
|
|
|
|
color: $ibo-title--text-color;
|
|
}
|
|
|
|
.ibo-title--medallion {
|
|
@extend %ibo-fully-centered-content;
|
|
width: $ibo-title--medallion--size;
|
|
height: $ibo-title--medallion--size;
|
|
min-width: $ibo-title--medallion--size;
|
|
min-height: $ibo-title--medallion--size;
|
|
overflow: hidden;
|
|
|
|
background-color: $ibo-title--medallion--background-color;
|
|
border: $ibo-title--medallion--border;
|
|
border-radius: $ibo-title--medallion--border-radius;
|
|
}
|
|
.ibo-title--icon {
|
|
width: $ibo-title--icon--size--must-cover;
|
|
height: auto;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
.ibo-title--icon--must-zoomout {
|
|
width: $ibo-title--icon--size--must-zoomout;
|
|
}
|
|
|
|
.ibo-title--emphasis {
|
|
|
|
}
|
|
|
|
.ibo-title--for-object-details {
|
|
@extend %ibo-font-ral-nor-350;
|
|
}
|
|
|
|
.ibo-title--status {
|
|
@extend %ibo-baseline-centered-content;
|
|
@extend %ibo-font-ral-nor-100;
|
|
}
|
|
.ibo-title--status-dot {
|
|
@extend %ibo-fully-centered-content;
|
|
|
|
width: $ibo-title--status-dot--size;
|
|
height: $ibo-title--status-dot--size;
|
|
min-width: $ibo-title--status-dot--size;
|
|
min-height: $ibo-title--status-dot--size;
|
|
|
|
border-radius: $ibo-title--status-dot--border-radius;
|
|
}
|
|
.ibo-title--status-label {
|
|
|
|
}
|
|
.ibo-title--status-dot + .ibo-title--status-label {
|
|
margin-left: $ibo-title--status-dot--spacing;
|
|
}
|
|
|
|
@each $sType, $aColors in $ibo-lifecycle-states-colors {
|
|
.ibo-title--status-dot.ibo-is-state-#{$sType} {
|
|
color: map-get($aColors, 'secondary-color');
|
|
background-color: map-get($aColors, 'primary-color');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.ibo-title-for-dashlet {
|
|
padding-top: 2em;
|
|
}
|
|
.ibo-title-for-dashlet--title {
|
|
@extend %ibo-font-ral-nor-350;
|
|
}
|
|
|
|
.ibo-title-for-dashlet--content{
|
|
background-color: $ibo-color-white-100;
|
|
border-radius: 5px;
|
|
border: 1px solid ;
|
|
border-color:$ibo-color-grey-400;
|
|
padding-bottom:1em;
|
|
}
|
|
.ibo-title-separator{
|
|
border-radius: 5px 5px 0px 0px;
|
|
border-color:$ibo-color-blue-600;
|
|
color:$ibo-color-blue-600;
|
|
background-color:$ibo-color-blue-600;
|
|
border: 3px solid ;
|
|
margin:0;
|
|
padding:0;
|
|
} |