2022-04-04 16:41:09 +00:00
|
|
|
// stylelint-disable rscss/class-format
|
2016-11-13 16:52:20 +00:00
|
|
|
@import './_variables.scss';
|
2018-04-01 02:28:20 +00:00
|
|
|
|
2022-04-10 14:48:02 +00:00
|
|
|
:root {
|
2022-04-10 19:37:08 +00:00
|
|
|
--navbar-height: 3.5rem;
|
2022-04-26 14:31:26 +00:00
|
|
|
--post-line-height: 1.4;
|
2022-04-10 14:48:02 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
html {
|
|
|
|
font-size: 14px;
|
2022-04-10 19:50:33 +00:00
|
|
|
// overflow-x: clip causes my browser's tab to crash with SIGILL lul
|
2022-04-04 16:41:09 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 06:42:52 +00:00
|
|
|
body {
|
2022-04-04 16:41:09 +00:00
|
|
|
font-family: sans-serif;
|
|
|
|
font-family: var(--interfaceFont, sans-serif);
|
|
|
|
margin: 0;
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2022-04-10 14:48:02 +00:00
|
|
|
overscroll-behavior-y: none;
|
2022-04-10 18:31:58 +00:00
|
|
|
overflow-x: clip;
|
2022-04-11 20:54:44 +00:00
|
|
|
overflow-y: scroll;
|
2022-04-04 16:41:09 +00:00
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 21:19:29 +00:00
|
|
|
// ## Custom scrollbars
|
|
|
|
// Only show custom scrollbars on devices which
|
|
|
|
// have a cursor/pointer to operate them
|
2022-04-08 10:34:11 +00:00
|
|
|
@media (any-pointer: fine) {
|
|
|
|
* {
|
|
|
|
scrollbar-color: var(--btn) transparent;
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&::-webkit-scrollbar-button,
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
background-color: var(--btn);
|
|
|
|
box-shadow: var(--buttonShadow);
|
|
|
|
border-radius: var(--btnRadius);
|
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-10 19:50:33 +00:00
|
|
|
// horizontal/vertical/increment/decrement are webkit-specific stuff
|
|
|
|
// that indicates whether we're affecting vertical scrollbar, increase button etc
|
|
|
|
// stylelint-disable selector-pseudo-class-no-unknown
|
2022-04-08 10:34:11 +00:00
|
|
|
&::-webkit-scrollbar-button {
|
|
|
|
--___bgPadding: 2px;
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
color: var(--btnText);
|
|
|
|
background-repeat: no-repeat, no-repeat;
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&:horizontal {
|
|
|
|
background-size: 50% calc(50% - var(--___bgPadding)), 50% calc(50% - var(--___bgPadding));
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&:increment {
|
|
|
|
background-image:
|
|
|
|
linear-gradient(45deg, var(--btnText) 50%, transparent 51%),
|
|
|
|
linear-gradient(-45deg, transparent 50%, var(--btnText) 51%);
|
|
|
|
background-position: top var(--___bgPadding) left 50%, right 50% bottom var(--___bgPadding);
|
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&:decrement {
|
|
|
|
background-image:
|
|
|
|
linear-gradient(45deg, transparent 50%, var(--btnText) 51%),
|
|
|
|
linear-gradient(-45deg, var(--btnText) 50%, transparent 51%);
|
|
|
|
background-position: bottom var(--___bgPadding) right 50%, left 50% top var(--___bgPadding);
|
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
}
|
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&:vertical {
|
|
|
|
background-size: calc(50% - var(--___bgPadding)) 50%, calc(50% - var(--___bgPadding)) 50%;
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&:increment {
|
|
|
|
background-image:
|
|
|
|
linear-gradient(-45deg, transparent 50%, var(--btnText) 51%),
|
|
|
|
linear-gradient(45deg, transparent 50%, var(--btnText) 51%);
|
|
|
|
background-position: right var(--___bgPadding) top 50%, left var(--___bgPadding) top 50%;
|
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
&:decrement {
|
|
|
|
background-image:
|
|
|
|
linear-gradient(-45deg, var(--btnText) 50%, transparent 51%),
|
|
|
|
linear-gradient(45deg, var(--btnText) 50%, transparent 51%);
|
|
|
|
background-position: left var(--___bgPadding) top 50%, right var(--___bgPadding) top 50%;
|
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-10 19:50:33 +00:00
|
|
|
// stylelint-enable selector-pseudo-class-no-unknown
|
2022-04-07 13:00:28 +00:00
|
|
|
}
|
2022-04-11 21:19:29 +00:00
|
|
|
// Body should have background to scrollbar otherwise it will use white (body color?)
|
|
|
|
html {
|
|
|
|
scrollbar-color: var(--selectedMenu) var(--wallpaper);
|
2022-04-12 14:23:53 +00:00
|
|
|
background: var(--wallpaper);
|
2022-04-11 21:19:29 +00:00
|
|
|
}
|
2022-04-07 13:00:28 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--link, $fallback--link);
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-04-10 19:50:33 +00:00
|
|
|
i[class*=icon-],
|
|
|
|
.svg-inline--fa {
|
|
|
|
color: $fallback--icon;
|
|
|
|
color: var(--icon, $fallback--icon);
|
|
|
|
}
|
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
nav {
|
|
|
|
z-index: 1000;
|
|
|
|
color: var(--topBarText);
|
|
|
|
background-color: $fallback--fg;
|
|
|
|
background-color: var(--topBar, $fallback--fg);
|
|
|
|
color: $fallback--faint;
|
|
|
|
color: var(--faint, $fallback--faint);
|
|
|
|
box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
|
|
|
|
box-shadow: var(--topBarShadow);
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: var(--navbar-height);
|
2022-04-10 14:48:02 +00:00
|
|
|
position: fixed;
|
2022-04-04 06:42:52 +00:00
|
|
|
}
|
|
|
|
|
2022-04-10 14:48:02 +00:00
|
|
|
#sidebar {
|
|
|
|
grid-area: sidebar;
|
2022-04-10 15:43:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.column.-scrollable {
|
2022-04-10 14:48:02 +00:00
|
|
|
top: var(--navbar-height);
|
2022-04-04 16:41:09 +00:00
|
|
|
position: sticky;
|
|
|
|
}
|
|
|
|
|
2022-04-10 14:48:02 +00:00
|
|
|
#main-scroller {
|
|
|
|
grid-area: content;
|
|
|
|
position: relative;
|
2022-04-05 16:22:15 +00:00
|
|
|
}
|
2022-04-05 15:38:05 +00:00
|
|
|
|
2022-04-05 16:22:15 +00:00
|
|
|
#notifs-column {
|
|
|
|
grid-area: notifs;
|
2022-04-04 16:41:09 +00:00
|
|
|
}
|
|
|
|
|
2019-02-03 20:32:24 +00:00
|
|
|
.app-bg-wrapper {
|
|
|
|
position: fixed;
|
|
|
|
height: 100%;
|
2022-04-04 16:41:09 +00:00
|
|
|
top: var(--navbar-height);
|
|
|
|
z-index: -1000;
|
2019-07-19 16:50:21 +00:00
|
|
|
left: 0;
|
|
|
|
right: -20px;
|
2019-02-03 20:32:24 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2020-12-16 16:25:07 +00:00
|
|
|
background-color: var(--wallpaper);
|
|
|
|
background-image: var(--body-background-image);
|
2022-04-04 06:42:52 +00:00
|
|
|
background-position: 50%;
|
2017-11-02 09:27:52 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
.underlay {
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: span 3;
|
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: 1;
|
|
|
|
pointer-events: none;
|
|
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
|
|
background-color: var(--underlay, rgba(0, 0, 0, 0.15));
|
2022-04-10 17:26:59 +00:00
|
|
|
z-index: -1000;
|
2022-04-05 15:38:05 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 06:42:52 +00:00
|
|
|
.app-layout {
|
2022-04-10 18:54:02 +00:00
|
|
|
--miniColumn: 25rem;
|
|
|
|
--maxiColumn: minmax(var(--miniColumn), 45rem);
|
2022-04-10 11:23:30 +00:00
|
|
|
--columnGap: 1em;
|
2022-04-10 11:47:47 +00:00
|
|
|
--status-margin: 0.75em;
|
2022-04-10 11:23:30 +00:00
|
|
|
|
2022-04-04 06:42:52 +00:00
|
|
|
position: relative;
|
|
|
|
display: grid;
|
2022-04-05 10:03:03 +00:00
|
|
|
grid-template-columns: var(--miniColumn) var(--maxiColumn);
|
2022-04-04 16:41:09 +00:00
|
|
|
grid-template-areas: "sidebar content";
|
2022-04-04 06:42:52 +00:00
|
|
|
grid-template-rows: 1fr;
|
2017-11-23 13:55:53 +00:00
|
|
|
box-sizing: border-box;
|
2022-04-04 06:42:52 +00:00
|
|
|
margin: 0 auto;
|
2020-01-28 21:45:14 +00:00
|
|
|
align-content: flex-start;
|
2022-04-04 06:42:52 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
2022-04-10 16:29:10 +00:00
|
|
|
min-height: 100vh;
|
2022-04-10 18:31:58 +00:00
|
|
|
overflow-x: clip;
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
.column {
|
2022-04-10 11:23:30 +00:00
|
|
|
--___columnMargin: var(--columnGap);
|
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: 1;
|
2022-04-10 11:23:30 +00:00
|
|
|
margin: 0 calc(var(--___columnMargin) / 2);
|
2022-04-26 15:11:46 +00:00
|
|
|
padding: calc(var(--___columnMargin)) 0;
|
2022-04-10 11:23:30 +00:00
|
|
|
row-gap: var(--___columnMargin);
|
2022-04-05 15:38:05 +00:00
|
|
|
align-content: start;
|
|
|
|
|
2022-04-26 15:50:11 +00:00
|
|
|
&:not(.-scrollable) {
|
|
|
|
margin-top: var(--navbar-height);
|
|
|
|
}
|
|
|
|
|
2022-04-10 18:31:58 +00:00
|
|
|
&:hover {
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2022-04-11 20:30:41 +00:00
|
|
|
&.-full-height {
|
|
|
|
margin-bottom: 0;
|
2022-04-26 15:50:11 +00:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
2022-04-11 20:30:41 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
&.-scrollable {
|
2022-04-10 11:23:30 +00:00
|
|
|
--___paddingIncrease: calc(var(--columnGap) / 2);
|
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
position: sticky;
|
2022-04-10 15:43:52 +00:00
|
|
|
top: var(--navbar-height);
|
2022-04-05 15:38:05 +00:00
|
|
|
max-height: calc(100vh - var(--navbar-height));
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2022-04-10 11:23:30 +00:00
|
|
|
margin-left: calc(var(--___paddingIncrease) * -1);
|
|
|
|
padding-left: calc(var(--___paddingIncrease) + var(--___columnMargin) / 2);
|
2022-04-07 12:11:23 +00:00
|
|
|
|
2022-04-11 21:19:29 +00:00
|
|
|
// On browsers that don't support hiding scrollbars we enforce "show scrolbars" mode
|
|
|
|
// might implement old style of hiding scrollbars later if there's demand
|
|
|
|
@supports (scrollbar-width: none) or (-webkit-text-fill-color: initial) {
|
|
|
|
&:not(.-show-scrollbar) {
|
|
|
|
scrollbar-width: none;
|
|
|
|
margin-right: calc(var(--___paddingIncrease) * -1);
|
|
|
|
padding-right: calc(var(--___paddingIncrease) + var(--___columnMargin) / 2);
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: block;
|
|
|
|
width: 0;
|
|
|
|
}
|
2022-04-07 12:11:23 +00:00
|
|
|
}
|
2022-04-08 10:34:11 +00:00
|
|
|
}
|
2022-04-05 10:03:03 +00:00
|
|
|
|
2022-04-08 10:34:11 +00:00
|
|
|
.panel-heading.-sticky {
|
2022-04-26 15:11:46 +00:00
|
|
|
top: calc(var(--columnGap) / -1);
|
2022-04-05 15:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-10 17:18:54 +00:00
|
|
|
&.-has-new-post-button {
|
|
|
|
.column {
|
2022-04-10 18:54:02 +00:00
|
|
|
padding-bottom: 10rem;
|
2022-04-10 17:18:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 12:11:23 +00:00
|
|
|
&.-no-sticky-headers {
|
|
|
|
.column {
|
|
|
|
.panel-heading.-sticky {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
.column-inner {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
row-gap: 1em;
|
|
|
|
align-content: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.-reverse:not(.-wide):not(.-mobile) {
|
2022-04-05 10:03:03 +00:00
|
|
|
grid-template-columns: var(--maxiColumn) var(--miniColumn);
|
2022-04-04 16:41:09 +00:00
|
|
|
grid-template-areas: "content sidebar";
|
|
|
|
}
|
2022-04-04 06:42:52 +00:00
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
&.-wide {
|
|
|
|
grid-template-columns: var(--miniColumn) var(--maxiColumn) var(--miniColumn);
|
|
|
|
grid-template-areas: "sidebar content notifs";
|
2022-04-04 06:42:52 +00:00
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
&.-reverse {
|
|
|
|
grid-template-areas: "notifs content sidebar";
|
|
|
|
}
|
|
|
|
}
|
2022-04-04 06:42:52 +00:00
|
|
|
|
2022-04-05 15:38:05 +00:00
|
|
|
&.-mobile {
|
|
|
|
grid-template-columns: 100vw;
|
|
|
|
grid-template-areas: "content";
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
.column {
|
2022-04-26 15:55:21 +00:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
padding-top: 0;
|
|
|
|
margin-top: var(--navbar-height);
|
|
|
|
margin-bottom: 0;
|
2022-04-05 15:38:05 +00:00
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2022-05-31 17:35:30 +00:00
|
|
|
.panel-heading,
|
|
|
|
.panel-heading::after,
|
|
|
|
.panel-heading::before,
|
|
|
|
.panel,
|
|
|
|
.panel::after {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
2022-04-07 13:39:32 +00:00
|
|
|
#sidebar,
|
|
|
|
#notifs-column {
|
2022-04-05 16:22:15 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-04-04 06:42:52 +00:00
|
|
|
}
|
2022-04-10 16:29:10 +00:00
|
|
|
|
|
|
|
&.-normal {
|
|
|
|
#notifs-column {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2022-04-04 06:42:52 +00:00
|
|
|
}
|
|
|
|
|
2016-10-26 17:03:55 +00:00
|
|
|
.text-center {
|
2018-04-01 02:28:20 +00:00
|
|
|
text-align: center;
|
2016-10-26 17:03:55 +00:00
|
|
|
}
|
|
|
|
|
2020-11-24 10:32:42 +00:00
|
|
|
.button-default {
|
2020-11-24 15:47:37 +00:00
|
|
|
user-select: none;
|
2018-10-07 16:59:22 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnText, $fallback--text);
|
|
|
|
background-color: $fallback--fg;
|
|
|
|
background-color: var(--btn, $fallback--fg);
|
2018-04-01 02:28:20 +00:00
|
|
|
border: none;
|
2018-04-01 19:07:25 +00:00
|
|
|
border-radius: $fallback--btnRadius;
|
|
|
|
border-radius: var(--btnRadius, $fallback--btnRadius);
|
2018-04-01 02:28:20 +00:00
|
|
|
cursor: pointer;
|
2020-02-11 12:24:51 +00:00
|
|
|
box-shadow: $fallback--buttonShadow;
|
2018-11-21 18:23:07 +00:00
|
|
|
box-shadow: var(--buttonShadow);
|
2022-04-10 19:09:46 +00:00
|
|
|
font-size: 1em;
|
2018-04-01 02:28:20 +00:00
|
|
|
font-family: sans-serif;
|
2018-11-25 18:48:16 +00:00
|
|
|
font-family: var(--interfaceFont, sans-serif);
|
2017-08-02 19:09:40 +00:00
|
|
|
|
2021-06-08 07:13:40 +00:00
|
|
|
&.-sublime {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2020-11-24 10:32:42 +00:00
|
|
|
i[class*=icon-],
|
|
|
|
.svg-inline--fa {
|
2018-11-20 19:14:49 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnText, $fallback--text);
|
|
|
|
}
|
2017-08-02 19:09:40 +00:00
|
|
|
|
2018-08-28 13:20:04 +00:00
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
&:hover {
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
|
2018-11-21 18:23:07 +00:00
|
|
|
box-shadow: var(--buttonHoverShadow);
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2018-08-28 13:20:04 +00:00
|
|
|
&:active {
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.3), 0 1px 0 0 rgba(0, 0, 0, 0.2) inset, 0 -1px 0 0 rgba(255, 255, 255, 0.2) inset;
|
2018-11-22 21:24:16 +00:00
|
|
|
box-shadow: var(--buttonPressedShadow);
|
2020-01-12 23:56:29 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnPressedText, $fallback--text);
|
|
|
|
background-color: $fallback--fg;
|
2020-02-17 21:43:56 +00:00
|
|
|
background-color: var(--btnPressed, $fallback--fg);
|
2020-10-19 19:35:46 +00:00
|
|
|
|
2020-11-24 15:47:37 +00:00
|
|
|
svg,
|
|
|
|
i {
|
2020-02-17 21:43:56 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnPressedText, $fallback--text);
|
|
|
|
}
|
2018-08-28 13:20:04 +00:00
|
|
|
}
|
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
2020-01-13 19:30:55 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnDisabledText, $fallback--text);
|
|
|
|
background-color: $fallback--fg;
|
2020-02-17 21:43:56 +00:00
|
|
|
background-color: var(--btnDisabled, $fallback--fg);
|
2020-10-19 19:35:46 +00:00
|
|
|
|
2020-11-24 15:47:37 +00:00
|
|
|
svg,
|
|
|
|
i {
|
2020-02-17 21:43:56 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnDisabledText, $fallback--text);
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 20:19:19 +00:00
|
|
|
&.toggled {
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnToggledText, $fallback--text);
|
|
|
|
background-color: $fallback--fg;
|
2020-01-28 20:40:15 +00:00
|
|
|
background-color: var(--btnToggled, $fallback--fg);
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.3), 0 1px 0 0 rgba(0, 0, 0, 0.2) inset, 0 -1px 0 0 rgba(255, 255, 255, 0.2) inset;
|
2020-01-28 20:40:15 +00:00
|
|
|
box-shadow: var(--buttonPressedShadow);
|
2020-10-19 19:35:46 +00:00
|
|
|
|
2020-11-24 15:47:37 +00:00
|
|
|
svg,
|
|
|
|
i {
|
2020-02-17 21:43:56 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnToggledText, $fallback--text);
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2019-02-18 14:49:32 +00:00
|
|
|
|
|
|
|
&.danger {
|
|
|
|
// TODO: add better color variable
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--alertErrorPanelText, $fallback--text);
|
|
|
|
background-color: $fallback--alertError;
|
|
|
|
background-color: var(--alertError, $fallback--alertError);
|
|
|
|
}
|
2017-02-18 07:48:35 +00:00
|
|
|
}
|
|
|
|
|
2020-11-24 10:32:42 +00:00
|
|
|
.button-unstyled {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
display: inline;
|
|
|
|
text-align: initial;
|
|
|
|
font-size: 100%;
|
|
|
|
font-family: inherit;
|
|
|
|
padding: 0;
|
|
|
|
line-height: unset;
|
|
|
|
cursor: pointer;
|
2020-11-24 12:52:01 +00:00
|
|
|
box-sizing: content-box;
|
|
|
|
color: inherit;
|
2020-11-24 10:32:42 +00:00
|
|
|
|
|
|
|
&.-link {
|
|
|
|
color: $fallback--link;
|
|
|
|
color: var(--link, $fallback--link);
|
|
|
|
}
|
|
|
|
|
2020-11-24 12:52:01 +00:00
|
|
|
&.-fullwidth {
|
|
|
|
width: 100%;
|
2020-11-24 10:32:42 +00:00
|
|
|
}
|
2021-01-20 15:36:40 +00:00
|
|
|
|
|
|
|
&.-hover-highlight {
|
|
|
|
&:hover svg {
|
|
|
|
color: $fallback--lightText;
|
|
|
|
color: var(--lightText, $fallback--lightText);
|
|
|
|
}
|
|
|
|
}
|
2020-11-24 10:32:42 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
.input {
|
2020-01-02 21:48:52 +00:00
|
|
|
&.unstyled {
|
|
|
|
border-radius: 0;
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
height: unset;
|
|
|
|
}
|
2018-04-07 18:58:29 +00:00
|
|
|
|
2022-04-26 14:31:26 +00:00
|
|
|
--_padding: 0.5em;
|
2022-04-25 21:07:51 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
border: none;
|
2018-04-15 04:25:59 +00:00
|
|
|
border-radius: $fallback--inputRadius;
|
|
|
|
border-radius: var(--inputRadius, $fallback--inputRadius);
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2) inset, 0 -1px 0 0 rgba(255, 255, 255, 0.2) inset, 0 0 2px 0 rgba(0, 0, 0, 1) inset;
|
2018-11-21 18:23:07 +00:00
|
|
|
box-shadow: var(--inputShadow);
|
2018-10-07 16:59:22 +00:00
|
|
|
background-color: $fallback--fg;
|
|
|
|
background-color: var(--input, $fallback--fg);
|
|
|
|
color: $fallback--lightText;
|
|
|
|
color: var(--inputText, $fallback--lightText);
|
2018-03-31 18:14:36 +00:00
|
|
|
font-family: sans-serif;
|
2018-11-25 18:48:16 +00:00
|
|
|
font-family: var(--inputFont, sans-serif);
|
2022-04-10 19:09:46 +00:00
|
|
|
font-size: 1em;
|
2019-06-17 17:48:54 +00:00
|
|
|
margin: 0;
|
2018-04-01 19:07:25 +00:00
|
|
|
box-sizing: border-box;
|
2018-04-07 18:58:29 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2022-04-26 14:31:26 +00:00
|
|
|
line-height: 2;
|
2018-08-30 15:23:43 +00:00
|
|
|
hyphens: none;
|
2022-04-26 14:31:26 +00:00
|
|
|
padding: 0 var(--_padding);
|
2020-01-02 21:48:52 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
&:disabled,
|
|
|
|
&[disabled=disabled],
|
|
|
|
&.disabled {
|
2018-11-23 08:36:36 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2018-11-20 19:14:49 +00:00
|
|
|
&[type=range] {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
&[type=radio] {
|
|
|
|
display: none;
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
&:checked + label::before {
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 0 2px black inset, 0 0 0 4px $fallback--fg inset;
|
|
|
|
box-shadow: var(--inputShadow), 0 0 0 4px var(--fg, $fallback--fg) inset;
|
2019-12-28 13:55:42 +00:00
|
|
|
background-color: var(--accent, $fallback--link);
|
2019-06-18 20:28:31 +00:00
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
&:disabled {
|
|
|
|
&,
|
|
|
|
& + label,
|
|
|
|
& + label::before {
|
2022-04-04 16:41:09 +00:00
|
|
|
opacity: 0.5;
|
2019-06-18 20:28:31 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
+ label::before {
|
2019-06-20 13:00:10 +00:00
|
|
|
flex-shrink: 0;
|
2019-06-18 20:28:31 +00:00
|
|
|
display: inline-block;
|
|
|
|
content: '';
|
|
|
|
transition: box-shadow 200ms;
|
|
|
|
width: 1.1em;
|
|
|
|
height: 1.1em;
|
|
|
|
border-radius: 100%; // Radio buttons should always be circle
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 0 2px black inset;
|
2019-06-18 20:28:31 +00:00
|
|
|
box-shadow: var(--inputShadow);
|
2022-04-04 16:41:09 +00:00
|
|
|
margin-right: 0.5em;
|
2019-06-18 20:28:31 +00:00
|
|
|
background-color: $fallback--fg;
|
|
|
|
background-color: var(--input, $fallback--fg);
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
2022-04-20 20:55:34 +00:00
|
|
|
line-height: 1.1;
|
2019-06-18 20:28:31 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: transparent;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
&[type=checkbox] {
|
|
|
|
display: none;
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
&:checked + label::before {
|
2018-10-07 16:59:22 +00:00
|
|
|
color: $fallback--text;
|
2020-02-06 23:25:26 +00:00
|
|
|
color: var(--inputText, $fallback--text);
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2019-02-12 03:35:24 +00:00
|
|
|
&:disabled {
|
2018-08-13 14:07:45 +00:00
|
|
|
&,
|
|
|
|
& + label,
|
|
|
|
& + label::before {
|
2022-04-04 16:41:09 +00:00
|
|
|
opacity: 0.5;
|
2018-08-13 14:07:45 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2018-03-31 18:14:36 +00:00
|
|
|
+ label::before {
|
2019-06-20 13:00:10 +00:00
|
|
|
flex-shrink: 0;
|
2018-03-31 18:14:36 +00:00
|
|
|
display: inline-block;
|
2020-10-11 00:03:45 +00:00
|
|
|
content: '✓';
|
2018-03-31 18:14:36 +00:00
|
|
|
transition: color 200ms;
|
|
|
|
width: 1.1em;
|
|
|
|
height: 1.1em;
|
2018-11-23 04:28:53 +00:00
|
|
|
border-radius: $fallback--checkboxRadius;
|
|
|
|
border-radius: var(--checkboxRadius, $fallback--checkboxRadius);
|
2022-04-04 16:41:09 +00:00
|
|
|
box-shadow: 0 0 2px black inset;
|
2018-11-21 18:23:07 +00:00
|
|
|
box-shadow: var(--inputShadow);
|
2022-04-04 16:41:09 +00:00
|
|
|
margin-right: 0.5em;
|
2018-10-07 16:59:22 +00:00
|
|
|
background-color: $fallback--fg;
|
|
|
|
background-color: var(--input, $fallback--fg);
|
2018-04-01 19:07:25 +00:00
|
|
|
vertical-align: top;
|
2018-03-31 18:14:36 +00:00
|
|
|
text-align: center;
|
2022-04-20 20:55:34 +00:00
|
|
|
line-height: 1.1;
|
2018-03-31 18:14:36 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: transparent;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
2020-12-15 18:17:50 +00:00
|
|
|
|
|
|
|
&.resize-height {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
}
|
|
|
|
|
2022-04-26 14:31:26 +00:00
|
|
|
// Textareas should have stock line-height + vertical padding instead of huge line-height
|
|
|
|
textarea {
|
|
|
|
padding: var(--_padding);
|
|
|
|
line-height: var(--post-line-height);
|
|
|
|
}
|
|
|
|
|
2018-08-05 06:18:04 +00:00
|
|
|
option {
|
2018-10-07 16:59:22 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
2018-08-05 06:18:04 +00:00
|
|
|
background-color: $fallback--bg;
|
|
|
|
background-color: var(--bg, $fallback--bg);
|
|
|
|
}
|
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
.hide-number-spinner {
|
|
|
|
-moz-appearance: textfield;
|
2022-04-04 16:41:09 +00:00
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
&[type=number]::-webkit-inner-spin-button,
|
|
|
|
&[type=number]::-webkit-outer-spin-button {
|
|
|
|
opacity: 0;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-26 07:33:25 +00:00
|
|
|
.btn-block {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group {
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
button {
|
|
|
|
position: relative;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-31 18:14:36 +00:00
|
|
|
|
2022-04-05 14:15:30 +00:00
|
|
|
@import './panel.scss';
|
2016-10-26 17:03:55 +00:00
|
|
|
|
|
|
|
.fa {
|
2018-04-01 02:28:20 +00:00
|
|
|
color: grey;
|
2016-10-26 17:03:55 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 16:27:39 +00:00
|
|
|
.mobile-shown {
|
2018-04-01 02:28:20 +00:00
|
|
|
display: none;
|
2017-01-17 16:27:39 +00:00
|
|
|
}
|
|
|
|
|
2018-11-26 00:19:04 +00:00
|
|
|
.badge {
|
2020-11-02 18:51:38 +00:00
|
|
|
box-sizing: border-box;
|
2018-11-26 00:19:04 +00:00
|
|
|
display: inline-block;
|
|
|
|
border-radius: 99px;
|
2020-11-02 18:51:38 +00:00
|
|
|
max-width: 10em;
|
|
|
|
min-width: 1.7em;
|
|
|
|
height: 1.3em;
|
|
|
|
padding: 0.15em 0.15em;
|
2018-11-26 00:19:04 +00:00
|
|
|
vertical-align: middle;
|
2020-11-02 18:51:38 +00:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 1;
|
|
|
|
text-align: center;
|
2018-11-26 00:19:04 +00:00
|
|
|
white-space: nowrap;
|
2020-11-02 18:51:38 +00:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2018-11-26 00:19:04 +00:00
|
|
|
|
|
|
|
&.badge-notification {
|
|
|
|
background-color: $fallback--cRed;
|
|
|
|
background-color: var(--badgeNotification, $fallback--cRed);
|
|
|
|
color: white;
|
|
|
|
color: var(--badgeNotificationText, white);
|
|
|
|
}
|
|
|
|
}
|
2017-04-13 13:17:57 +00:00
|
|
|
|
2018-04-08 00:22:03 +00:00
|
|
|
.alert {
|
2022-04-20 16:44:31 +00:00
|
|
|
margin: 0 0.35em;
|
|
|
|
padding: 0 0.25em;
|
2018-04-08 00:22:03 +00:00
|
|
|
border-radius: $fallback--tooltipRadius;
|
|
|
|
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
|
|
|
|
|
|
|
|
&.error {
|
2018-11-13 13:30:01 +00:00
|
|
|
background-color: $fallback--alertError;
|
|
|
|
background-color: var(--alertError, $fallback--alertError);
|
2018-11-14 16:39:17 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--alertErrorText, $fallback--text);
|
|
|
|
|
|
|
|
.panel-heading & {
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--alertErrorPanelText, $fallback--text);
|
|
|
|
}
|
2018-04-08 00:22:03 +00:00
|
|
|
}
|
2019-10-07 20:46:40 +00:00
|
|
|
|
|
|
|
&.warning {
|
|
|
|
background-color: $fallback--alertWarning;
|
|
|
|
background-color: var(--alertWarning, $fallback--alertWarning);
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--alertWarningText, $fallback--text);
|
|
|
|
|
|
|
|
.panel-heading & {
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--alertWarningPanelText, $fallback--text);
|
|
|
|
}
|
|
|
|
}
|
2021-01-13 19:29:12 +00:00
|
|
|
|
|
|
|
&.success {
|
|
|
|
background-color: var(--alertSuccess, $fallback--alertWarning);
|
|
|
|
color: var(--alertSuccessText, $fallback--text);
|
|
|
|
|
|
|
|
.panel-heading & {
|
|
|
|
color: var(--alertSuccessPanelText, $fallback--text);
|
|
|
|
}
|
|
|
|
}
|
2018-04-08 00:22:03 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 16:25:24 +00:00
|
|
|
.faint {
|
|
|
|
color: $fallback--faint;
|
2018-04-10 19:12:59 +00:00
|
|
|
color: var(--faint, $fallback--faint);
|
2018-04-10 16:25:24 +00:00
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
|
|
|
|
.faint-link {
|
|
|
|
color: $fallback--faint;
|
|
|
|
color: var(--faint, $fallback--faint);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-23 07:53:15 +00:00
|
|
|
.visibility-notice {
|
2022-04-04 16:41:09 +00:00
|
|
|
padding: 0.5em;
|
2018-06-23 07:53:15 +00:00
|
|
|
border: 1px solid $fallback--faint;
|
|
|
|
border: 1px solid var(--faint, $fallback--faint);
|
|
|
|
border-radius: $fallback--inputRadius;
|
|
|
|
border-radius: var(--inputRadius, $fallback--inputRadius);
|
|
|
|
}
|
2018-12-18 18:26:14 +00:00
|
|
|
|
2019-05-07 19:32:47 +00:00
|
|
|
.notice-dismissible {
|
|
|
|
padding-right: 4rem;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.dismiss {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2022-04-04 16:41:09 +00:00
|
|
|
padding: 0.5em;
|
2019-05-07 19:32:47 +00:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-28 19:31:16 +00:00
|
|
|
.fa-scale-110 {
|
|
|
|
&.svg-inline--fa {
|
2020-10-19 16:38:49 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
2019-03-02 16:35:38 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 19:31:16 +00:00
|
|
|
.fa-old-padding {
|
|
|
|
&.svg-inline--fa {
|
|
|
|
padding: 0 0.3em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
.login-hint {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
@media all and (min-width: 801px) {
|
|
|
|
display: none;
|
2019-01-28 15:43:51 +00:00
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 1em 0;
|
|
|
|
width: 100%;
|
2019-01-28 15:43:51 +00:00
|
|
|
}
|
2022-04-04 16:41:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn.button-default {
|
2022-04-10 19:09:46 +00:00
|
|
|
min-height: 2em;
|
2022-04-04 16:41:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.new-status-notification {
|
|
|
|
position: relative;
|
|
|
|
font-size: 1.1em;
|
|
|
|
z-index: 1;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2019-01-26 15:45:03 +00:00
|
|
|
@media all and (max-width: 800px) {
|
2018-12-18 18:26:14 +00:00
|
|
|
.mobile-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2019-02-06 10:01:32 +00:00
|
|
|
|
2019-12-03 16:16:38 +00:00
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
|
|
|
}
|
2019-12-12 03:33:40 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
@keyframes shakeError {
|
|
|
|
0% {
|
|
|
|
transform: translateX(0);
|
|
|
|
}
|
2020-05-07 13:10:53 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
15% {
|
|
|
|
transform: translateX(0.375rem);
|
|
|
|
}
|
2020-06-21 14:13:29 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
30% {
|
|
|
|
transform: translateX(-0.375rem);
|
|
|
|
}
|
2020-06-21 14:13:29 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
45% {
|
|
|
|
transform: translateX(0.375rem);
|
|
|
|
}
|
2020-06-21 14:13:29 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
60% {
|
|
|
|
transform: translateX(-0.375rem);
|
|
|
|
}
|
2020-06-21 14:13:29 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
75% {
|
|
|
|
transform: translateX(0.375rem);
|
|
|
|
}
|
2020-06-21 14:13:29 +00:00
|
|
|
|
2022-04-04 16:41:09 +00:00
|
|
|
90% {
|
|
|
|
transform: translateX(-0.375rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: translateX(0);
|
2020-06-21 14:13:29 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-05 14:15:30 +00:00
|
|
|
|
|
|
|
// Vue transitions
|
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
}
|