2017-08-06 16:08:03 -04:00
|
|
|
// System wide notifications
|
|
|
|
[notification] {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2019-05-05 19:15:03 -04:00
|
|
|
margin: $-xl;
|
2018-07-29 10:34:54 -04:00
|
|
|
padding: $-m $-l;
|
2019-05-05 19:15:03 -04:00
|
|
|
background-color: #FFF;
|
|
|
|
border-radius: 4px;
|
2020-04-05 08:07:19 -04:00
|
|
|
border-inline-start: 6px solid currentColor;
|
2019-05-05 19:15:03 -04:00
|
|
|
box-shadow: $bs-large;
|
2017-08-06 16:08:03 -04:00
|
|
|
z-index: 999999;
|
|
|
|
cursor: pointer;
|
2018-03-18 07:58:45 -04:00
|
|
|
max-width: 360px;
|
|
|
|
transition: transform ease-in-out 280ms;
|
2018-07-29 10:34:54 -04:00
|
|
|
transform: translateX(580px);
|
2018-02-17 14:49:00 -05:00
|
|
|
display: grid;
|
2020-01-14 14:50:29 -05:00
|
|
|
grid-template-columns: 42px 1fr 12px;
|
2019-05-05 19:15:03 -04:00
|
|
|
color: #444;
|
|
|
|
font-weight: 700;
|
2018-02-17 14:49:00 -05:00
|
|
|
span, svg {
|
|
|
|
vertical-align: middle;
|
|
|
|
justify-self: center;
|
|
|
|
align-self: center;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
2018-02-17 14:49:00 -05:00
|
|
|
svg {
|
2018-07-29 10:34:54 -04:00
|
|
|
width: 2.8rem;
|
|
|
|
height: 2.8rem;
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-end: $-s;
|
2019-05-05 19:15:03 -04:00
|
|
|
fill: currentColor;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
2020-01-14 14:50:29 -05:00
|
|
|
.dismiss {
|
|
|
|
margin-top: -8px;
|
|
|
|
svg {
|
|
|
|
height: 1.0rem;
|
|
|
|
color: #444;
|
|
|
|
}
|
|
|
|
}
|
2017-08-06 16:08:03 -04:00
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
2018-03-18 07:58:45 -04:00
|
|
|
line-height: 1.3;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
|
|
|
&.pos {
|
2019-05-05 19:15:03 -04:00
|
|
|
color: $positive;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
|
|
|
&.neg {
|
2019-05-05 19:15:03 -04:00
|
|
|
color: $negative;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
|
|
|
&.warning {
|
2019-05-05 19:15:03 -04:00
|
|
|
color: $warning;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
|
|
|
&.showing {
|
2018-07-29 10:34:54 -04:00
|
|
|
transform: translateX(0);
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
2018-03-18 07:58:45 -04:00
|
|
|
&.showing:hover {
|
|
|
|
transform: translate3d(0, -2px, 0);
|
|
|
|
}
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
[chapter-toggle] {
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0;
|
|
|
|
transition: all ease-in-out 180ms;
|
|
|
|
user-select: none;
|
2018-02-17 14:49:00 -05:00
|
|
|
svg[data-icon="caret-right"] {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: 0;
|
2019-03-30 11:15:01 -04:00
|
|
|
font-size: 1rem;
|
2017-08-06 16:08:03 -04:00
|
|
|
transition: all ease-in-out 180ms;
|
|
|
|
transform: rotate(0deg);
|
2019-03-30 11:15:01 -04:00
|
|
|
transform-origin: 50% 50%;
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
2018-02-17 14:49:00 -05:00
|
|
|
&.open svg[data-icon="caret-right"] {
|
2017-08-06 16:08:03 -04:00
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
2019-03-30 11:15:01 -04:00
|
|
|
svg[data-icon="caret-right"] + * {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: $-xs;
|
2019-03-30 11:15:01 -04:00
|
|
|
}
|
2017-08-06 16:08:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
[overlay] {
|
2016-08-30 15:05:59 -04:00
|
|
|
background-color: rgba(0, 0, 0, 0.333);
|
2015-09-03 11:51:10 -04:00
|
|
|
position: fixed;
|
|
|
|
z-index: 95536;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2016-08-30 15:05:59 -04:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
display: none;
|
2015-09-03 11:51:10 -04:00
|
|
|
}
|
|
|
|
|
2016-09-03 05:32:14 -04:00
|
|
|
.popup-body-wrap {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2016-08-30 15:05:59 -04:00
|
|
|
.popup-body {
|
2015-08-15 19:18:22 -04:00
|
|
|
background-color: #FFF;
|
2015-08-09 09:52:15 -04:00
|
|
|
max-height: 90%;
|
2019-12-27 12:14:34 -05:00
|
|
|
max-width: 1200px;
|
|
|
|
width: 90%;
|
2016-08-30 15:05:59 -04:00
|
|
|
height: auto;
|
2019-12-27 12:14:34 -05:00
|
|
|
margin: 2% auto;
|
2015-08-09 09:52:15 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
|
|
|
|
overflow: hidden;
|
2015-08-12 18:42:42 -04:00
|
|
|
z-index: 999;
|
|
|
|
display: flex;
|
2016-08-30 15:05:59 -04:00
|
|
|
flex-direction: column;
|
|
|
|
&.small {
|
|
|
|
margin: 2% auto;
|
|
|
|
width: 800px;
|
|
|
|
max-width: 90%;
|
|
|
|
}
|
|
|
|
&:before {
|
|
|
|
display: flex;
|
|
|
|
align-self: flex-start;
|
2015-08-13 15:28:11 -04:00
|
|
|
}
|
2018-01-05 15:11:06 -05:00
|
|
|
.popup-content {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2019-08-24 13:26:28 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
}
|
2015-12-30 14:57:17 -05:00
|
|
|
|
2019-04-07 06:34:40 -04:00
|
|
|
.popup-footer button, .popup-header-close {
|
2016-09-01 15:36:22 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
2019-04-07 06:34:40 -04:00
|
|
|
&:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.popup-header-close {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
color: #FFF;
|
|
|
|
font-size: 16px;
|
|
|
|
padding: 0 $-m;
|
2016-09-01 15:36:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.popup-header, .popup-footer {
|
2016-09-03 05:32:14 -04:00
|
|
|
display: block !important;
|
2015-08-12 18:42:42 -04:00
|
|
|
position: relative;
|
2016-08-30 15:05:59 -04:00
|
|
|
height: 40px;
|
2016-09-03 05:32:14 -04:00
|
|
|
flex: none !important;
|
2016-08-30 15:05:59 -04:00
|
|
|
.popup-title {
|
|
|
|
color: #FFF;
|
|
|
|
padding: 8px $-m;
|
|
|
|
}
|
2015-08-12 13:48:26 -04:00
|
|
|
}
|
2016-09-03 05:32:14 -04:00
|
|
|
body.flexbox-support #entity-selector-wrap .popup-body .form-group {
|
|
|
|
height: 444px;
|
|
|
|
min-height: 444px;
|
|
|
|
}
|
2016-09-01 15:36:22 -04:00
|
|
|
#entity-selector-wrap .popup-body .form-group {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-04-07 04:57:48 -04:00
|
|
|
.popup-body .entity-selector-container {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2016-09-03 05:32:14 -04:00
|
|
|
|
2016-08-30 15:05:59 -04:00
|
|
|
.image-manager-body {
|
2016-09-03 05:32:14 -04:00
|
|
|
min-height: 70vh;
|
2016-08-30 15:05:59 -04:00
|
|
|
}
|
|
|
|
|
2016-10-09 13:58:22 -04:00
|
|
|
.dropzone-container {
|
2016-08-30 15:05:59 -04:00
|
|
|
position: relative;
|
2018-05-13 07:07:38 -04:00
|
|
|
background-color: #EEE;
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23a9a9a9' fill-opacity='0.52' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
|
2015-08-09 09:52:15 -04:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:14:11 -05:00
|
|
|
.image-manager-list .image {
|
2015-08-15 19:18:22 -04:00
|
|
|
display: block;
|
2016-02-07 05:14:11 -05:00
|
|
|
position: relative;
|
2015-08-15 19:18:22 -04:00
|
|
|
border-radius: 0;
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
width: (100%/6);
|
|
|
|
height: auto;
|
2016-02-07 05:14:11 -05:00
|
|
|
border: 1px solid #DDD;
|
|
|
|
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
2015-12-30 14:57:17 -05:00
|
|
|
transition: all cubic-bezier(.4, 0, 1, 1) 160ms;
|
2016-02-07 05:14:11 -05:00
|
|
|
overflow: hidden;
|
2015-08-15 19:18:22 -04:00
|
|
|
&.selected {
|
2018-05-13 07:07:38 -04:00
|
|
|
//transform: scale3d(0.92, 0.92, 0.92);
|
|
|
|
border: 4px solid #FFF;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 8px;
|
2016-02-07 05:14:11 -05:00
|
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.image-meta {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
color: #EEE;
|
|
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
|
|
font-size: 10px;
|
|
|
|
padding: 3px 4px;
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include smaller-than($xl) {
|
|
|
|
width: (100%/4);
|
|
|
|
}
|
|
|
|
@include smaller-than($m) {
|
|
|
|
.image-meta {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-08-15 19:18:22 -04:00
|
|
|
}
|
|
|
|
}
|
2015-08-12 18:42:42 -04:00
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
#image-manager .load-more {
|
2015-08-12 13:48:26 -04:00
|
|
|
display: block;
|
2015-08-09 09:52:15 -04:00
|
|
|
text-align: center;
|
2015-08-15 19:18:22 -04:00
|
|
|
background-color: #EEE;
|
|
|
|
padding: $-s $-m;
|
|
|
|
color: #AAA;
|
|
|
|
clear: both;
|
2015-08-09 09:52:15 -04:00
|
|
|
font-size: 20px;
|
|
|
|
cursor: pointer;
|
2015-08-15 19:18:22 -04:00
|
|
|
font-style: italic;
|
2015-08-09 09:52:15 -04:00
|
|
|
}
|
2015-08-12 18:42:42 -04:00
|
|
|
|
|
|
|
.image-manager-sidebar {
|
|
|
|
width: 300px;
|
2016-08-30 15:05:59 -04:00
|
|
|
overflow-y: auto;
|
2018-03-18 09:14:11 -04:00
|
|
|
overflow-x: hidden;
|
2020-04-05 08:07:19 -04:00
|
|
|
border-inline-start: 1px solid #DDD;
|
2018-05-13 07:07:38 -04:00
|
|
|
.inner {
|
|
|
|
padding: $-m;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2018-05-19 13:44:40 -04:00
|
|
|
max-height: 180px;
|
2018-05-13 07:07:38 -04:00
|
|
|
display: block;
|
|
|
|
margin: 0 auto $-m auto;
|
2018-05-19 13:44:40 -04:00
|
|
|
box-shadow: 0 1px 21px 1px rgba(76, 76, 76, 0.3);
|
|
|
|
}
|
|
|
|
.image-manager-viewer {
|
|
|
|
height: 196px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-05-13 07:07:38 -04:00
|
|
|
}
|
2016-08-30 15:05:59 -04:00
|
|
|
.dropzone-container {
|
2018-05-13 07:07:38 -04:00
|
|
|
border-bottom: 1px solid #DDD;
|
2016-08-30 15:05:59 -04:00
|
|
|
}
|
2015-08-13 02:44:10 -04:00
|
|
|
}
|
2015-12-30 14:57:17 -05:00
|
|
|
|
2015-08-12 18:42:42 -04:00
|
|
|
.image-manager-list {
|
|
|
|
overflow-y: scroll;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-manager-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2016-04-03 09:59:54 -04:00
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.full-tab {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dropzone
|
|
|
|
/*
|
|
|
|
* The MIT License
|
|
|
|
* Copyright (c) 2012 Matias Meno <m@tias.me>
|
|
|
|
*/
|
2015-08-12 18:42:42 -04:00
|
|
|
.dz-message {
|
2018-05-13 07:07:38 -04:00
|
|
|
font-size: 1em;
|
|
|
|
line-height: 2.35;
|
2015-08-12 18:42:42 -04:00
|
|
|
font-style: italic;
|
2018-05-13 07:07:38 -04:00
|
|
|
color: #888;
|
2015-08-12 18:42:42 -04:00
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2016-08-30 15:05:59 -04:00
|
|
|
padding: $-l $-m;
|
2015-08-12 18:42:42 -04:00
|
|
|
transition: all ease-in-out 120ms;
|
|
|
|
}
|
2015-12-30 14:57:17 -05:00
|
|
|
|
2015-08-12 18:42:42 -04:00
|
|
|
.dz-drag-hover .dz-message {
|
|
|
|
background-color: rgb(16, 126, 210);
|
|
|
|
color: #EEE;
|
|
|
|
}
|
2015-12-30 14:57:17 -05:00
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
@keyframes passing-through {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: translateY(40px);
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
30%, 70% {
|
|
|
|
opacity: 1;
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: translateY(0px);
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
100% {
|
|
|
|
opacity: 0;
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: translateY(-40px);
|
|
|
|
}
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
|
|
|
|
@keyframes slide-in {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: translateY(40px);
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
30% {
|
|
|
|
opacity: 1;
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: translateY(0px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: scale(1);
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
10% {
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
20% {
|
2015-12-30 14:57:17 -05:00
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
2015-08-09 09:52:15 -04:00
|
|
|
|
2015-12-30 14:57:17 -05:00
|
|
|
.dropzone, .dropzone * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2015-08-12 18:42:42 -04:00
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2015-08-12 18:42:42 -04:00
|
|
|
margin: 12px;
|
2015-12-30 14:57:17 -05:00
|
|
|
min-height: 80px;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview:hover {
|
2015-12-30 14:57:17 -05:00
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview:hover .dz-details {
|
2015-12-30 14:57:17 -05:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-file-preview .dz-image {
|
|
|
|
border-radius: 4px;
|
2018-03-18 09:14:11 -04:00
|
|
|
background: #e9e9e9;
|
2015-12-30 14:57:17 -05:00
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-file-preview .dz-details {
|
2015-12-30 14:57:17 -05:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-image-preview {
|
2015-12-30 14:57:17 -05:00
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-image-preview .dz-details {
|
2015-12-30 14:57:17 -05:00
|
|
|
transition: opacity 0.2s linear;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-remove {
|
2018-03-18 09:14:11 -04:00
|
|
|
font-size: 13px;
|
2015-08-09 09:52:15 -04:00
|
|
|
text-align: center;
|
|
|
|
display: block;
|
|
|
|
cursor: pointer;
|
2015-12-30 14:57:17 -05:00
|
|
|
border: none;
|
2018-03-18 09:14:11 -04:00
|
|
|
margin-top: 3px;
|
2015-12-30 14:57:17 -05:00
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-remove:hover {
|
2015-12-30 14:57:17 -05:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview:hover .dz-details {
|
2015-12-30 14:57:17 -05:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-details {
|
|
|
|
z-index: 20;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
opacity: 0;
|
2015-08-12 18:42:42 -04:00
|
|
|
font-size: 10px;
|
2015-08-09 09:52:15 -04:00
|
|
|
min-width: 100%;
|
|
|
|
max-width: 100%;
|
2015-08-12 18:42:42 -04:00
|
|
|
padding: 6px 3px;
|
2015-08-09 09:52:15 -04:00
|
|
|
text-align: center;
|
|
|
|
color: rgba(0, 0, 0, 0.9);
|
2015-12-30 14:57:17 -05:00
|
|
|
line-height: 150%;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-details .dz-size {
|
2015-08-12 18:42:42 -04:00
|
|
|
margin-bottom: 0.5em;
|
2015-12-30 14:57:17 -05:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-details .dz-filename {
|
2015-12-30 14:57:17 -05:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-details .dz-filename:hover span {
|
|
|
|
border: 1px solid rgba(200, 200, 200, 0.8);
|
2015-12-30 14:57:17 -05:00
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-details .dz-filename:not(:hover) {
|
|
|
|
overflow: hidden;
|
2015-12-30 14:57:17 -05:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-details .dz-filename:not(:hover) span {
|
2015-12-30 14:57:17 -05:00
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
2018-03-18 09:14:11 -04:00
|
|
|
.dz-preview .dz-details .dz-filename span {
|
2015-08-09 09:52:15 -04:00
|
|
|
background-color: rgba(255, 255, 255, 0.4);
|
|
|
|
padding: 0 0.4em;
|
2015-12-30 14:57:17 -05:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview:hover .dz-image img {
|
2015-12-30 14:57:17 -05:00
|
|
|
filter: blur(8px);
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-image {
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
2015-08-12 18:42:42 -04:00
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
2015-08-09 09:52:15 -04:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
2015-12-30 14:57:17 -05:00
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-image img {
|
2015-12-30 14:57:17 -05:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-success .dz-success-mark {
|
2015-12-30 14:57:17 -05:00
|
|
|
animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-error .dz-error-mark {
|
|
|
|
opacity: 1;
|
2015-12-30 14:57:17 -05:00
|
|
|
animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-success-mark, .dz-preview .dz-error-mark {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
2018-03-18 09:14:11 -04:00
|
|
|
z-index: 1001;
|
2015-08-09 09:52:15 -04:00
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: -27px;
|
2018-03-18 09:14:11 -04:00
|
|
|
margin-top: -35px;
|
2015-12-30 14:57:17 -05:00
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-success-mark svg, .dz-preview .dz-error-mark svg {
|
|
|
|
display: block;
|
|
|
|
width: 54px;
|
2015-12-30 14:57:17 -05:00
|
|
|
height: 54px;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-processing .dz-progress {
|
|
|
|
opacity: 1;
|
2015-12-30 14:57:17 -05:00
|
|
|
transition: all 0.2s linear;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-complete .dz-progress {
|
|
|
|
opacity: 0;
|
2015-12-30 14:57:17 -05:00
|
|
|
transition: opacity 0.4s ease-in;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview:not(.dz-processing) .dz-progress {
|
2015-12-30 14:57:17 -05:00
|
|
|
animation: pulse 6s ease infinite;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-progress {
|
|
|
|
opacity: 1;
|
|
|
|
z-index: 1000;
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
height: 16px;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -8px;
|
|
|
|
width: 80px;
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: -40px;
|
2015-08-09 09:52:15 -04:00
|
|
|
background: rgba(255, 255, 255, 0.9);
|
2015-09-03 11:51:10 -04:00
|
|
|
transform: scale(1);
|
2015-08-09 09:52:15 -04:00
|
|
|
border-radius: 8px;
|
2015-12-30 14:57:17 -05:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-progress .dz-upload {
|
|
|
|
background: #333;
|
|
|
|
background: linear-gradient(to bottom, #666, #444);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 0;
|
2015-12-30 14:57:17 -05:00
|
|
|
transition: width 300ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview.dz-error .dz-error-message {
|
2015-12-30 14:57:17 -05:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-03-18 09:14:11 -04:00
|
|
|
.dz-preview.dz-error {
|
2018-03-18 09:28:04 -04:00
|
|
|
.dz-image, .dz-details {
|
|
|
|
&:hover ~ .dz-error-message {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
}
|
2015-12-30 14:57:17 -05:00
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-error-message {
|
|
|
|
pointer-events: none;
|
|
|
|
z-index: 1000;
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
display: none;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.3s ease;
|
2015-12-30 14:57:17 -05:00
|
|
|
border-radius: 4px;
|
2018-03-18 09:14:11 -04:00
|
|
|
font-size: 12px;
|
2015-12-30 14:57:17 -05:00
|
|
|
line-height: 1.2;
|
|
|
|
top: 88px;
|
2019-01-27 09:13:31 -05:00
|
|
|
left: -12px;
|
|
|
|
width: 160px;
|
2015-12-30 14:57:17 -05:00
|
|
|
background: $negative;
|
|
|
|
padding: $-xs;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2015-08-09 09:52:15 -04:00
|
|
|
.dz-preview .dz-error-message:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: -6px;
|
2019-03-08 17:57:24 -05:00
|
|
|
left: 44px;
|
2015-08-09 09:52:15 -04:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2020-04-05 08:07:19 -04:00
|
|
|
border-inline-start: 6px solid transparent;
|
|
|
|
border-inline-end: 6px solid transparent;
|
2015-12-30 14:57:17 -05:00
|
|
|
border-bottom: 6px solid $negative;
|
|
|
|
}
|
2016-10-23 12:55:48 -04:00
|
|
|
|
|
|
|
|
2017-08-19 08:55:56 -04:00
|
|
|
.tab-container .nav-tabs {
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
2016-10-23 12:55:48 -04:00
|
|
|
border-bottom: 1px solid #DDD;
|
|
|
|
margin-bottom: $-m;
|
|
|
|
.tab-item {
|
|
|
|
padding: $-s;
|
|
|
|
color: #666;
|
|
|
|
&.selected {
|
|
|
|
border-bottom-width: 3px;
|
|
|
|
}
|
|
|
|
}
|
2016-12-24 10:21:19 -05:00
|
|
|
}
|
|
|
|
|
2019-08-25 07:40:04 -04:00
|
|
|
.nav-tabs {
|
|
|
|
text-align: center;
|
|
|
|
a, .tab-item {
|
|
|
|
padding: $-m;
|
|
|
|
display: inline-block;
|
|
|
|
color: #666;
|
|
|
|
fill: #666;
|
|
|
|
cursor: pointer;
|
|
|
|
&.selected {
|
|
|
|
border-bottom: 2px solid var(--color-primary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-24 10:21:19 -05:00
|
|
|
.image-picker .none {
|
|
|
|
display: none;
|
2017-07-01 08:23:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#code-editor .CodeMirror {
|
|
|
|
height: 400px;
|
2017-07-01 10:50:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#code-editor .lang-options {
|
2019-10-17 16:16:55 -04:00
|
|
|
max-width: 480px;
|
2017-07-01 10:50:28 -04:00
|
|
|
margin-bottom: $-s;
|
|
|
|
a {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: $-xs;
|
2017-07-01 10:50:28 -04:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-09-09 12:06:30 -04:00
|
|
|
}
|
|
|
|
|
2018-01-28 09:19:54 -05:00
|
|
|
@include smaller-than($m) {
|
|
|
|
#code-editor .lang-options {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
#code-editor .CodeMirror {
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 12:06:30 -04:00
|
|
|
.comment-box {
|
|
|
|
border: 1px solid #DDD;
|
2019-04-13 05:50:24 -04:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #FFF;
|
2017-09-09 12:06:30 -04:00
|
|
|
.content {
|
|
|
|
font-size: 0.666em;
|
2017-12-28 12:02:24 -05:00
|
|
|
p, ul, ol {
|
2017-09-10 11:14:04 -04:00
|
|
|
font-size: $fs-m;
|
|
|
|
margin: .5em 0;
|
|
|
|
}
|
2017-09-09 12:06:30 -04:00
|
|
|
}
|
2019-04-13 05:50:24 -04:00
|
|
|
.actions {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity ease-in-out 120ms;
|
|
|
|
}
|
2019-08-24 13:26:28 -04:00
|
|
|
&:hover .actions, &:focus-within .actions {
|
2019-04-13 05:50:24 -04:00
|
|
|
opacity: 1;
|
2017-09-09 12:06:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-box .header {
|
|
|
|
.meta {
|
|
|
|
img, a, span {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
a, span {
|
|
|
|
padding: $-xxs 0 $-xxs 0;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
a { color: #666; }
|
|
|
|
span {
|
2020-04-05 08:07:19 -04:00
|
|
|
padding-inline-start: $-xxs;
|
2017-09-09 12:06:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.text-muted {
|
|
|
|
color: #999;
|
|
|
|
}
|
2018-03-18 09:14:11 -04:00
|
|
|
}
|
2018-03-30 09:09:51 -04:00
|
|
|
|
|
|
|
#tag-manager .drag-card {
|
|
|
|
max-width: 500px;
|
2019-04-13 07:07:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.permissions-table [permissions-table-toggle-all-in-row] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.permissions-table tr:hover [permissions-table-toggle-all-in-row] {
|
|
|
|
display: inline;
|
2019-08-11 15:04:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.template-item {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
&:hover, .template-item-actions button:hover {
|
|
|
|
background-color: #F2F2F2;
|
|
|
|
}
|
|
|
|
.template-item-actions {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 50px;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-04-05 08:07:19 -04:00
|
|
|
border-inline-start: 1px solid #DDD;
|
2019-08-11 15:04:43 -04:00
|
|
|
}
|
|
|
|
.template-item-actions button {
|
|
|
|
cursor: pointer;
|
|
|
|
flex: 1;
|
|
|
|
background: #FFF;
|
|
|
|
border: 0;
|
|
|
|
border-top: 1px solid #DDD;
|
|
|
|
}
|
|
|
|
.template-item-actions button:first-child {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
2018-03-30 09:09:51 -04:00
|
|
|
}
|