mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
80 lines
987 B
Plaintext
Executable File
80 lines
987 B
Plaintext
Executable File
|
|
table {
|
|
margin: 0 auto;
|
|
background-color: @primary-bg;
|
|
border-spacing: 0;
|
|
font-size: 0.8em;
|
|
cursor: default;
|
|
|
|
a, a:visited {
|
|
color: @primary;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
thead {
|
|
color: @bgBlack;
|
|
background-color: @primary-disabled;
|
|
.user-select-none();
|
|
|
|
.main th {
|
|
border-left: 1px solid @primary-bg;
|
|
|
|
&:first-child {
|
|
border-left: none;
|
|
}
|
|
}
|
|
|
|
th {
|
|
font-weight: normal;
|
|
padding: 0 0.75em;
|
|
|
|
&.prop {
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: @primary;
|
|
}
|
|
}
|
|
|
|
&.lft {
|
|
border-left: 1px solid @primary-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
tbody tr {
|
|
|
|
&.tr {
|
|
color: @disabled;
|
|
fill: @disabled;
|
|
text-align: right;
|
|
|
|
&:hover {
|
|
color: @fg;
|
|
fill: @warning;
|
|
background-color: @warning-bg;
|
|
}
|
|
|
|
svg {
|
|
cursor: pointer;
|
|
}
|
|
|
|
td {
|
|
padding: 0 0.7em;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
&.tl {
|
|
text-align: left;
|
|
padding-left: 0.7em;
|
|
}
|
|
|
|
&.tc {
|
|
text-align: center;
|
|
}
|
|
}
|