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 'vars';
|
|
|
|
|
2017-08-10 11:02:32 +02:00
|
|
|
#header {
|
|
|
|
padding: 3px;
|
|
|
|
font-weight: bold;
|
2020-01-23 06:08:10 +01:00
|
|
|
border-bottom: 1px solid vars.$day-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-01-23 06:08:10 +01:00
|
|
|
color: vars.$day-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
|
|
|
|
|
|
|
.hitem:focus { outline: 0; }
|
2020-01-23 06:08:10 +01:00
|
|
|
|
|
|
|
.nightMode {
|
|
|
|
.hitem {
|
|
|
|
color: vars.$night-text-fg;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
2020-01-26 09:16:21 +01:00
|
|
|
border-bottom-color: vars.$night-faint-border;
|
2020-01-23 06:08:10 +01:00
|
|
|
}
|
2020-01-27 08:02:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.isMac.nightMode #header {
|
|
|
|
border-bottom-color: vars.$night-frame-bg;
|
|
|
|
}
|
2020-02-04 02:41:20 +01:00
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
0% {-webkit-transform: rotate(0deg);}
|
|
|
|
100% {-webkit-transform: rotate(360deg);}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|