pleroma-fe/src/App.scss

903 lines
18 KiB
SCSS
Raw Permalink Normal View History

// stylelint-disable rscss/class-format
2023-01-09 19:02:16 +01:00
/* stylelint-disable no-descending-specificity */
@import "./panel";
2022-04-10 16:48:02 +02:00
:root {
2024-03-04 21:52:54 +01:00
--font-size: 14px;
--status-margin: 0.75em;
2022-04-10 21:37:08 +02:00
--navbar-height: 3.5rem;
--post-line-height: 1.4;
// Z-Index stuff
--ZI_media_modal: 9000;
--ZI_modals_popovers: 8500;
--ZI_modals: 8000;
--ZI_navbar_popovers: 7500;
--ZI_navbar: 7000;
--ZI_popovers: 6000;
2022-04-10 16:48:02 +02:00
}
html {
2024-03-04 21:52:54 +01:00
font-size: var(--font-size);
2022-04-10 21:50:33 +02:00
// overflow-x: clip causes my browser's tab to crash with SIGILL lul
2024-04-03 20:10:27 +02:00
// Fallback for when stuff is loading
--background: var(--bg);
}
2022-04-04 08:42:52 +02:00
body {
font-family: sans-serif;
2024-02-22 17:04:28 +01:00
font-family: var(--font);
margin: 0;
2024-01-31 16:39:51 +01:00
color: var(--text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2022-04-10 16:48:02 +02:00
overscroll-behavior-y: none;
overflow-x: clip;
2022-04-11 22:54:44 +02:00
overflow-y: scroll;
&.hidden {
display: none;
}
}
// ## Custom scrollbars
// Only show custom scrollbars on devices which
// have a cursor/pointer to operate them
2022-04-08 12:34:11 +02:00
@media (any-pointer: fine) {
* {
scrollbar-color: var(--fg) transparent;
2022-04-07 15:00:28 +02:00
2022-04-08 12:34:11 +02:00
&::-webkit-scrollbar {
background: transparent;
}
2022-04-07 15:00:28 +02:00
&::-webkit-scrollbar-corner {
background: transparent;
}
&::-webkit-resizer {
/* stylelint-disable-next-line declaration-no-important */
background-color: transparent !important;
background-image:
linear-gradient(
135deg,
transparent calc(50% - 1px),
var(--textFaint) 50%,
transparent calc(50% + 1px),
transparent calc(75% - 1px),
var(--textFaint) 75%,
transparent calc(75% + 1px),
);
}
2022-04-08 12:34:11 +02:00
&::-webkit-scrollbar-button,
&::-webkit-scrollbar-thumb {
box-shadow: var(--shadow);
border-radius: var(--roundness);
2022-04-08 12:34:11 +02:00
}
2022-04-07 15:00:28 +02:00
2022-04-10 21:50:33 +02: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 12:34:11 +02:00
&::-webkit-scrollbar-button {
--___bgPadding: 2px;
2022-04-07 15:00:28 +02:00
color: var(--text);
2022-04-08 12:34:11 +02:00
background-repeat: no-repeat, no-repeat;
2022-04-07 15:00:28 +02:00
2022-04-08 12:34:11 +02:00
&:horizontal {
background-size: 50% calc(50% - var(--___bgPadding)), 50% calc(50% - var(--___bgPadding));
2022-04-07 15:00:28 +02:00
2022-04-08 12:34:11 +02:00
&:increment {
background-image:
2024-02-28 14:04:01 +01:00
linear-gradient(45deg, var(--text) 50%, transparent 51%),
linear-gradient(-45deg, transparent 50%, var(--text) 51%);
2022-04-08 12:34:11 +02:00
background-position: top var(--___bgPadding) left 50%, right 50% bottom var(--___bgPadding);
}
2022-04-07 15:00:28 +02:00
2022-04-08 12:34:11 +02:00
&:decrement {
background-image:
linear-gradient(45deg, transparent 50%, var(--text) calc(50% + 1px)),
2024-02-28 14:04:01 +01:00
linear-gradient(-45deg, var(--text) 50%, transparent 51%);
2022-04-08 12:34:11 +02:00
background-position: bottom var(--___bgPadding) right 50%, left 50% top var(--___bgPadding);
}
2022-04-07 15:00:28 +02:00
}
2022-04-08 12:34:11 +02:00
&:vertical {
background-size: calc(50% - var(--___bgPadding)) 50%, calc(50% - var(--___bgPadding)) 50%;
2022-04-07 15:00:28 +02:00
2022-04-08 12:34:11 +02:00
&:increment {
background-image:
2024-02-28 14:04:01 +01:00
linear-gradient(-45deg, transparent 50%, var(--text) 51%),
linear-gradient(45deg, transparent 50%, var(--text) 51%);
2022-04-08 12:34:11 +02:00
background-position: right var(--___bgPadding) top 50%, left var(--___bgPadding) top 50%;
}
2022-04-07 15:00:28 +02:00
2022-04-08 12:34:11 +02:00
&:decrement {
background-image:
2024-02-28 14:04:01 +01:00
linear-gradient(-45deg, var(--text) 50%, transparent 51%),
linear-gradient(45deg, var(--text) 50%, transparent 51%);
2022-04-08 12:34:11 +02:00
background-position: left var(--___bgPadding) top 50%, right var(--___bgPadding) top 50%;
}
2022-04-07 15:00:28 +02:00
}
}
2022-04-10 21:50:33 +02:00
// stylelint-enable selector-pseudo-class-no-unknown
2022-04-07 15:00:28 +02:00
}
// Body should have background to scrollbar otherwise it will use white (body color?)
html {
2024-02-28 14:04:01 +01:00
scrollbar-color: var(--fg) var(--wallpaper);
2022-04-12 16:23:53 +02:00
background: var(--wallpaper);
}
2022-04-07 15:00:28 +02:00
}
a {
text-decoration: none;
2024-01-31 16:39:51 +01:00
color: var(--link);
}
h4 {
margin: 0;
}
2022-08-11 20:00:27 +02:00
.iconLetter {
display: inline-block;
text-align: center;
font-weight: 1000;
}
2023-01-09 19:02:16 +01:00
i[class*="icon-"],
2022-08-11 20:00:27 +02:00
.svg-inline--fa,
.iconLetter {
2024-01-31 16:39:51 +01:00
color: var(--icon);
2022-04-10 21:50:33 +02:00
}
nav {
z-index: var(--ZI_navbar);
2024-02-22 17:04:28 +01:00
box-shadow: var(--shadow);
box-sizing: border-box;
height: var(--navbar-height);
2022-04-10 16:48:02 +02:00
position: fixed;
2022-04-04 08:42:52 +02:00
}
2022-04-10 16:48:02 +02:00
#sidebar {
grid-area: sidebar;
2022-04-10 17:43:52 +02:00
}
2022-08-23 00:46:59 +02:00
#modal {
position: absolute;
z-index: var(--ZI_modals);
}
2022-04-10 17:43:52 +02:00
.column.-scrollable {
2022-04-10 16:48:02 +02:00
top: var(--navbar-height);
position: sticky;
}
2022-04-10 16:48:02 +02:00
#main-scroller {
grid-area: content;
position: relative;
2022-04-05 18:22:15 +02:00
}
2022-04-05 18:22:15 +02:00
#notifs-column {
grid-area: notifs;
}
2019-02-03 21:32:24 +01:00
.app-bg-wrapper {
position: fixed;
height: 100%;
top: var(--navbar-height);
z-index: -1000;
left: 0;
right: -20px;
2019-02-03 21:32:24 +01:00
background-size: cover;
background-repeat: no-repeat;
2020-12-16 17:25:07 +01:00
background-color: var(--wallpaper);
background-image: var(--body-background-image);
2022-04-04 08:42:52 +02:00
background-position: 50%;
2017-11-02 10:27:52 +01:00
}
.underlay {
2023-01-09 19:02:16 +01:00
grid-column: 1 / span 3;
grid-row: 1 / 1;
pointer-events: none;
2024-02-11 22:11:28 +01:00
background-color: var(--underlay);
2022-04-10 19:26:59 +02:00
z-index: -1000;
}
2022-04-04 08:42:52 +02:00
.app-layout {
--miniColumn: 25rem;
2022-08-11 15:14:18 +02:00
--maxiColumn: 45rem;
--columnGap: 1em;
--effectiveSidebarColumnWidth: minmax(var(--miniColumn), var(--sidebarColumnWidth, var(--miniColumn)));
--effectiveNotifsColumnWidth: minmax(var(--miniColumn), var(--notifsColumnWidth, var(--miniColumn)));
--effectiveContentColumnWidth: minmax(var(--miniColumn), var(--contentColumnWidth, var(--maxiColumn)));
2022-04-04 08:42:52 +02:00
position: relative;
display: grid;
grid-template-columns:
var(--effectiveSidebarColumnWidth)
var(--effectiveContentColumnWidth);
grid-template-areas: "sidebar content";
2022-04-04 08:42:52 +02:00
grid-template-rows: 1fr;
box-sizing: border-box;
2022-04-04 08:42:52 +02:00
margin: 0 auto;
align-content: flex-start;
2022-04-04 08:42:52 +02:00
flex-wrap: wrap;
justify-content: center;
2022-04-10 18:29:10 +02:00
min-height: 100vh;
overflow-x: clip;
.column {
--___columnMargin: var(--columnGap);
display: grid;
grid-template-columns: 100%;
box-sizing: border-box;
2023-01-09 19:02:16 +01:00
grid-row: 1 / 1;
margin: 0 calc(var(--___columnMargin) / 2);
padding: calc(var(--___columnMargin)) 0;
row-gap: var(--___columnMargin);
align-content: start;
2022-04-26 17:50:11 +02:00
&:not(.-scrollable) {
margin-top: var(--navbar-height);
}
&:hover {
z-index: 2;
}
2022-04-11 22:30:41 +02:00
&.-full-height {
margin-bottom: 0;
2022-04-26 17:50:11 +02:00
padding-top: 0;
padding-bottom: 0;
2022-04-11 22:30:41 +02:00
}
&.-scrollable {
--___paddingIncrease: calc(var(--columnGap) / 2);
position: sticky;
2022-04-10 17:43:52 +02:00
top: var(--navbar-height);
max-height: calc(100vh - var(--navbar-height));
overflow-y: auto;
overflow-x: hidden;
margin-left: calc(var(--___paddingIncrease) * -1);
padding-left: calc(var(--___paddingIncrease) + var(--___columnMargin) / 2);
// 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-08 12:34:11 +02:00
}
2022-04-05 12:03:03 +02:00
2022-04-08 12:34:11 +02:00
.panel-heading.-sticky {
top: calc(var(--columnGap) / -1);
}
}
}
&.-has-new-post-button {
.column {
padding-bottom: 10rem;
}
}
&.-no-sticky-headers {
.column {
.panel-heading.-sticky {
position: relative;
top: 0;
}
}
}
.column-inner {
display: grid;
grid-template-columns: 100%;
box-sizing: border-box;
row-gap: 1em;
align-content: start;
}
2023-01-09 19:02:16 +01:00
&.-reverse:not(.-wide, .-mobile) {
grid-template-columns:
var(--effectiveContentColumnWidth)
var(--effectiveSidebarColumnWidth);
grid-template-areas: "content sidebar";
}
2022-04-04 08:42:52 +02:00
&.-wide {
grid-template-columns:
var(--effectiveSidebarColumnWidth)
var(--effectiveContentColumnWidth)
var(--effectiveNotifsColumnWidth);
grid-template-areas: "sidebar content notifs";
2022-04-04 08:42:52 +02:00
&.-reverse {
grid-template-columns:
var(--effectiveNotifsColumnWidth)
var(--effectiveContentColumnWidth)
var(--effectiveSidebarColumnWidth);
grid-template-areas: "notifs content sidebar";
}
}
2022-04-04 08:42:52 +02:00
&.-mobile {
grid-template-columns: 100vw;
grid-template-areas: "content";
padding: 0;
.column {
2022-04-26 17:55:21 +02:00
padding-top: 0;
2023-01-16 04:39:20 +01:00
margin: var(--navbar-height) 0 0 0;
}
.panel-heading,
.panel-heading::after,
.panel-heading::before,
.panel,
.panel::after {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
2022-04-07 15:39:32 +02:00
#sidebar,
#notifs-column {
2022-04-05 18:22:15 +02:00
display: none;
}
2022-04-04 08:42:52 +02:00
}
2022-04-10 18:29:10 +02:00
&.-normal {
#notifs-column {
display: none;
}
}
2022-04-04 08:42:52 +02:00
}
2016-10-26 19:03:55 +02:00
.text-center {
text-align: center;
2016-10-26 19:03:55 +02:00
}
.button-default {
user-select: none;
2024-02-11 22:11:28 +01:00
color: var(--text);
border: none;
2024-02-13 01:09:43 +01:00
border-radius: var(--roundness);
cursor: pointer;
2024-04-03 20:10:27 +02:00
background-color: var(--background);
box-shadow: var(--shadow);
2022-04-10 21:09:46 +02:00
font-size: 1em;
font-family: sans-serif;
2024-02-22 17:04:28 +01:00
font-family: var(--font);
2018-08-28 15:20:04 +02:00
&::-moz-focus-inner {
border: none;
}
&:disabled {
cursor: not-allowed;
2019-02-18 15:49:32 +01:00
}
2017-02-18 08:48:35 +01:00
}
2024-02-29 16:49:56 +01:00
.menu-item,
.list-item {
2024-02-28 00:23:43 +01:00
display: block;
box-sizing: border-box;
border: none;
outline: none;
text-align: initial;
font-size: inherit;
font-family: inherit;
2024-02-28 00:23:43 +01:00
font-weight: 400;
cursor: pointer;
color: inherit;
2024-02-28 00:23:43 +01:00
clear: both;
2024-02-13 01:27:53 +01:00
position: relative;
2024-02-28 00:23:43 +01:00
white-space: nowrap;
2024-02-13 01:27:53 +01:00
border-color: var(--border);
2024-02-29 16:49:56 +01:00
border-style: solid;
border-width: 0;
border-top-width: 1px;
width: 100%;
2024-02-28 00:23:43 +01:00
line-height: var(--__line-height);
padding: var(--__vertical-gap) var(--__horizontal-gap);
--__line-height: 1.5em;
--__horizontal-gap: 0.75em;
--__vertical-gap: 0.5em;
&.-non-interactive {
cursor: auto;
}
2024-02-29 16:49:56 +01:00
&.-active,
&:hover {
border-top-width: 1px;
border-bottom-width: 1px;
}
&.-active + &,
&:hover + & {
border-top-width: 0;
}
&:hover + .menu-item-collapsible:not(.-expanded) + &,
&.-active + .menu-item-collapsible:not(.-expanded) + & {
border-top-width: 0;
}
&[aria-expanded="true"] {
border-bottom-width: 1px;
}
2024-02-28 00:23:43 +01:00
a,
2024-02-29 16:49:56 +01:00
button:not(.button-default) {
2024-02-28 00:23:43 +01:00
text-align: initial;
padding: 0;
background: none;
border: none;
outline: none;
display: inline;
font-size: 100%;
font-family: inherit;
line-height: unset;
color: var(--text);
}
2024-02-13 01:09:43 +01:00
&:first-child {
border-top-right-radius: var(--roundness);
border-top-left-radius: var(--roundness);
2024-02-29 16:49:56 +01:00
border-top-width: 0;
2024-02-13 01:09:43 +01:00
}
&:last-child {
border-bottom-right-radius: var(--roundness);
border-bottom-left-radius: var(--roundness);
2024-02-29 16:49:56 +01:00
border-bottom-width: 0;
2024-02-13 01:09:43 +01:00
}
}
.button-unstyled {
border: none;
outline: none;
display: inline;
text-align: initial;
font-size: 100%;
font-family: inherit;
box-shadow: var(--shadow);
2024-04-03 20:10:27 +02:00
background-color: transparent;
padding: 0;
line-height: unset;
cursor: pointer;
2020-11-24 13:52:01 +01:00
box-sizing: content-box;
color: inherit;
&.-link {
2024-02-22 17:04:28 +01:00
/* stylelint-disable-next-line declaration-no-important */
color: var(--link) !important;
}
}
input,
textarea {
border: none;
display: inline-block;
outline: none;
}
.input {
&.unstyled {
border-radius: 0;
2024-02-29 18:06:50 +01:00
/* stylelint-disable-next-line declaration-no-important */
background: none !important;
box-shadow: none;
height: unset;
}
--_padding: 0.5em;
2022-04-25 23:07:51 +02:00
border: none;
2024-02-13 01:09:43 +01:00
border-radius: var(--roundness);
2024-04-03 20:10:27 +02:00
background-color: var(--background);
color: var(--text);
box-shadow: var(--shadow);
2024-02-22 17:04:28 +01:00
font-family: var(--font);
2022-04-10 21:09:46 +02:00
font-size: 1em;
2019-06-17 19:48:54 +02:00
margin: 0;
box-sizing: border-box;
display: inline-block;
position: relative;
line-height: 2;
2018-08-30 17:23:43 +02:00
hyphens: none;
padding: 0 var(--_padding);
&:disabled,
2023-01-09 19:02:16 +01:00
&[disabled="disabled"],
&.disabled {
cursor: not-allowed;
}
2023-01-09 19:02:16 +01:00
&[type="range"] {
2018-11-20 20:14:49 +01:00
background: none;
border: none;
margin: 0;
box-shadow: none;
flex: 1;
}
2023-01-09 19:02:16 +01:00
&[type="radio"] {
2019-06-18 22:28:31 +02:00
display: none;
2019-06-18 22:28:31 +02:00
&:checked + label::before {
2024-02-22 17:04:28 +01:00
box-shadow: var(--shadow);
background-color: var(--background);
2024-02-29 18:06:50 +01:00
color: var(--text);
2019-06-18 22:28:31 +02:00
}
2019-06-18 22:28:31 +02:00
&:disabled {
&,
& + label,
& + label::before {
opacity: 0.5;
2019-06-18 22:28:31 +02:00
}
}
2019-06-18 22:28:31 +02:00
+ label::before {
2019-06-20 15:00:10 +02:00
flex-shrink: 0;
2019-06-18 22:28:31 +02:00
display: inline-block;
2024-02-29 18:06:50 +01:00
content: "";
2019-06-18 22:28:31 +02:00
transition: box-shadow 200ms;
width: 1.1em;
height: 1.1em;
border-radius: 100%; // Radio buttons should always be circle
background-color: var(--background);
box-shadow: var(--shadow);
margin-right: 0.5em;
2019-06-18 22:28:31 +02:00
vertical-align: top;
text-align: center;
line-height: 1.1;
2019-06-18 22:28:31 +02:00
font-size: 1.1em;
box-sizing: border-box;
color: transparent;
overflow: hidden;
}
}
2023-01-09 19:02:16 +01:00
&[type="checkbox"] {
&:checked + label::before {
color: var(--text);
background-color: var(--background);
box-shadow: var(--shadow);
}
&:disabled {
&,
& + label,
& + label::before {
opacity: 0.5;
}
}
+ label::before {
2019-06-20 15:00:10 +02:00
flex-shrink: 0;
display: inline-block;
2023-01-09 19:02:16 +01:00
content: "";
transition: color 200ms;
width: 1.1em;
height: 1.1em;
2024-02-13 01:09:43 +01:00
border-radius: var(--roundness);
2024-02-22 17:04:28 +01:00
box-shadow: var(--shadow);
margin-right: 0.5em;
vertical-align: top;
text-align: center;
line-height: 1.1;
font-size: 1.1em;
box-sizing: border-box;
color: transparent;
overflow: hidden;
}
}
2020-12-15 19:17:50 +01:00
&.resize-height {
resize: vertical;
}
}
// Textareas should have stock line-height + vertical padding instead of huge line-height
textarea.input {
padding: var(--_padding);
line-height: var(--post-line-height);
}
option {
2024-02-11 22:11:28 +01:00
color: var(--text);
2024-02-22 17:04:28 +01:00
background-color: var(--background);
}
2019-06-18 22:28:31 +02:00
.hide-number-spinner {
2023-01-09 19:02:16 +01:00
appearance: textfield;
2023-01-09 19:02:16 +01:00
&[type="number"]::-webkit-inner-spin-button,
&[type="number"]::-webkit-outer-spin-button {
2019-06-18 22:28:31 +02:00
opacity: 0;
display: none;
}
}
.cards-list {
list-style: none;
display: grid;
grid-auto-flow: row dense;
grid-template-columns: 1fr 1fr;
li {
border: 1px solid var(--border);
2024-02-13 01:09:43 +01:00
border-radius: var(--roundness);
padding: 0.5em;
margin: 0.25em;
}
}
2019-04-26 09:33:25 +02:00
.btn-block {
display: block;
width: 100%;
}
.btn-group {
position: relative;
display: inline-flex;
vertical-align: middle;
button,
.button-dropdown {
2019-04-26 09:33:25 +02:00
position: relative;
flex: 1 1 auto;
&:not(:last-child),
&:not(:last-child) .button-default {
2019-04-26 09:33:25 +02:00
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
&:not(:first-child),
&:not(:first-child) .button-default {
2019-04-26 09:33:25 +02:00
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
}
2016-10-26 19:03:55 +02:00
.fa {
color: grey;
2016-10-26 19:03:55 +02:00
}
2017-01-17 17:27:39 +01:00
.mobile-shown {
display: none;
2017-01-17 17:27:39 +01:00
}
2018-11-26 01:19:04 +01:00
.badge {
box-sizing: border-box;
2018-11-26 01:19:04 +01:00
display: inline-block;
border-radius: 99px;
max-width: 10em;
min-width: 1.7em;
height: 1.3em;
2023-01-09 19:02:16 +01:00
padding: 0.15em;
2018-11-26 01:19:04 +01:00
vertical-align: middle;
font-weight: normal;
font-style: normal;
font-size: 0.9em;
line-height: 1;
text-align: center;
2018-11-26 01:19:04 +01:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2018-11-26 01:19:04 +01:00
2024-02-26 23:16:22 +01:00
&.-dot,
&.-counter {
margin: 0;
position: absolute;
}
2024-02-15 23:29:16 +01:00
&.-dot {
min-height: 8px;
max-height: 8px;
min-width: 8px;
max-width: 8px;
padding: 0;
line-height: 0;
font-size: 0;
left: calc(50% - 4px);
top: calc(50% - 4px);
margin-left: 6px;
margin-top: -6px;
2018-11-26 01:19:04 +01:00
}
2024-02-26 23:16:22 +01:00
&.-counter {
border-radius: var(--roundness);
font-size: 0.75em;
line-height: 1;
text-align: right;
padding: 0.2em;
min-width: 0;
left: calc(50% - 0.5em);
top: calc(50% - 0.4em);
margin-left: 0.7em;
margin-top: -1em;
}
2018-11-26 01:19:04 +01:00
}
.alert {
margin: 0 0.35em;
padding: 0 0.25em;
2024-02-13 01:09:43 +01:00
border-radius: var(--roundness);
2024-02-15 23:29:16 +01:00
border: 1px solid var(--border);
}
.faint {
2024-01-31 16:39:51 +01:00
--text: var(--textFaint);
--link: var(--linkFaint);
2024-01-31 16:39:51 +01:00
color: var(--text);
}
.visibility-notice {
padding: 0.5em;
2024-02-22 17:04:28 +01:00
border: 1px solid var(--textFaint);
2024-02-13 01:09:43 +01:00
border-radius: var(--roundness);
}
2018-12-18 19:26:14 +01:00
.notice-dismissible {
padding-right: 4rem;
position: relative;
.dismiss {
position: absolute;
top: 0;
right: 0;
padding: 0.5em;
color: inherit;
}
}
.fa-scale-110 {
2022-08-11 20:00:27 +02:00
&.svg-inline--fa,
&.iconLetter {
font-size: 1.1em;
}
2024-02-28 00:23:43 +01:00
&.svg-inline--fa {
vertical-align: -0.15em;
}
}
.fa-old-padding {
&.iconLetter,
2023-01-09 19:02:16 +01:00
&.svg-inline--fa,
&-layer {
padding: 0 0.3em;
}
}
.veryfaint {
opacity: 0.25;
}
2024-01-31 16:39:51 +01:00
.timeago {
--link: var(--text);
--linkFaint: var(--textFaint);
}
.login-hint {
text-align: center;
@media all and (min-width: 801px) {
display: none;
}
a {
display: inline-block;
padding: 1em 0;
width: 100%;
}
}
.btn.button-default {
2022-04-10 21:09:46 +02:00
min-height: 2em;
}
.new-status-notification {
position: relative;
font-size: 1.1em;
z-index: 1;
flex: 1;
}
2019-01-26 16:45:03 +01:00
@media all and (max-width: 800px) {
2018-12-18 19:26:14 +01:00
.mobile-hidden {
display: none;
}
}
2019-02-06 11:01:32 +01:00
2019-12-03 17:16:38 +01:00
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
2019-12-12 04:33:40 +01:00
@keyframes shakeError {
0% {
transform: translateX(0);
}
2020-05-07 15:10:53 +02:00
15% {
transform: translateX(0.375rem);
}
30% {
transform: translateX(-0.375rem);
}
45% {
transform: translateX(0.375rem);
}
60% {
transform: translateX(-0.375rem);
}
75% {
transform: translateX(0.375rem);
}
90% {
transform: translateX(-0.375rem);
}
100% {
transform: translateX(0);
}
}
2022-04-05 16:15:30 +02:00
// Vue transitions
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s;
2022-04-05 16:15:30 +02:00
}
.fade-enter-from,
.fade-leave-active {
opacity: 0;
}
2023-01-09 19:02:16 +01:00
/* stylelint-enable no-descending-specificity */
.visible-for-screenreader-only {
display: block;
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
visibility: visible;
clip: rect(0 0 0 0);
padding: 0;
position: absolute;
}
2024-03-04 18:53:45 +01:00
*::selection {
color: var(--selectionText);
background-color: var(--selectionBackground);
}