207 lines
3.1 KiB
SCSS
Raw Normal View History

2013-02-05 14:16:51 -05:00
// base styles for every modal popup used in Discourse
.modal-middle-container {
display:table-cell;
vertical-align: middle;
}
// Hardcode to be the same as before for now. I would recommend not using bootbox, or finding a way so the html structure can be the same
.bootbox.modal {
top: 50%;
left: 50%;
width: 610px;
margin: -250px 0 0 -305px;
.cancel {
margin-left: 1em;
}
2013-02-05 14:16:51 -05:00
}
.modal.in {
2014-12-25 02:29:39 -08:00
-webkit-animation: fade .25s;
animation: fade .25s;
2013-02-05 14:16:51 -05:00
}
2013-02-05 14:16:51 -05:00
.modal-body {
overflow-y: auto;
max-height: 400px;
padding: 15px;
}
.modal-footer .btn.right {
float: right;
}
2013-02-05 14:16:51 -05:00
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
2014-11-12 00:39:32 -08:00
2013-02-05 14:16:51 -05:00
.modal-header {
h3 {
2018-01-12 17:27:38 -05:00
font-size: $font-up-3;
2013-02-25 19:42:20 +03:00
}
2014-06-18 20:04:10 +02:00
}
2014-06-18 20:04:10 +02:00
.close {
2018-01-12 17:27:38 -05:00
font-size: $font-up-3;
2014-06-18 20:04:10 +02:00
text-decoration: none;
2017-10-10 16:07:46 -04:00
color: dark-light-choose($primary-high, $secondary-low);
2014-06-18 20:04:10 +02:00
cursor: pointer;
&:hover {
color: $primary;
2013-02-05 14:16:51 -05:00
}
}
.modal {
2017-10-19 12:51:08 -07:00
.category-chooser {
width: 50%;
}
.category-combobox {
width: 430px;
2014-05-11 04:50:03 +00:00
.select2-drop {
left: -9000px;
width: 428px;
}
2014-05-11 04:50:03 +00:00
.select2-search input {
width: 378px;
}
}
2013-02-05 14:16:51 -05:00
}
.flag-modal {
max-height: 450px;
2018-01-12 17:27:38 -05:00
.flag-action-type-details {
line-height: $line-height-large;
}
}
.custom-message-length {
2017-10-10 16:07:46 -04:00
color: dark-light-choose($primary-low-mid, $secondary-high);
2018-01-12 17:27:38 -05:00
font-size: $font-down-1;
}
2013-04-23 14:15:09 -07:00
.flag-message {
width: 95%;
2017-10-17 10:44:52 -04:00
margin: 0;
}
.edit-category-modal {
.modal-body {
position: relative;
2013-12-03 17:24:25 -05:00
height: 420px;
max-height: 420px;
padding-bottom: 0;
}
.secure-category-options {
margin: 10px 0 0 16px;
.badge-list {
margin: 10px 0;
li {
margin: 0 4px 8px 0;
a {
2017-10-10 16:07:46 -04:00
color: dark-light-choose($primary-medium, $secondary-medium);
cursor: pointer;
}
a:hover {
2017-10-10 16:07:46 -04:00
color: dark-light-choose($primary-medium, $secondary-medium);
}
}
}
}
2017-03-10 17:57:18 +01:00
2017-03-08 18:59:19 +01:00
.disable_info_wrap {
margin-top: -70px;
padding-top: 70px;
2017-03-10 17:57:18 +01:00
@media all and (min-width: 550px) {
padding-left: 170px;
}
2017-03-08 18:59:19 +01:00
.cannot_delete_reason {
top: 4px;
right: 4px;
max-width: 380px;
min-width: 300px;
}
}
}
2014-01-29 13:35:24 -05:00
.topic-bulk-actions-modal {
p {
margin-top: 0;
}
2014-01-30 12:44:28 -05:00
&.full .modal-body {
height: 400px;
max-height: 400px;
}
2017-05-11 14:47:08 -04:00
.bulk-buttons {
display: flex;
flex-wrap: wrap;
.btn {
flex: 1 1 0;
2017-05-11 14:47:08 -04:00
margin-bottom: 1em;
margin-right: 1em;
white-space: nowrap;
max-width: 23%;
2017-05-11 14:47:08 -04:00
}
}
2014-01-29 13:35:24 -05:00
}
.tabbed-modal {
.modal-body {
position: relative;
height: 350px;
}
}
.modal-tab {
position: absolute;
width: 95%;
}
.split-modal {
.modal-body {
position: relative;
height: 350px;
}
#move-selected {
p {
margin-top: 0;
}
input[type=radio] {
margin-right: 10px;
}
button {
margin-top: 10px;
display: block;
width: 300px;
}
form {
margin-top: 20px;
#split-topic-name, #choose-topic-title {
width: 520px;
}
}
}
}
.upload-options {
margin-left: 20px;
margin-top: 20px;
}
.uploaded-avatar {
margin-top: 20px;
}
.uploaded-image-preview {
width: 400px;
max-height: 150px;
margin-bottom: 10px;
}