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 */
|
|
|
|
|
2021-02-27 16:34:22 +01:00
|
|
|
body {
|
|
|
|
background-color: var(--bg-color);
|
2021-01-28 19:13:39 +01:00
|
|
|
}
|
|
|
|
|
2021-01-26 23:15:11 +01:00
|
|
|
#fields {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2017-07-28 08:19:06 +02:00
|
|
|
.field {
|
2020-08-27 07:57:24 +02:00
|
|
|
border: 1px solid var(--border);
|
|
|
|
background: var(--frame-bg);
|
2020-12-21 03:13:31 +01:00
|
|
|
|
2021-01-28 19:13:39 +01:00
|
|
|
&.dupe {
|
|
|
|
background: var(--flag1-bg);
|
2020-12-21 03:13:31 +01:00
|
|
|
}
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
2019-04-16 10:58:59 +02:00
|
|
|
|
2017-07-28 08:19:06 +02:00
|
|
|
.fname {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-01-22 12:14:20 +01:00
|
|
|
#topbutsOuter {
|
2021-01-22 11:37:11 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
2021-01-21 21:20:57 +01:00
|
|
|
position: sticky;
|
2017-07-28 08:19:06 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2021-01-29 14:21:32 +01:00
|
|
|
z-index: 5;
|
2021-01-21 21:20:57 +01:00
|
|
|
padding: 2px;
|
2021-01-28 19:13:39 +01:00
|
|
|
|
|
|
|
background: var(--bg-color);
|
2021-02-27 17:25:40 +01:00
|
|
|
font-size: 13px;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2021-02-08 21:26:37 +01:00
|
|
|
.topbuts {
|
|
|
|
margin-bottom: 2px;
|
2021-01-22 12:14:20 +01:00
|
|
|
|
2021-02-08 21:26:37 +01:00
|
|
|
& > * {
|
|
|
|
margin: 0 1px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2021-01-22 12:14:20 +01:00
|
|
|
|
2021-02-08 21:26:37 +01:00
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2021-01-22 12:14:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 08:19:06 +02:00
|
|
|
.topbut {
|
2021-02-27 17:22:55 +01:00
|
|
|
display: inline-block;
|
2017-07-28 08:19:06 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2018-12-03 00:54:51 +01:00
|
|
|
margin-top: 4px;
|
2021-02-27 17:22:55 +01:00
|
|
|
vertical-align: -.125em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topbut--rounded {
|
|
|
|
border-radius: 5px;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.rainbow {
|
2020-08-27 08:37:58 +02:00
|
|
|
background-image: -webkit-gradient(
|
|
|
|
linear,
|
|
|
|
left top,
|
|
|
|
left bottom,
|
|
|
|
color-stop(0, #f77),
|
|
|
|
color-stop(50%, #7f7),
|
|
|
|
color-stop(100%, #77f)
|
|
|
|
);
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2020-01-23 06:08:10 +01:00
|
|
|
button.linkb {
|
2017-07-28 08:19:06 +02:00
|
|
|
-webkit-appearance: none;
|
2021-01-22 12:25:23 +01:00
|
|
|
margin-bottom: -3px;
|
2017-07-28 08:19:06 +02:00
|
|
|
border: 0;
|
2020-01-23 06:08:10 +01:00
|
|
|
box-shadow: none;
|
2017-07-28 08:19:06 +02:00
|
|
|
padding: 0px 2px;
|
|
|
|
background: transparent;
|
2021-01-09 23:55:39 +01:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.3;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nightMode & > img {
|
|
|
|
filter: invert(180);
|
|
|
|
}
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2021-01-09 23:55:39 +01:00
|
|
|
button:focus {
|
|
|
|
outline: none;
|
2017-07-28 08:19:06 +02:00
|
|
|
}
|
|
|
|
|
2020-04-14 19:04:03 +02:00
|
|
|
button.highlighted {
|
2021-01-09 23:16:01 +01:00
|
|
|
#topbutsleft & {
|
2021-01-09 23:55:39 +01:00
|
|
|
background-color: lightgrey;
|
2021-01-22 12:25:23 +01:00
|
|
|
|
|
|
|
.nightMode & {
|
|
|
|
background: linear-gradient(0deg, #333333 0%, #434343 100%);
|
|
|
|
}
|
2021-01-09 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#topbutsright & {
|
2021-01-28 22:23:06 +01:00
|
|
|
border-bottom: 3px solid black;
|
2021-02-27 16:49:47 +01:00
|
|
|
border-radius: 3px;
|
2017-07-28 08:19:06 +02:00
|
|
|
|
2021-02-27 16:49:47 +01:00
|
|
|
.nightMode & {
|
|
|
|
border-bottom-color: white;
|
|
|
|
}
|
2021-01-09 23:16:01 +01:00
|
|
|
}
|
2020-01-23 06:08:10 +01:00
|
|
|
}
|
|
|
|
|
2021-01-28 19:13:39 +01:00
|
|
|
#dupes {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
2020-01-23 06:08:10 +01:00
|
|
|
|
2021-01-28 19:13:39 +01:00
|
|
|
text-align: center;
|
|
|
|
background-color: var(--bg-color);
|
2020-01-23 06:08:10 +01:00
|
|
|
|
2021-01-28 19:13:39 +01:00
|
|
|
&.is-inactive {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--link);
|
|
|
|
}
|
2020-02-09 00:20:08 +01:00
|
|
|
}
|
2021-02-27 23:51:20 +01:00
|
|
|
|
|
|
|
.sticky-icon {
|
|
|
|
color: var(--bs-dark);
|
|
|
|
|
|
|
|
.nightMode & {
|
|
|
|
color: var(--bs-light);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-active {
|
|
|
|
color: var(--bs-danger);
|
|
|
|
}
|
|
|
|
}
|