2020-05-05 20:27:37 +00:00
|
|
|
#loading_overlay {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
flex-direction: column;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
display: none;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading_overlay.active {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading_text {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2020-05-03 20:08:59 +00:00
|
|
|
#main_content {
|
|
|
|
margin-left: 48px;
|
|
|
|
width: calc(100% - 48px);
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2020-04-14 20:05:22 +00:00
|
|
|
img.rounded {
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.circle {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.coverart {
|
|
|
|
background-color: var(--secondary-background);
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover_container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover_container .coverart {
|
|
|
|
opacity: 1;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2020-04-29 19:46:10 +00:00
|
|
|
transition: 0.5s ease;
|
2020-04-14 20:05:22 +00:00
|
|
|
backface-visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover_container .download_overlay {
|
2020-04-29 19:46:10 +00:00
|
|
|
transition: 0.5s ease;
|
2020-04-14 20:05:22 +00:00
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
-ms-transform: translate(-50%, -50%);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover_container .download_overlay i {
|
|
|
|
background-color: #000000;
|
|
|
|
color: white;
|
|
|
|
border-radius: 50%;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover_container:hover .coverart {
|
2020-04-29 19:46:10 +00:00
|
|
|
opacity: 0.75;
|
2020-04-14 20:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cover_container:hover .download_overlay {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2020-05-10 11:19:12 +00:00
|
|
|
i.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2020-04-14 20:05:22 +00:00
|
|
|
span.tag {
|
|
|
|
background-color: var(--tag-background);
|
|
|
|
border-radius: 2px;
|
|
|
|
color: var(--tag-text);
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 10px;
|
|
|
|
padding: 3px 6px;
|
|
|
|
}
|
|
|
|
|
2020-04-18 08:08:34 +00:00
|
|
|
table {
|
2020-04-14 20:05:22 +00:00
|
|
|
width: 100%;
|
|
|
|
-webkit-border-horizontal-spacing: 0px;
|
|
|
|
-webkit-border-vertical-spacing: 0px;
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:46:10 +00:00
|
|
|
table td,
|
|
|
|
table th {
|
2020-04-14 20:05:22 +00:00
|
|
|
padding: 4px 12px 4px 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
border: 0px black solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
td img {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2020-04-18 08:08:34 +00:00
|
|
|
table tr:nth-child(even) {
|
2020-04-14 20:05:22 +00:00
|
|
|
background-color: var(--secondary-background);
|
|
|
|
border: 0px black solid;
|
|
|
|
}
|
2020-04-29 19:46:10 +00:00
|
|
|
th {
|
2020-04-18 08:08:34 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
2020-04-14 20:05:22 +00:00
|
|
|
|
|
|
|
p,
|
|
|
|
.tracks_table td.breakline {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2020-05-11 21:32:29 +00:00
|
|
|
a {
|
|
|
|
color: dodgerblue;
|
|
|
|
}
|
|
|
|
|
2020-04-14 20:05:22 +00:00
|
|
|
.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toastify {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(0, 0, 0, 0.3);
|
|
|
|
background: var(--toast-background);
|
|
|
|
color: var(--toast-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.inline-flex {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2020-04-29 19:46:10 +00:00
|
|
|
.inline-flex .right {
|
2020-04-18 08:08:34 +00:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2020-04-14 20:05:22 +00:00
|
|
|
|
|
|
|
button {
|
|
|
|
font-family: inherit;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 14px;
|
|
|
|
padding: 0px 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
height: 36px;
|
|
|
|
background-color: var(--accent-color);
|
|
|
|
border: 0px solid black;
|
|
|
|
border-radius: 4px;
|
|
|
|
min-width: 64px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: var(--accent-text);
|
2020-04-16 14:21:05 +00:00
|
|
|
cursor: pointer;
|
2020-04-14 20:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button[disabled] {
|
|
|
|
background-color: var(--secondary-background);
|
|
|
|
color: var(--main-text);
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
2020-04-17 19:04:51 +00:00
|
|
|
button.selective {
|
|
|
|
background-color: var(--main-background);
|
|
|
|
color: var(--main-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
button.selective.active {
|
|
|
|
background-color: var(--accent-color);
|
|
|
|
color: var(--accent-text);
|
|
|
|
}
|
|
|
|
|
2020-04-21 10:27:19 +00:00
|
|
|
button.with_icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.with_icon i {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:46:10 +00:00
|
|
|
input[type='text'],
|
|
|
|
input[type='password'],
|
|
|
|
input[type='number'] {
|
2020-04-14 20:05:22 +00:00
|
|
|
width: calc(100% - 16px);
|
|
|
|
border: 0px solid black;
|
|
|
|
line-height: 36px;
|
|
|
|
padding: 0px 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: var(--secondary-background);
|
|
|
|
color: var(--primary-text);
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:46:10 +00:00
|
|
|
select {
|
2020-04-20 17:03:39 +00:00
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 100%;
|
|
|
|
border: 0px solid black;
|
|
|
|
line-height: 36px;
|
|
|
|
padding: 0px 40px 0px 8px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: var(--secondary-background);
|
|
|
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath style='fill%3A%23000000%3Bfill-opacity%3A0.25' d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 24px;
|
|
|
|
background-position: calc(100% - 8px) center;
|
|
|
|
background-clip: border-box;
|
|
|
|
color: var(--primary-text);
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='checkbox'] {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
background-color: none;
|
|
|
|
border: 2px solid black;
|
2020-04-29 19:46:10 +00:00
|
|
|
opacity: 0.5;
|
2020-04-20 17:03:39 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 7px;
|
|
|
|
margin: 3px;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='checkbox']:checked {
|
|
|
|
opacity: 1;
|
|
|
|
background-color: var(--accent-color);
|
|
|
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='18' viewBox='3 3 18 18' width='18'%3E%3Cpath fill='%23ffffff' d='M 10,17 5,12 6.41,10.59 10,14.17 17.59,6.58 19,8 Z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
|
|
|
|
background-position: center center;
|
|
|
|
border: 0px solid var(--accent-color);
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 9px;
|
|
|
|
margin: 3px;
|
|
|
|
color: var(--accent-text);
|
|
|
|
}
|
|
|
|
|
2020-04-14 20:05:22 +00:00
|
|
|
.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed_footer footer {
|
|
|
|
position: sticky;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
background-color: var(--main-background);
|
|
|
|
bottom: 0px;
|
|
|
|
height: 64px;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 24px;
|
2020-04-17 19:04:51 +00:00
|
|
|
}
|
2020-04-18 08:08:34 +00:00
|
|
|
.tab {
|
|
|
|
margin: 16px 0px;
|
|
|
|
}
|
2020-04-29 19:46:10 +00:00
|
|
|
th.sortable {
|
2020-04-18 08:08:34 +00:00
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2020-04-29 19:46:10 +00:00
|
|
|
th.sort-asc:after {
|
|
|
|
content: '\25b2';
|
|
|
|
font-size: 0.7em;
|
|
|
|
padding-left: 3px;
|
|
|
|
line-height: 0.7em;
|
|
|
|
}
|
|
|
|
th.sort-desc:after {
|
|
|
|
content: '\25bc';
|
|
|
|
font-size: 0.7em;
|
|
|
|
padding-left: 3px;
|
|
|
|
line-height: 0.7em;
|
|
|
|
}
|
|
|
|
.fab {
|
2020-04-18 08:08:34 +00:00
|
|
|
width: 56px;
|
|
|
|
height: 56px;
|
|
|
|
border-radius: 28px;
|
|
|
|
display: inline-block;
|
|
|
|
background-color: var(--accent-color);
|
|
|
|
color: var(--accent-text);
|
2020-04-21 10:27:19 +00:00
|
|
|
cursor: pointer;
|
2020-04-18 08:08:34 +00:00
|
|
|
}
|
2020-04-29 19:46:10 +00:00
|
|
|
.fab i {
|
2020-04-18 08:08:34 +00:00
|
|
|
font-size: 24px;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
2020-05-03 20:08:59 +00:00
|
|
|
|
|
|
|
.with_checkbox {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.with_checkbox [type='checkbox'] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.with_checkbox .checkbox_text {
|
|
|
|
margin-left: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.with_checkbox .checkbox_text::selection {
|
|
|
|
background: none;
|
|
|
|
}
|
2020-05-09 12:45:28 +00:00
|
|
|
|
|
|
|
.hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|