2021-05-29 14:08:28 +02:00
|
|
|
@use "sass:math";
|
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
@import "reset";
|
|
|
|
@import "variables";
|
|
|
|
@import "mixins";
|
2019-04-07 10:57:48 +02:00
|
|
|
@import "spacing";
|
2015-07-12 21:01:42 +02:00
|
|
|
@import "html";
|
|
|
|
@import "text";
|
2018-10-16 19:49:16 +02:00
|
|
|
@import "colors";
|
2019-04-07 10:57:48 +02:00
|
|
|
@import "layout";
|
2015-07-12 21:01:42 +02:00
|
|
|
@import "blocks";
|
|
|
|
@import "buttons";
|
2015-08-08 21:05:30 +02:00
|
|
|
@import "tables";
|
2017-04-15 16:04:30 +02:00
|
|
|
@import "forms";
|
2015-08-16 01:18:22 +02:00
|
|
|
@import "animations";
|
2015-07-15 23:55:49 +02:00
|
|
|
@import "tinymce";
|
2017-05-28 14:16:21 +02:00
|
|
|
@import "codemirror";
|
2016-08-30 21:05:59 +02:00
|
|
|
@import "components";
|
2015-09-03 17:51:10 +02:00
|
|
|
@import "header";
|
2020-03-19 04:28:06 +01:00
|
|
|
@import "footer";
|
2015-09-03 17:51:10 +02:00
|
|
|
@import "lists";
|
|
|
|
@import "pages";
|
2015-07-21 21:13:29 +02:00
|
|
|
|
|
|
|
// Jquery Sortable Styles
|
|
|
|
.dragged {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0.5;
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
body.dragging, body.dragging * {
|
|
|
|
cursor: move !important;
|
|
|
|
}
|
|
|
|
|
2015-09-03 17:51:10 +02:00
|
|
|
// User Avatar Images
|
2015-08-23 14:41:35 +02:00
|
|
|
.avatar {
|
|
|
|
border-radius: 100%;
|
2020-04-11 16:48:08 +02:00
|
|
|
@include lightDark(background-color, #eee, #000);
|
2015-12-15 20:27:36 +01:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
2015-10-18 17:06:06 +02:00
|
|
|
&.med {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
2015-12-09 23:30:55 +01:00
|
|
|
&.large {
|
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
}
|
2016-02-17 23:11:48 +01:00
|
|
|
&.huge {
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
}
|
|
|
|
&.square {
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
2020-04-11 21:02:07 +02:00
|
|
|
&[src$="user_avatar.png"] {
|
|
|
|
@include whenDark {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
2015-08-29 17:00:19 +02:00
|
|
|
}
|
|
|
|
|
2015-09-03 20:05:45 +02:00
|
|
|
// Loading icon
|
|
|
|
$loadingSize: 10px;
|
|
|
|
.loading-container {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
margin: $-xl auto;
|
|
|
|
> div {
|
|
|
|
width: $loadingSize;
|
|
|
|
height: $loadingSize;
|
|
|
|
border-radius: $loadingSize;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-09-09 18:06:30 +02:00
|
|
|
transform: translate3d(-10px, 0, 0);
|
|
|
|
margin-top: $-xs;
|
2015-09-03 20:05:45 +02:00
|
|
|
animation-name: loadingBob;
|
|
|
|
animation-duration: 1.4s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: cubic-bezier(.62, .28, .23, .99);
|
2020-04-05 14:07:19 +02:00
|
|
|
margin-inline-end: 4px;
|
2019-08-26 15:37:53 +02:00
|
|
|
background-color: var(--color-page);
|
2022-05-14 14:31:24 +02:00
|
|
|
animation-delay: -300ms;
|
2015-09-03 20:05:45 +02:00
|
|
|
}
|
|
|
|
> div:first-child {
|
|
|
|
left: -($loadingSize+$-xs);
|
2019-08-26 15:37:53 +02:00
|
|
|
background-color: var(--color-book);
|
2022-05-14 14:31:24 +02:00
|
|
|
animation-delay: -600ms;
|
2015-09-03 20:05:45 +02:00
|
|
|
}
|
2017-09-09 18:06:30 +02:00
|
|
|
> div:last-of-type {
|
2015-09-03 20:05:45 +02:00
|
|
|
left: $loadingSize+$-xs;
|
2019-08-26 15:37:53 +02:00
|
|
|
background-color: var(--color-chapter);
|
2022-05-14 14:31:24 +02:00
|
|
|
animation-delay: 0ms;
|
2015-09-03 20:05:45 +02:00
|
|
|
}
|
2017-09-09 18:06:30 +02:00
|
|
|
> span {
|
2020-04-05 14:07:19 +02:00
|
|
|
margin-inline-start: $-s;
|
2017-09-09 18:06:30 +02:00
|
|
|
font-style: italic;
|
|
|
|
color: #888;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2015-09-03 20:05:45 +02:00
|
|
|
}
|
|
|
|
|
2016-02-08 21:42:41 +01:00
|
|
|
// Back to top link
|
|
|
|
$btt-size: 40px;
|
2017-08-06 22:08:03 +02:00
|
|
|
[back-to-top] {
|
2019-08-25 13:40:04 +02:00
|
|
|
background-color: var(--color-primary);
|
2016-02-08 21:42:41 +01:00
|
|
|
position: fixed;
|
|
|
|
bottom: $-m;
|
2016-02-11 23:23:19 +01:00
|
|
|
right: $-l;
|
2018-02-17 20:49:00 +01:00
|
|
|
padding: 5px 7px;
|
2016-02-08 21:42:41 +01:00
|
|
|
cursor: pointer;
|
|
|
|
color: #FFF;
|
2018-02-17 20:49:00 +01:00
|
|
|
fill: #FFF;
|
|
|
|
svg {
|
2021-05-29 14:08:28 +02:00
|
|
|
width: math.div($btt-size, 1.5);
|
|
|
|
height: math.div($btt-size, 1.5);
|
2020-04-05 14:07:19 +02:00
|
|
|
margin-inline-end: 4px;
|
2018-02-17 20:49:00 +01:00
|
|
|
}
|
2016-02-08 21:42:41 +01:00
|
|
|
width: $btt-size;
|
|
|
|
height: $btt-size;
|
|
|
|
border-radius: $btt-size;
|
|
|
|
transition: all ease-in-out 180ms;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 999;
|
2016-02-11 23:23:19 +01:00
|
|
|
overflow: hidden;
|
2016-02-08 21:42:41 +01:00
|
|
|
&:hover {
|
|
|
|
width: $btt-size*3.4;
|
2016-03-06 11:52:10 +01:00
|
|
|
opacity: 1 !important;
|
2016-02-08 21:42:41 +01:00
|
|
|
}
|
|
|
|
.inner {
|
|
|
|
width: $btt-size*3.4;
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
position: relative;
|
2018-02-17 20:49:00 +01:00
|
|
|
vertical-align: top;
|
|
|
|
line-height: 2;
|
2016-02-08 21:42:41 +01:00
|
|
|
}
|
2016-04-03 15:59:54 +02:00
|
|
|
}
|
|
|
|
|
2021-06-15 21:58:45 +02:00
|
|
|
.skip-to-content-link {
|
|
|
|
position: fixed;
|
2022-05-14 14:59:10 +02:00
|
|
|
top: -52px;
|
2021-06-15 21:58:45 +02:00
|
|
|
left: 0;
|
|
|
|
background-color: #FFF;
|
|
|
|
z-index: 15;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
display: block;
|
|
|
|
box-shadow: $bs-dark;
|
|
|
|
font-weight: bold;
|
|
|
|
&:focus {
|
|
|
|
top: $-xl;
|
|
|
|
outline-offset: -10px;
|
|
|
|
outline: 2px dotted var(--color-primary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 15:59:54 +02:00
|
|
|
.contained-search-box {
|
|
|
|
display: flex;
|
2020-07-25 01:20:58 +02:00
|
|
|
height: 38px;
|
2016-04-03 15:59:54 +02:00
|
|
|
input, button {
|
|
|
|
border-radius: 0;
|
2020-07-25 01:20:58 +02:00
|
|
|
border: 1px solid #ddd;
|
2020-04-11 16:48:08 +02:00
|
|
|
@include lightDark(border-color, #ddd, #000);
|
2020-04-05 14:07:19 +02:00
|
|
|
margin-inline-start: -1px;
|
2016-04-03 15:59:54 +02:00
|
|
|
}
|
|
|
|
input {
|
|
|
|
flex: 5;
|
2018-05-13 13:07:38 +02:00
|
|
|
padding: $-xs $-s;
|
2016-04-03 15:59:54 +02:00
|
|
|
&:focus, &:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
button i {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
button.cancel.active {
|
|
|
|
background-color: $negative;
|
|
|
|
color: #EEE;
|
|
|
|
}
|
2020-07-25 01:20:58 +02:00
|
|
|
svg {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2016-05-13 00:12:05 +02:00
|
|
|
}
|
2016-06-12 13:14:14 +02:00
|
|
|
|
|
|
|
.entity-selector {
|
|
|
|
border: 1px solid #DDD;
|
2020-04-10 23:38:29 +02:00
|
|
|
@include lightDark(border-color, #ddd, #111);
|
2016-06-12 13:14:14 +02:00
|
|
|
border-radius: 3px;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 0.8em;
|
|
|
|
input[type="text"] {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
border-radius: 0;
|
|
|
|
border: 0;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: $-s $-m;
|
|
|
|
}
|
|
|
|
.entity-list {
|
|
|
|
overflow-y: scroll;
|
|
|
|
height: 400px;
|
2020-04-10 23:38:29 +02:00
|
|
|
@include lightDark(background-color, #eee, #222);
|
2020-04-05 14:07:19 +02:00
|
|
|
margin-inline-end: 0;
|
|
|
|
margin-inline-start: 0;
|
2019-03-30 17:54:15 +01:00
|
|
|
}
|
|
|
|
.entity-list-item {
|
2020-04-10 23:38:29 +02:00
|
|
|
@include lightDark(background-color, #fff, #222);
|
2019-03-30 17:54:15 +01:00
|
|
|
}
|
|
|
|
.entity-list-item p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-02-12 23:10:37 +01:00
|
|
|
.entity-list-item:focus {
|
|
|
|
outline: 2px dotted var(--color-primary);
|
|
|
|
outline-offset: -4px;
|
|
|
|
}
|
2019-03-30 17:54:15 +01:00
|
|
|
.entity-list-item.selected {
|
2021-02-12 23:10:37 +01:00
|
|
|
@include lightDark(background-color, rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.05));
|
2016-06-12 13:14:14 +02:00
|
|
|
}
|
|
|
|
.loading {
|
|
|
|
height: 400px;
|
|
|
|
padding-top: $-l;
|
|
|
|
}
|
2019-04-06 17:56:50 +02:00
|
|
|
.entity-selector-add button {
|
|
|
|
margin: 0;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid #DDD;
|
|
|
|
}
|
2018-08-27 15:18:09 +02:00
|
|
|
&.compact {
|
|
|
|
font-size: 10px;
|
|
|
|
.entity-item-snippet {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2016-06-12 13:14:14 +02:00
|
|
|
}
|
|
|
|
|
2018-08-27 15:18:09 +02:00
|
|
|
.scroll-box {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
border-radius: 3px;
|
|
|
|
.scroll-box-item {
|
|
|
|
padding: $-xs $-m;
|
|
|
|
border-bottom: 1px solid #DDD;
|
2019-06-06 12:49:51 +02:00
|
|
|
border-top: 1px solid #DDD;
|
|
|
|
margin-top: -1px;
|
2018-08-27 15:18:09 +02:00
|
|
|
&:last-child {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 12:49:51 +02:00
|
|
|
.scroll-box[data-instruction]:before {
|
|
|
|
content: attr(data-instruction);
|
|
|
|
padding: $-xs $-m;
|
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
display: block;
|
|
|
|
font-size: 0.75rem;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
2017-12-24 15:28:35 +01:00
|
|
|
.fullscreen {
|
|
|
|
border:0;
|
|
|
|
position:fixed;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
|
|
|
bottom:0;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
z-index: 150;
|
2018-09-11 20:42:25 +02:00
|
|
|
}
|
2018-12-01 22:28:21 +01:00
|
|
|
|
|
|
|
.list-sort-container {
|
|
|
|
display: inline-block;
|
2018-12-07 19:33:32 +01:00
|
|
|
form {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-12-01 22:28:21 +01:00
|
|
|
.list-sort {
|
|
|
|
display: inline-grid;
|
2020-04-05 14:07:19 +02:00
|
|
|
margin-inline-start: $-s;
|
2019-10-07 22:06:15 +02:00
|
|
|
grid-template-columns: minmax(120px, max-content) 40px;
|
|
|
|
font-size: 0.9rem;
|
2018-12-01 22:28:21 +01:00
|
|
|
border: 2px solid #DDD;
|
2020-04-11 16:48:08 +02:00
|
|
|
@include lightDark(border-color, #ddd, #444);
|
2018-12-01 22:28:21 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.list-sort-label {
|
|
|
|
font-weight: bold;
|
|
|
|
display: inline-block;
|
2020-04-11 16:48:08 +02:00
|
|
|
@include lightDark(color, #555, #888);
|
2018-12-01 22:28:21 +01:00
|
|
|
}
|
|
|
|
.list-sort-type {
|
2020-04-05 14:07:19 +02:00
|
|
|
text-align: start;
|
2018-12-01 22:28:21 +01:00
|
|
|
}
|
|
|
|
.list-sort-type, .list-sort-dir {
|
|
|
|
padding: $-xs $-s;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.list-sort-dir {
|
2020-04-05 14:07:19 +02:00
|
|
|
border-inline-start: 2px solid #DDD;
|
2020-04-11 16:48:08 +02:00
|
|
|
color: #888;
|
|
|
|
@include lightDark(border-color, #ddd, #444);
|
2018-12-01 22:28:21 +01:00
|
|
|
.svg-icon {
|
|
|
|
transition: transform ease-in-out 120ms;
|
|
|
|
}
|
|
|
|
&:hover .svg-icon {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
}
|
2020-09-19 13:06:45 +02:00
|
|
|
}
|
|
|
|
|
2020-10-03 19:44:12 +02:00
|
|
|
table.table .table-user-item {
|
2020-09-19 13:06:45 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 42px 1fr;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2020-10-03 19:44:12 +02:00
|
|
|
table.table .table-entity-item {
|
2020-09-19 13:06:45 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 36px 1fr;
|
|
|
|
align-items: center;
|
2018-12-01 22:28:21 +01:00
|
|
|
}
|