mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
41 lines
680 B
SCSS
41 lines
680 B
SCSS
.info-flex,
|
|
.gigs_disk_space_available__cell {
|
|
white-space: nowrap;
|
|
|
|
&__disk-space {
|
|
display: inline-block;
|
|
height: 4px;
|
|
width: 50px;
|
|
background-color: $ui-fleet-black-10;
|
|
border-radius: 2px;
|
|
margin-right: $pad-small;
|
|
overflow: hidden;
|
|
margin-bottom: 2px;
|
|
|
|
&-wrapper {
|
|
display: inline-block;
|
|
}
|
|
|
|
&--green {
|
|
background-color: $ui-success;
|
|
height: 100%;
|
|
}
|
|
|
|
&--yellow {
|
|
background-color: $ui-warning;
|
|
height: 100%;
|
|
}
|
|
|
|
&--red {
|
|
background-color: $ui-error;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.disk-space-tooltip {
|
|
display: block;
|
|
white-space: normal;
|
|
max-width: 160px;
|
|
}
|
|
}
|