mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
72 lines
1.0 KiB
Plaintext
Executable File
72 lines
1.0 KiB
Plaintext
Executable File
.list {
|
|
overflow: hidden;
|
|
padding: 5px;
|
|
cursor: default;
|
|
position: relative;
|
|
font-size: 0.8em;
|
|
|
|
.header {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 1.6em;
|
|
font-family: @fTitle;
|
|
color: @primary;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.items {
|
|
margin-top: 25px;
|
|
margin-bottom: 10px;
|
|
clear: both;
|
|
overflow: hidden;
|
|
|
|
.item {
|
|
clear: both;
|
|
margin: 1px 0 0;
|
|
overflow: hidden;
|
|
|
|
.val {
|
|
float:right;
|
|
text-align: right;
|
|
}
|
|
|
|
.lbl {
|
|
float: left;
|
|
}
|
|
color: @disabled;
|
|
cursor: pointer;
|
|
|
|
&.enabled {
|
|
color: @fg;
|
|
}
|
|
|
|
&.consumer {
|
|
.val:before {
|
|
content: "-";
|
|
}
|
|
}
|
|
|
|
&.untoggleable {
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|
|
|
|
.summary {
|
|
font-family: @fStandard;
|
|
overflow: hidden;
|
|
text-align: right;
|
|
|
|
.item {
|
|
float:right;
|
|
width: 25%
|
|
}
|
|
.lbl {
|
|
font-family: @fTitle;
|
|
color: @primary;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
}
|