Files
coriolis/app/less/list.less
2015-06-03 22:57:32 -07:00

66 lines
971 B
Plaintext
Executable File

.list {
margin: 1em 0;
cursor: default;
font-size: 0.8em;
min-width: 25%;
text-align: left;
.user-select-none();
box-sizing: border-box;
.header {
width: 100%;
margin-bottom: 0.4em;
font-family: @fStandard;
color: @bgBlack;
background-color: @primary-disabled;
text-transform: uppercase;
text-align: center;
}
table {
width: 100%;
text-align: right;
td {
padding-right: 0.5em;
}
}
.items {
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;
}
}
}
}