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 */
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
#header {
|
|
|
|
padding: 3px;
|
|
|
|
font-weight: bold;
|
2020-08-27 07:57:24 +02:00
|
|
|
border-bottom: 1px solid var(--border);
|
2017-08-10 11:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tdcenter {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hitem {
|
2017-08-10 11:17:28 +02:00
|
|
|
padding-right: 12px;
|
|
|
|
padding-left: 12px;
|
2017-08-10 11:02:32 +02:00
|
|
|
text-decoration: none;
|
2020-08-27 07:57:24 +02:00
|
|
|
color: var(--text-fg);
|
2020-01-23 00:02:42 +01:00
|
|
|
}
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
.hitem:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2019-04-10 07:16:22 +02:00
|
|
|
|
2020-08-27 08:37:58 +02:00
|
|
|
.hitem:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2020-06-02 05:23:01 +02:00
|
|
|
|
2020-08-27 08:37:58 +02:00
|
|
|
.nightMode #header {
|
|
|
|
border-bottom-color: var(--faint-border);
|
2020-01-27 08:02:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.isMac.nightMode #header {
|
2020-08-27 07:57:24 +02:00
|
|
|
border-bottom-color: var(--frame-bg);
|
2020-01-27 08:02:40 +01:00
|
|
|
}
|
2020-02-04 02:41:20 +01:00
|
|
|
|
|
|
|
@keyframes spin {
|
2020-08-27 08:37:58 +02:00
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
}
|
2020-02-04 02:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.spin {
|
|
|
|
animation: spin;
|
|
|
|
animation-duration: 2s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
display: inline-block;
|
|
|
|
visibility: visible !important;
|
2020-02-04 06:15:57 +01:00
|
|
|
animation-timing-function: linear;
|
2020-02-04 02:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#sync-spinner {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-bottom: -3px;
|
|
|
|
visibility: hidden;
|
2020-06-02 05:23:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.normal-sync {
|
2020-08-27 07:57:24 +02:00
|
|
|
color: var(--new-count);
|
2020-06-02 05:23:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.full-sync {
|
2020-08-27 07:57:24 +02:00
|
|
|
color: var(--learn-count);
|
2020-06-02 05:23:01 +02:00
|
|
|
}
|