2016-11-14 03:52:20 +11:00
|
|
|
@import './_variables.scss';
|
2018-04-01 12:28:20 +10:00
|
|
|
|
2016-11-05 21:01:17 +11:00
|
|
|
#app {
|
2018-04-01 12:28:20 +10:00
|
|
|
background-size: cover;
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 50px;
|
|
|
|
min-height: 100vh;
|
2018-04-14 17:19:09 +10:00
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2017-11-02 20:27:52 +11:00
|
|
|
i {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
h4 {
|
2018-04-01 12:28:20 +10:00
|
|
|
margin: 0;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
2017-11-24 00:55:53 +11:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding-top: 60px;
|
|
|
|
margin: auto;
|
|
|
|
min-height: 100vh;
|
|
|
|
max-width: 980px;
|
|
|
|
background-color: rgba(0,0,0,0.15);
|
2017-11-25 09:09:28 +11:00
|
|
|
align-content: flex-start;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-center {
|
2018-04-01 12:28:20 +10:00
|
|
|
text-align: center;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2018-04-01 12:28:20 +10:00
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
color: $fallback--fg;
|
|
|
|
color: var(--fg, $fallback--fg);
|
2018-04-14 17:19:09 +10:00
|
|
|
max-width: 100vw;
|
|
|
|
overflow-x: hidden;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-04-01 12:28:20 +10:00
|
|
|
text-decoration: none;
|
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--link, $fallback--link);
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2017-02-18 18:48:35 +11:00
|
|
|
button{
|
2018-04-01 12:28:20 +10:00
|
|
|
user-select: none;
|
2018-04-12 02:34:40 +10:00
|
|
|
color: $fallback--fg;
|
|
|
|
color: var(--fg, $fallback--fg);
|
2018-04-01 12:28:20 +10:00
|
|
|
background-color: $fallback--btn;
|
|
|
|
background-color: var(--btn, $fallback--btn);
|
|
|
|
border: none;
|
2018-04-02 05:07:25 +10:00
|
|
|
border-radius: $fallback--btnRadius;
|
|
|
|
border-radius: var(--btnRadius, $fallback--btnRadius);
|
2018-04-01 12:28:20 +10:00
|
|
|
cursor: pointer;
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
box-shadow: 0px 0px 2px black;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: sans-serif;
|
2017-08-03 05:09:40 +10:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
&:hover {
|
|
|
|
box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
|
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.pressed {
|
|
|
|
color: $fallback--faint;
|
|
|
|
color: var(--faint, $fallback--faint);
|
|
|
|
background-color: $fallback--bg;
|
|
|
|
background-color: var(--bg, $fallback--bg)
|
|
|
|
}
|
2017-02-18 18:48:35 +11:00
|
|
|
}
|
|
|
|
|
2018-04-08 04:58:29 +10:00
|
|
|
label.select {
|
|
|
|
padding: 0;
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-08 04:58:29 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
input, textarea, .select {
|
2018-04-01 04:14:36 +10:00
|
|
|
border: none;
|
2018-04-15 14:25:59 +10:00
|
|
|
border-radius: $fallback--inputRadius;
|
|
|
|
border-radius: var(--inputRadius, $fallback--inputRadius);
|
2018-04-01 04:14:36 +10:00
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
box-shadow: 0px 0px 2px black inset;
|
2018-04-15 13:03:57 +10:00
|
|
|
background-color: $fallback--input;
|
|
|
|
background-color: var(--input, $fallback--input);
|
2018-04-01 12:28:20 +10:00
|
|
|
color: $fallback--lightFg;
|
|
|
|
color: var(--lightFg, $fallback--lightFg);
|
2018-04-01 04:14:36 +10:00
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 14px;
|
2018-04-08 10:43:07 +10:00
|
|
|
padding: 8px 7px;
|
2018-04-02 05:07:25 +10:00
|
|
|
box-sizing: border-box;
|
2018-04-08 04:58:29 +10:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2018-04-08 10:22:03 +10:00
|
|
|
height: 29px;
|
|
|
|
line-height: 16px;
|
2018-04-08 04:58:29 +10:00
|
|
|
|
|
|
|
.icon-down-open {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 5px;
|
|
|
|
height: 100%;
|
|
|
|
color: $fallback--fg;
|
|
|
|
color: var(--fg, $fallback--fg);
|
|
|
|
line-height: 29px;
|
|
|
|
z-index: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-08 04:58:29 +10:00
|
|
|
select {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
color: $fallback--fg;
|
|
|
|
color: var(--fg, $fallback--fg);
|
2018-04-08 10:22:03 +10:00
|
|
|
padding: 4px 2em 3px 3px;
|
2018-04-08 04:58:29 +10:00
|
|
|
width: 100%;
|
|
|
|
z-index: 1;
|
2018-04-08 10:22:03 +10:00
|
|
|
height: 29px;
|
|
|
|
line-height: 16px;
|
2018-04-08 04:58:29 +10:00
|
|
|
}
|
2018-04-01 04:14:36 +10:00
|
|
|
|
|
|
|
&[type=radio],
|
|
|
|
&[type=checkbox] {
|
|
|
|
display: none;
|
|
|
|
&:checked + label::before {
|
2018-04-01 12:28:20 +10:00
|
|
|
color: $fallback--fg;
|
|
|
|
color: var(--fg, $fallback--fg);
|
2018-04-01 04:14:36 +10:00
|
|
|
}
|
|
|
|
+ label::before {
|
|
|
|
display: inline-block;
|
|
|
|
content: '✔';
|
|
|
|
transition: color 200ms;
|
|
|
|
width: 1.1em;
|
|
|
|
height: 1.1em;
|
2018-04-02 05:07:25 +10:00
|
|
|
border-radius: $fallback--checkBoxRadius;
|
|
|
|
border-radius: var(--checkBoxRadius, $fallback--checkBoxRadius);
|
2018-04-01 04:14:36 +10:00
|
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
box-shadow: 0px 0px 2px black inset;
|
|
|
|
margin-right: .5em;
|
2018-04-15 13:03:57 +10:00
|
|
|
background-color: $fallback--input;
|
2018-04-15 23:45:23 +10:00
|
|
|
background-color: var(--input, $fallback--input);
|
2018-04-02 05:07:25 +10:00
|
|
|
vertical-align: top;
|
2018-04-01 04:14:36 +10:00
|
|
|
text-align: center;
|
|
|
|
line-height: 1.1em;
|
|
|
|
font-size: 1.1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: transparent;
|
|
|
|
overflow: hidden;
|
2018-04-02 05:07:25 +10:00
|
|
|
box-sizing: border-box;
|
2018-04-01 04:14:36 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-07 23:29:50 +10:00
|
|
|
i[class*=icon-] {
|
2018-04-01 12:28:20 +10:00
|
|
|
color: $fallback--icon;
|
|
|
|
color: var(--icon, $fallback--icon)
|
2018-04-01 04:14:36 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
.container {
|
2018-04-01 12:28:20 +10:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 10px 0 10px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.gaps {
|
2018-04-01 12:28:20 +10:00
|
|
|
margin: -1em 0 0 -1em;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
2018-04-01 12:28:20 +10:00
|
|
|
flex: 1;
|
2018-04-08 10:43:07 +10:00
|
|
|
line-height: 50px;
|
|
|
|
height: 50px;
|
2018-04-01 12:28:20 +10:00
|
|
|
overflow: hidden;
|
2017-11-08 20:26:42 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.nav-icon {
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin-left: 0.4em;
|
|
|
|
}
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.gaps > .item {
|
2018-04-01 12:28:20 +10:00
|
|
|
padding: 1em 0 0 1em;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.auto-size {
|
2018-04-01 12:28:20 +10:00
|
|
|
flex: 1
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2018-04-01 12:28:20 +10:00
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
position: fixed;
|
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
.inner-nav {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
display: flex;
|
2016-10-27 04:03:55 +11:00
|
|
|
align-items: center;
|
2018-04-01 12:28:20 +10:00
|
|
|
flex-basis: 970px;
|
|
|
|
margin: auto;
|
2016-10-27 04:03:55 +11:00
|
|
|
height: 50px;
|
2018-04-01 12:28:20 +10:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2018-04-08 04:58:29 +10:00
|
|
|
background-size: auto 80%;
|
2018-04-02 05:07:25 +10:00
|
|
|
|
|
|
|
a i {
|
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--link, $fallback--link);
|
|
|
|
}
|
2018-04-01 12:28:20 +10:00
|
|
|
}
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
main-router {
|
2018-04-01 12:28:20 +10:00
|
|
|
flex: 1;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.status.compact {
|
2018-04-01 12:28:20 +10:00
|
|
|
color: rgba(0, 0, 0, 0.42);
|
|
|
|
font-weight: 300;
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em
|
|
|
|
}
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Panel */
|
|
|
|
|
|
|
|
.panel {
|
2018-04-01 12:28:20 +10:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0.5em;
|
2016-10-27 04:03:55 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
background-color: $fallback--bg;
|
|
|
|
background-color: var(--bg, $fallback--bg);
|
2018-04-01 04:14:36 +10:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
border-radius: $fallback--panelRadius;
|
2018-04-02 05:07:25 +10:00
|
|
|
border-radius: var(--panelRadius, $fallback--panelRadius);
|
2018-04-01 12:28:20 +10:00
|
|
|
box-shadow: 1px 1px 4px rgba(0,0,0,.6);
|
2017-11-13 09:08:06 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body:empty::before {
|
2018-04-01 12:28:20 +10:00
|
|
|
content: "¯\\_(ツ)_/¯"; // Could use words but it'd require translations
|
|
|
|
display: block;
|
|
|
|
margin: 1em;
|
|
|
|
text-align: center;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
2018-04-02 05:07:25 +10:00
|
|
|
border-radius: $fallback--panelRadius $fallback--panelRadius 0 0;
|
|
|
|
border-radius: var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius) 0 0;
|
2018-04-01 12:28:20 +10:00
|
|
|
background-size: cover;
|
|
|
|
padding: 0.6em 1.0em;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 1.3em;
|
|
|
|
line-height: 24px;
|
|
|
|
background-color: $fallback--btn;
|
|
|
|
background-color: var(--btn, $fallback--btn);
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2018-04-13 02:51:33 +10:00
|
|
|
.panel-heading.stub {
|
|
|
|
border-radius: $fallback--panelRadius;
|
|
|
|
border-radius: var(--panelRadius, $fallback--panelRadius);
|
|
|
|
}
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
.panel-footer {
|
2018-04-02 05:07:25 +10:00
|
|
|
border-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;
|
|
|
|
border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-body > p {
|
2018-04-01 12:28:20 +10:00
|
|
|
line-height: 18px;
|
|
|
|
padding: 1em;
|
|
|
|
margin: 0;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2016-11-25 23:42:33 +11:00
|
|
|
.container > * {
|
2018-04-01 12:28:20 +10:00
|
|
|
min-width: 0px;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
2018-04-01 12:28:20 +10:00
|
|
|
color: grey;
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
|
2016-11-04 03:28:44 +11:00
|
|
|
nav {
|
2018-04-01 12:28:20 +10:00
|
|
|
z-index: 1000;
|
|
|
|
background-color: $fallback--btn;
|
|
|
|
background-color: var(--btn, $fallback--btn);
|
|
|
|
color: $fallback--faint;
|
|
|
|
color: var(--faint, $fallback--faint);
|
|
|
|
box-shadow: 0px 0px 4px rgba(0,0,0,.6);
|
2016-11-04 03:28:44 +11:00
|
|
|
}
|
2016-11-29 00:35:21 +11:00
|
|
|
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
|
|
transition: opacity .2s
|
|
|
|
}
|
|
|
|
.fade-enter, .fade-leave-active {
|
|
|
|
opacity: 0
|
|
|
|
}
|
2016-12-03 00:33:03 +11:00
|
|
|
|
|
|
|
.main {
|
2018-04-01 12:28:20 +10:00
|
|
|
flex-basis: 60%;
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-shrink: 1;
|
2016-12-03 00:33:03 +11:00
|
|
|
}
|
2017-01-18 03:27:39 +11:00
|
|
|
|
2017-11-13 21:00:08 +11:00
|
|
|
.sidebar-bounds {
|
2017-04-14 00:57:20 +10:00
|
|
|
flex: 0;
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-basis: 35%;
|
2017-01-18 03:27:39 +11:00
|
|
|
}
|
|
|
|
|
2017-04-13 23:17:57 +10:00
|
|
|
.sidebar-flexer {
|
|
|
|
flex: 1;
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-basis: 345px;
|
2017-04-13 23:17:57 +10:00
|
|
|
width: 365px;
|
|
|
|
}
|
|
|
|
|
2017-01-18 03:27:39 +11:00
|
|
|
.mobile-shown {
|
2018-04-01 12:28:20 +10:00
|
|
|
display: none;
|
2017-01-18 03:27:39 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-switcher {
|
2018-04-01 12:28:20 +10:00
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 46px;
|
|
|
|
button {
|
|
|
|
display: block;
|
|
|
|
flex: 1;
|
|
|
|
max-height: 32px;
|
|
|
|
margin: 0.5em;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
2017-01-18 03:27:39 +11:00
|
|
|
}
|
|
|
|
|
2017-04-13 23:17:57 +10:00
|
|
|
@media all and (min-width: 960px) {
|
2017-11-13 05:24:20 +11:00
|
|
|
body {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2017-11-13 21:00:08 +11:00
|
|
|
.sidebar-bounds {
|
2017-04-13 23:17:57 +10:00
|
|
|
overflow: hidden;
|
|
|
|
max-height: 100vh;
|
2017-11-13 05:24:20 +11:00
|
|
|
width: 345px;
|
2017-04-13 23:17:57 +10:00
|
|
|
position: fixed;
|
|
|
|
margin-top: -10px;
|
|
|
|
|
2017-11-13 21:00:08 +11:00
|
|
|
.sidebar-scroller {
|
2017-04-13 23:17:57 +10:00
|
|
|
height: 96vh;
|
2017-11-13 05:24:20 +11:00
|
|
|
width: 365px;
|
2017-04-13 23:17:57 +10:00
|
|
|
padding-top: 10px;
|
2017-11-13 21:00:08 +11:00
|
|
|
padding-right: 50px;
|
2017-04-13 23:17:57 +10:00
|
|
|
overflow-x: hidden;
|
2017-04-14 00:57:20 +10:00
|
|
|
overflow-y: scroll;
|
2017-04-13 23:17:57 +10:00
|
|
|
}
|
2017-11-13 21:00:08 +11:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 345px;
|
|
|
|
}
|
2017-04-13 23:17:57 +10:00
|
|
|
}
|
|
|
|
.sidebar-flexer {
|
|
|
|
max-height: 96vh;
|
2017-04-14 00:01:18 +10:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
2017-04-13 23:17:57 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-08 10:22:03 +10:00
|
|
|
.alert {
|
|
|
|
margin: 0.35em;
|
|
|
|
padding: 0.25em;
|
|
|
|
border-radius: $fallback--tooltipRadius;
|
|
|
|
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
|
|
|
color: $fallback--faint;
|
|
|
|
color: var(--faint, $fallback--faint);
|
|
|
|
min-height: 28px;
|
|
|
|
line-height: 28px;
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
background-color: $fallback--cAlertRed;
|
|
|
|
background-color: var(--cAlertRed, $fallback--cAlertRed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-11 02:25:24 +10:00
|
|
|
.faint {
|
|
|
|
color: $fallback--faint;
|
2018-04-11 05:12:59 +10:00
|
|
|
color: var(--faint, $fallback--faint);
|
2018-04-11 02:25:24 +10:00
|
|
|
}
|
|
|
|
|
2017-01-18 03:27:39 +11:00
|
|
|
@media all and (max-width: 959px) {
|
2018-04-01 12:28:20 +10:00
|
|
|
.mobile-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-01-18 03:27:39 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.panel-switcher {
|
|
|
|
display: flex;
|
|
|
|
}
|
2017-02-20 21:46:20 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.container {
|
|
|
|
padding: 0 0 0 0;
|
|
|
|
}
|
2017-02-20 21:46:20 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.panel {
|
|
|
|
margin: 0.5em 0 0.5em 0;
|
|
|
|
}
|
2017-01-18 03:27:39 +11:00
|
|
|
}
|
2017-02-17 08:25:41 +11:00
|
|
|
|
|
|
|
.item.right {
|
2018-04-01 12:28:20 +10:00
|
|
|
text-align: right;
|
|
|
|
padding-right: 20px;
|
2017-02-17 08:25:41 +11:00
|
|
|
}
|