discourse/app/assets/stylesheets/desktop/modal.scss

227 lines
3.7 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 {
position: fixed;
top: 50%;
left: 50%;
z-index: 1050;
overflow: auto;
width: 610px;
height: auto;
margin: -250px 0 0 -305px;
background-color: $secondary;
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
2013-02-05 14:16:51 -05:00
2014-08-06 09:31:13 -04:00
box-shadow: 0 3px 7px rgba(0,0,0, .8);
2013-02-05 14:16:51 -05:00
background-clip: padding-box;
2013-02-05 14:16:51 -05:00
}
.modal.in {
2014-12-25 05:29:39 -05: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;
}
2013-02-05 14:16:51 -05:00
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.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 03:39:32 -05:00
.modal-close {
display: inline-block;
float: right;
margin: 7px;
}
2013-02-05 14:16:51 -05:00
.modal-header {
h3 {
display: inline-block;;
font-size: 1.429em;
2013-02-05 14:16:51 -05:00
padding: 10px 15px 7px;
2013-02-25 11:42:20 -05:00
}
2014-06-18 14:04:10 -04:00
}
.close {
font-size: 1.429em;
2014-06-18 14:04:10 -04:00
text-decoration: none;
color: dark-light-choose(scale-color($primary, $lightness: 35%), scale-color($secondary, $lightness: 65%));
2014-06-18 14:04:10 -04:00
cursor: pointer;
&:hover {
color: $primary;
2013-02-05 14:16:51 -05:00
}
}
.modal {
.category-combobox {
width: 430px;
2014-05-11 00:50:03 -04:00
.select2-drop {
left: -9000px;
width: 428px;
}
2014-05-11 00:50:03 -04:00
.select2-search input {
width: 378px;
}
}
2013-02-05 14:16:51 -05:00
}
.flag-modal {
max-height: 450px;
}
.custom-message-length {
margin: -10px 0 10px 20px;
color: dark-light-choose(scale-color($primary, $lightness: 70%), scale-color($secondary, $lightness: 30%));
font-size: 85%;
}
2013-04-23 17:15:09 -04:00
.flag-message {
margin-left: 20px;
width: 95% !important;
}
.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 {
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
cursor: pointer;
}
a:hover {
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%));
}
}
}
}
2017-03-10 11:57:18 -05:00
2017-03-08 12:59:19 -05:00
.disable_info_wrap {
margin-top: -70px;
padding-top: 70px;
2017-03-10 11:57:18 -05:00
@media all and (min-width: 550px) {
padding-left: 170px;
}
2017-03-08 12:59:19 -05: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;
}
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;
}
.delete-flag-modal, .agree-flag-modal {
.modal-inner-container {
width: 400px;
}
}
.change-timestamp {
min-height: 300px;
.date-picker {
width: 10em;
}
input[type=time] {
width: 6em;
}
form {
margin: 0;
}
}