2014-04-20 15:17:11 -04:00
|
|
|
.modal-open {
|
|
|
|
.dropdown-menu {
|
2018-06-08 05:49:31 -04:00
|
|
|
z-index: z("modal", "dropdown");
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
.popover {
|
2018-06-08 05:49:31 -04:00
|
|
|
z-index: z("modal", "popover");
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
.tooltip {
|
2018-06-08 05:49:31 -04:00
|
|
|
z-index: z("modal", "tooltip");
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-26 14:52:03 -05:00
|
|
|
.bootbox.modal {
|
|
|
|
position: fixed;
|
2018-06-08 05:49:31 -04:00
|
|
|
z-index: z("modal", "content");
|
2018-01-26 14:52:03 -05:00
|
|
|
overflow: auto;
|
|
|
|
height: auto;
|
|
|
|
background-color: $secondary;
|
2018-02-20 12:18:20 -05:00
|
|
|
box-shadow: shadow("card");
|
2018-01-26 14:52:03 -05:00
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
2016-12-22 12:34:20 -05:00
|
|
|
.input-hint-text {
|
|
|
|
margin-left: 0.5em;
|
2017-10-10 16:07:46 -04:00
|
|
|
color: $secondary-high;
|
2016-12-22 12:34:20 -05:00
|
|
|
}
|
|
|
|
|
2016-12-30 00:58:12 -05:00
|
|
|
.modal-header {
|
2018-02-23 13:14:32 -05:00
|
|
|
display: flex;
|
2018-03-28 14:40:26 -04:00
|
|
|
padding: 10px 15px;
|
2017-10-19 15:51:08 -04:00
|
|
|
border-bottom: 1px solid $primary-low;
|
2019-02-20 09:42:44 -05:00
|
|
|
align-items: center;
|
2018-05-30 11:14:00 -04:00
|
|
|
|
|
|
|
.title {
|
|
|
|
h3 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-02-23 13:14:32 -05:00
|
|
|
}
|
2018-05-30 11:14:00 -04:00
|
|
|
|
2018-02-23 13:14:32 -05:00
|
|
|
.modal-close {
|
2019-02-20 09:42:44 -05:00
|
|
|
align-self: flex-start;
|
2018-03-28 14:40:26 -04:00
|
|
|
order: 2;
|
2018-02-23 13:14:32 -05:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
2016-12-30 00:58:12 -05:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal-backdrop {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2018-06-08 05:49:31 -04:00
|
|
|
z-index: z("modal", "overlay");
|
2014-08-06 09:31:13 -04:00
|
|
|
background-color: #111;
|
2014-04-20 15:17:11 -04:00
|
|
|
&.fade {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-backdrop,
|
|
|
|
.modal-backdrop.fade.in {
|
2018-06-08 05:49:31 -04:00
|
|
|
animation: fade 0.3s;
|
|
|
|
opacity: 0.9;
|
2015-01-12 10:29:38 -05:00
|
|
|
filter: alpha(opacity=90);
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
|
2015-03-25 14:14:34 -04:00
|
|
|
// fade in
|
2014-12-25 04:14:20 -05:00
|
|
|
@keyframes fade {
|
2018-06-08 05:49:31 -04:00
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2014-12-25 05:29:39 -05:00
|
|
|
|
2015-03-25 14:14:34 -04:00
|
|
|
// slide in
|
|
|
|
@keyframes slidein {
|
2018-06-08 05:49:31 -04:00
|
|
|
from {
|
|
|
|
transform: translateY(-20%);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
2015-03-25 14:14:34 -04:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal-outer-container {
|
2018-06-08 05:49:31 -04:00
|
|
|
display: table;
|
2018-02-06 15:02:51 -05:00
|
|
|
table-layout: fixed;
|
2018-06-08 05:49:31 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-inner-container {
|
2018-05-25 16:44:44 -04:00
|
|
|
display: table;
|
2018-05-30 11:14:00 -04:00
|
|
|
width: 100%;
|
2018-05-25 16:44:44 -04:00
|
|
|
min-width: 320px;
|
2018-02-09 15:45:34 -05:00
|
|
|
max-width: 700px;
|
2014-04-20 15:17:11 -04:00
|
|
|
margin: 0 auto;
|
2014-05-06 01:50:51 -04:00
|
|
|
background-color: $secondary;
|
2014-04-20 15:17:11 -04:00
|
|
|
background-clip: padding-box;
|
2018-02-20 12:18:20 -05:00
|
|
|
box-shadow: shadow("modal");
|
2018-10-04 15:47:14 -04:00
|
|
|
padding: 1px;
|
2019-02-20 09:42:44 -05:00
|
|
|
box-sizing: border-box;
|
2018-05-30 11:14:00 -04:00
|
|
|
|
2018-05-29 13:13:35 -04:00
|
|
|
@media screen and (min-width: 475px) {
|
|
|
|
min-width: 475px;
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-10-19 15:51:08 -04:00
|
|
|
|
2017-11-21 05:53:09 -05:00
|
|
|
.select-kit {
|
2017-10-19 15:51:08 -04:00
|
|
|
width: 220px;
|
2018-02-26 05:42:57 -05:00
|
|
|
|
|
|
|
&.tag-chooser {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-10-19 15:51:08 -04:00
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
|
2015-03-25 14:14:34 -04:00
|
|
|
.create-account.in .modal-inner-container,
|
|
|
|
.login-modal.in .modal-inner-container {
|
2018-06-08 05:49:31 -04:00
|
|
|
animation: slidein 0.3s;
|
2015-03-25 14:14:34 -04:00
|
|
|
}
|
|
|
|
|
2017-08-30 17:38:49 -04:00
|
|
|
.inline-modal {
|
|
|
|
.modal-inner-container {
|
|
|
|
border: 1px solid $secondary-medium;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed-modal {
|
2014-04-20 15:17:11 -04:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-06-08 05:49:31 -04:00
|
|
|
z-index: z("modal", "content");
|
2014-04-20 15:17:11 -04:00
|
|
|
overflow: auto;
|
2018-06-01 11:59:29 -04:00
|
|
|
&:not(.history-modal) {
|
|
|
|
.modal-body {
|
|
|
|
max-height: none !important;
|
|
|
|
}
|
2018-05-16 11:33:55 -04:00
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2018-02-23 21:41:40 -05:00
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal-form {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2019-02-15 12:01:10 -05:00
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal-footer {
|
2018-01-29 15:15:50 -05:00
|
|
|
padding: 14px 15px 10px;
|
2017-10-19 15:51:08 -04:00
|
|
|
border-top: 1px solid $primary-low;
|
2018-01-29 15:15:50 -05:00
|
|
|
.btn {
|
2018-06-08 05:49:31 -04:00
|
|
|
margin: 0 5px 5px 0;
|
2018-01-29 15:15:50 -05:00
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2019-02-15 12:01:10 -05:00
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal-footer:before,
|
|
|
|
.modal-footer:after {
|
|
|
|
display: table;
|
|
|
|
content: "";
|
|
|
|
}
|
2019-02-15 12:01:10 -05:00
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal-footer:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2015-07-02 16:18:59 -04:00
|
|
|
.modal.edit-category-modal {
|
|
|
|
.modal-body {
|
|
|
|
textarea {
|
|
|
|
height: 10em;
|
|
|
|
}
|
|
|
|
}
|
2018-05-30 23:24:43 -04:00
|
|
|
@media screen and (min-width: 524px) {
|
|
|
|
.modal-inner-container {
|
2018-06-08 05:49:31 -04:00
|
|
|
min-width: 525px;
|
2018-05-30 23:24:43 -04:00
|
|
|
}
|
|
|
|
}
|
2015-07-02 16:18:59 -04:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:17:11 -04:00
|
|
|
.modal {
|
2015-07-02 16:18:59 -04:00
|
|
|
.nav {
|
2014-07-11 16:28:44 -04:00
|
|
|
padding: 10px 30px 10px 15px;
|
2017-06-11 22:20:14 -04:00
|
|
|
background-color: $secondary;
|
2014-04-20 15:17:11 -04:00
|
|
|
li > a {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-0;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2017-10-19 15:51:08 -04:00
|
|
|
border-bottom: 1px solid $primary-low;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
|
2017-07-27 17:14:41 -04:00
|
|
|
&.hidden {
|
2014-04-20 15:17:11 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
2018-01-29 15:15:50 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2018-11-09 09:35:29 -05:00
|
|
|
overflow-y: auto;
|
2018-02-23 21:41:40 -05:00
|
|
|
max-height: 400px;
|
2015-09-10 16:42:10 -04:00
|
|
|
&.full-height-modal {
|
|
|
|
max-height: calc(100vh - 150px);
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
textarea {
|
|
|
|
width: 99%;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
p {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-0;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
.archetype-option {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.warning {
|
2014-05-06 01:50:51 -04:00
|
|
|
color: $danger !important;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2015-05-16 22:56:19 -04:00
|
|
|
.json-uploader {
|
2015-05-17 00:04:57 -04:00
|
|
|
.jsfu-shade-container {
|
|
|
|
display: table-row;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.jsfu-shade {
|
2018-01-16 19:05:12 -05:00
|
|
|
z-index: z("base");
|
2015-05-17 00:04:57 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
.text {
|
2018-06-08 05:49:31 -04:00
|
|
|
color: rgb(255, 255, 255);
|
2015-05-17 00:04:57 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 40%;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-up-6;
|
2015-05-17 00:04:57 -04:00
|
|
|
text-align: center;
|
2018-01-12 17:27:38 -05:00
|
|
|
line-height: $line-height-medium;
|
2015-05-17 00:04:57 -04:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-05-16 22:56:19 -04:00
|
|
|
.jsfu-file {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
min-width: 120px;
|
|
|
|
}
|
|
|
|
.jsfu-separator {
|
|
|
|
vertical-align: middle;
|
|
|
|
display: table-cell;
|
2017-12-18 15:49:11 -05:00
|
|
|
font-size: 2.571em;
|
2015-05-16 22:56:19 -04:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.jsfu-paste {
|
|
|
|
display: table-cell;
|
|
|
|
width: 100%;
|
|
|
|
textarea {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
.password-confirmation {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
section.field {
|
2018-11-20 15:16:17 -05:00
|
|
|
padding: 0.25em 0;
|
|
|
|
margin-bottom: 5px;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2018-11-20 15:16:17 -05:00
|
|
|
|
2014-12-20 09:07:29 -05:00
|
|
|
section.field .field-item {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2017-06-19 06:39:29 -04:00
|
|
|
|
|
|
|
// password reset modal
|
|
|
|
.modal-body.forgot-password-modal p {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-0;
|
2017-06-19 06:39:29 -04:00
|
|
|
}
|
2018-05-31 18:11:24 -04:00
|
|
|
|
|
|
|
pre code {
|
|
|
|
white-space: pre-wrap;
|
2018-05-31 18:19:27 -04:00
|
|
|
max-width: 700px;
|
2018-05-31 18:11:24 -04:00
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.reply-where-modal {
|
|
|
|
.modal-footer {
|
2017-09-26 09:23:50 -04:00
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.d-modal-cancel {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
.btn {
|
|
|
|
text-align: left;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-up-2;
|
|
|
|
line-height: $line-height-medium;
|
2017-12-01 02:25:32 -05:00
|
|
|
width: auto;
|
2014-04-20 15:17:11 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
display: block;
|
2015-05-22 04:08:31 -04:00
|
|
|
margin-left: 0 !important; // override needed
|
2015-05-22 06:03:04 -04:00
|
|
|
font-weight: bold;
|
2014-04-20 15:17:11 -04:00
|
|
|
.topic-title {
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-0;
|
2014-04-20 15:17:11 -04:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
&.btn-reply-here {
|
2017-09-26 09:23:50 -04:00
|
|
|
background: $primary-low;
|
2014-04-20 15:17:11 -04:00
|
|
|
text-shadow: none;
|
2014-05-06 01:50:51 -04:00
|
|
|
color: $primary;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-15 12:01:10 -05:00
|
|
|
|
2017-09-13 13:23:19 -04:00
|
|
|
.d-modal-cancel {
|
2018-01-16 17:49:04 -05:00
|
|
|
margin-left: 1em;
|
2017-09-13 13:23:19 -04:00
|
|
|
color: $primary-medium;
|
2019-01-31 13:59:49 -05:00
|
|
|
&:hover {
|
|
|
|
color: $danger;
|
|
|
|
}
|
2017-09-13 13:23:19 -04:00
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
|
|
|
|
.delete-user-modal {
|
|
|
|
.modal-footer {
|
|
|
|
.btn {
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: left;
|
2018-01-12 17:27:38 -05:00
|
|
|
font-size: $font-0;
|
|
|
|
line-height: $line-height-large;
|
2014-04-20 15:17:11 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-14 05:04:18 -05:00
|
|
|
.delete-posts-progress {
|
|
|
|
.progress-bar {
|
|
|
|
height: 15px;
|
|
|
|
position: relative;
|
|
|
|
background: $primary-low-mid;
|
|
|
|
border-radius: 25px;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 30px 0 20px;
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
width: 0%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: $tertiary;
|
|
|
|
position: relative;
|
|
|
|
transition: width 0.6s linear;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-22 02:37:27 -05:00
|
|
|
#invite-modal {
|
2014-04-20 15:17:11 -04:00
|
|
|
overflow: visible;
|
2018-02-22 02:37:27 -05:00
|
|
|
|
|
|
|
label {
|
|
|
|
margin-top: 7px;
|
2018-05-30 23:24:43 -04:00
|
|
|
max-width: 450px;
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
2018-02-22 02:37:27 -05:00
|
|
|
|
2016-06-07 04:04:58 -04:00
|
|
|
.optional {
|
|
|
|
color: #9e9ea6;
|
|
|
|
}
|
2014-04-20 15:17:11 -04:00
|
|
|
}
|
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.permission-list {
|
|
|
|
list-style: none;
|
2014-04-20 15:17:11 -04:00
|
|
|
margin: 0 0 30px;
|
|
|
|
padding: 0;
|
|
|
|
.name {
|
|
|
|
margin-right: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 100px;
|
|
|
|
}
|
|
|
|
.permission {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2017-11-23 11:14:51 -05:00
|
|
|
.d-icon-times-circle {
|
2014-04-20 15:17:11 -04:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 12:03:12 -05:00
|
|
|
|
|
|
|
.edit-category-modal {
|
2018-11-20 15:16:17 -05:00
|
|
|
input:not([type="checkbox"]),
|
|
|
|
.controls {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 0.5em;
|
2017-03-01 12:03:12 -05:00
|
|
|
}
|
|
|
|
|
2017-03-10 11:57:18 -05:00
|
|
|
.disable_info_wrap {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
.cannot_delete_reason {
|
|
|
|
position: absolute;
|
2017-11-13 17:09:20 -05:00
|
|
|
background: $primary;
|
|
|
|
color: $secondary;
|
2017-03-10 11:57:18 -05:00
|
|
|
text-align: center;
|
|
|
|
border-radius: 2px;
|
|
|
|
padding: 12px 8px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
top: 100%;
|
|
|
|
left: 57%;
|
|
|
|
border: solid transparent;
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
2017-11-13 17:09:20 -05:00
|
|
|
border-top-color: $primary;
|
2017-03-10 11:57:18 -05:00
|
|
|
border-width: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-28 14:40:26 -04:00
|
|
|
|
2019-02-15 12:01:10 -05:00
|
|
|
.permission-selector {
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
|
|
|
|
2018-10-01 10:21:40 -04:00
|
|
|
.add-permission {
|
2019-02-15 12:01:10 -05:00
|
|
|
position: relative;
|
|
|
|
top: 0.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-permission-icon {
|
|
|
|
margin: 0;
|
2018-10-01 10:21:40 -04:00
|
|
|
}
|
2019-04-10 23:00:31 -04:00
|
|
|
|
|
|
|
.edit-category-tab-settings {
|
|
|
|
$category-settings-width: 280px; // Consistent width makes this all easier to read
|
|
|
|
> section {
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
input[type="number"],
|
|
|
|
input[type="text"],
|
|
|
|
.select-kit {
|
|
|
|
width: $category-settings-width;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
max-width: $category-settings-width;
|
|
|
|
}
|
2019-04-10 23:49:26 -04:00
|
|
|
.category-email-in-outlet {
|
|
|
|
label {
|
|
|
|
flex-wrap: wrap; // Todo: fix all multi-element labels
|
|
|
|
a {
|
|
|
|
margin-left: 1.3em;
|
|
|
|
}
|
|
|
|
}
|
2019-04-10 23:00:31 -04:00
|
|
|
}
|
|
|
|
}
|
2017-03-01 12:03:12 -05:00
|
|
|
}
|
|
|
|
|
2017-03-08 17:15:42 -05:00
|
|
|
.incoming-email-modal {
|
|
|
|
.btn {
|
|
|
|
transition: none;
|
|
|
|
background-color: transparent;
|
|
|
|
margin-right: 5px;
|
2018-06-08 05:49:31 -04:00
|
|
|
&:hover,
|
|
|
|
&.active {
|
2017-03-08 17:15:42 -05:00
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
&.active {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
&:focus {
|
2017-10-19 15:51:08 -04:00
|
|
|
outline: 2px solid $primary-low;
|
2017-03-08 17:15:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.incoming-email-tabs {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.incoming-email-content {
|
|
|
|
height: 300px;
|
2018-06-08 05:49:31 -04:00
|
|
|
max-width: 700px;
|
2018-05-30 15:28:29 -04:00
|
|
|
width: 90vw; // forcing textarea wider
|
2018-06-08 05:49:31 -04:00
|
|
|
textarea,
|
|
|
|
.incoming-email-html-part {
|
2017-03-08 17:15:42 -05:00
|
|
|
height: 95%;
|
|
|
|
border: none;
|
2017-10-19 15:51:08 -04:00
|
|
|
border-top: 1px solid $primary-low;
|
2017-03-08 17:15:42 -05:00
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
font-family: monospace;
|
|
|
|
resize: none;
|
2018-01-25 09:53:36 -05:00
|
|
|
border-radius: 0;
|
2017-03-08 17:15:42 -05:00
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.incoming-email-html-part {
|
|
|
|
padding: 10px 4px 4px 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-05 16:14:22 -04:00
|
|
|
|
|
|
|
.modal-button-bar {
|
|
|
|
margin-top: 1em;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
2018-02-23 11:44:49 -05:00
|
|
|
|
2018-05-02 20:12:19 -04:00
|
|
|
.change-timestamp,
|
|
|
|
.poll-ui-builder {
|
2018-06-08 05:49:31 -04:00
|
|
|
.date-picker {
|
2018-09-19 08:37:04 -04:00
|
|
|
min-width: 8em;
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2018-03-28 14:40:26 -04:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
#date-container {
|
|
|
|
.pika-single {
|
|
|
|
position: relative !important; // overriding another important
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 5px;
|
2018-02-23 11:44:49 -05:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2018-03-28 14:40:26 -04:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
input[type="time"] {
|
2018-09-14 13:38:58 -04:00
|
|
|
width: 7em;
|
2018-06-08 05:49:31 -04:00
|
|
|
text-align: center;
|
|
|
|
}
|
2018-03-28 14:40:26 -04:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
form {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2018-02-23 21:41:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.flag-modal {
|
|
|
|
max-height: 450px;
|
|
|
|
.flag-action-type-details {
|
2018-10-02 12:04:37 -04:00
|
|
|
width: 100%;
|
2018-02-23 21:41:40 -05:00
|
|
|
line-height: $line-height-large;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flag-message {
|
|
|
|
width: 95% !important;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-message-length {
|
|
|
|
color: dark-light-choose($primary-low-mid, $secondary-high);
|
|
|
|
font-size: $font-down-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.edit-category-modal {
|
|
|
|
.secure-category-options {
|
|
|
|
margin: 10px 0 0 16px;
|
|
|
|
.badge-list {
|
|
|
|
margin: 10px 0;
|
|
|
|
li {
|
|
|
|
margin: 0 4px 8px 0;
|
|
|
|
a {
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-23 11:44:49 -05:00
|
|
|
}
|
2018-02-23 21:41:40 -05:00
|
|
|
}
|
|
|
|
|
2018-07-19 10:00:13 -04:00
|
|
|
.jump-to-post-modal {
|
|
|
|
.modal-body {
|
|
|
|
#post-jump,
|
|
|
|
.date-picker {
|
|
|
|
margin: 0;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pika-single {
|
|
|
|
position: relative !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.jump-to-post-control .index {
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
.separator {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 1em auto;
|
|
|
|
|
|
|
|
.left,
|
|
|
|
.right {
|
2019-01-21 13:40:55 -05:00
|
|
|
flex: 1 0 0px;
|
2018-07-19 10:00:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
margin: 0 0.5em;
|
|
|
|
color: $primary-medium;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 03:18:38 -05:00
|
|
|
// move-to topic modal
|
|
|
|
.move-to-modal {
|
2018-11-19 00:12:42 -05:00
|
|
|
// move to existing topic
|
|
|
|
.existing-topic {
|
|
|
|
.radio {
|
|
|
|
flex-wrap: wrap;
|
2018-11-19 02:10:52 -05:00
|
|
|
}
|
|
|
|
.topic-title {
|
|
|
|
max-width: 90%;
|
2018-11-19 00:12:42 -05:00
|
|
|
}
|
|
|
|
.topic-categories {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-23 21:41:40 -05:00
|
|
|
.tabbed-modal {
|
|
|
|
.modal-body {
|
|
|
|
position: relative;
|
|
|
|
height: 350px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-20 09:42:44 -05:00
|
|
|
.modal:not(.has-tabs) {
|
|
|
|
.modal-tab {
|
|
|
|
position: absolute;
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
&.has-tabs {
|
|
|
|
.modal-tabs {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
flex: 1 0 auto;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
.modal-tab {
|
|
|
|
list-style: none;
|
|
|
|
padding: s(1 2);
|
|
|
|
margin-right: s(1);
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&.is-active {
|
|
|
|
color: $secondary;
|
|
|
|
background: $danger;
|
|
|
|
|
|
|
|
&.single-tab {
|
2019-02-26 08:15:25 -05:00
|
|
|
background: none;
|
|
|
|
color: $primary;
|
|
|
|
padding: s(1 0);
|
2019-02-20 09:42:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-23 21:41:40 -05:00
|
|
|
}
|