2019-02-05 04:59:03 +01:00
|
|
|
/* Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
|
2020-01-23 06:08:10 +01:00
|
|
|
@use 'card_counts';
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
a.deck {
|
2020-08-27 07:57:24 +02:00
|
|
|
color: var(--text-fg);
|
2017-08-10 11:02:32 +02:00
|
|
|
text-decoration: none;
|
|
|
|
min-width: 5em;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.deck:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.deck td {
|
2020-08-27 07:57:24 +02:00
|
|
|
border-bottom: 1px solid var(--faint-border);
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tr.top-level-drag-row td {
|
|
|
|
border-bottom: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr.drag-hover td {
|
2020-08-27 07:57:24 +02:00
|
|
|
border-bottom: 1px solid var(--border);
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 1em;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.current {
|
2020-08-27 07:57:24 +02:00
|
|
|
background-color: var(--faint-border);
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.decktd {
|
|
|
|
min-width: 15em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.count {
|
|
|
|
min-width: 4em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.optscol {
|
|
|
|
width: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse {
|
2020-08-27 07:57:24 +02:00
|
|
|
color: var(--text-fg);
|
2017-08-10 11:02:32 +02:00
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filtered {
|
2020-08-27 07:57:24 +02:00
|
|
|
color: var(--link) !important;
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
2017-08-11 12:59:15 +02:00
|
|
|
|
|
|
|
.gears {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
2020-08-27 08:37:58 +02:00
|
|
|
opacity: 0.5;
|
2017-08-11 12:59:15 +02:00
|
|
|
padding-top: 0.2em;
|
|
|
|
}
|
2020-01-23 06:08:10 +01:00
|
|
|
|
|
|
|
.nightMode {
|
|
|
|
.gears {
|
|
|
|
filter: invert(180);
|
|
|
|
}
|
2020-08-27 08:37:58 +02:00
|
|
|
}
|
2021-02-21 06:50:41 +01:00
|
|
|
|
|
|
|
.callout {
|
|
|
|
background: var(--medium-border);
|
|
|
|
padding: 1em;
|
|
|
|
margin: 1em;
|
|
|
|
|
|
|
|
div {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
}
|