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