// base styles for every modal popup used in Discourse .modal-open { .dropdown-menu { z-index: 2050; } .popover { z-index: 2060; } .tooltip { z-index: 2070; } } .modal-open #main {overflow:hidden;} .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: $secondary_background_color; &.fade { opacity: 0; } } .modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; filter: alpha(opacity=80); } .modal-outer-container { display:table; width:100%; height:100%; } .modal-middle-container { margin-top: 10%; max-width: 100%; margin-bottom: 30px; // For iOS Safari issues } .modal-inner-container { max-width: 100%; margin: 0 auto; background-color: $primary_background_color; border: 1px solid $primary_border_color; border: 1px solid rgba(0, 0, 0, 0.3); @include border-radius-all (6px); box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); background-clip: padding-box; } .modal { position: fixed; top: 0; width: 100%; height: 100%; z-index: 1050; overflow: auto; } // 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: 10%; z-index: 1050; overflow: auto; width: 100%; height: auto; background-color: $primary_background_color; border: 1px solid $primary_border_color; border: 1px solid rgba(0, 0, 0, 0.3); @include border-radius-all (6px); box-shadow: 0 3px 7px rgba($primary_shadow_color, 0.3); background-clip: padding-box; } .modal.fade { -webkit-transition: opacity .3s linear, top .3s ease-out; transition: opacity .3s linear, top .3s ease-out; top: -25%; } .modal.fade.in { top: 50%; } .modal-body { overflow-y: auto; max-height: 400px; padding: 10px 15px 10px 15px; } .modal-form { margin-bottom: 0; } .modal-footer { margin: 0 15px; padding: 14px 0 15px; border-top: 1px solid #ddd; @include border-radius-all(0 0 6px 6px); @include box-shadow (inset 0 1px 0 rgba($primary_shadow_color, .8)); } .modal-footer:before, .modal-footer:after { display: table; content: ""; } .modal-footer:after { clear: both; } // an ember metamorph is inserted between btn's sometimes, breaking this rule, but only on mobile for some reason: // .modal-footer .btn + .btn { .modal-footer .btn { margin-right: 5px; margin-bottom: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-header { h3 { color: $nav-pills-background-color-active; font-size: 15px; padding: 0 0 0 20px; } .close { float: right; font-size: 24px; padding: 15px; // more pixels to touch margin: -15px 0 0 0; text-decoration: none; color: $modal-close-button-color; cursor: pointer; } } .modal { .nav { padding: 10px 30px; background-color: lighten($secondary_background_color, 76%); li > a { font-size: 14px; } border-bottom: 1px solid $primary_border_color; } &.hidden { display: none; } .modal-body { textarea { width: 99%; height: 80px; } label { color: $secondary_text_color; } p { color: $primary_text_color; font-size: 13px; } .archetype-option { margin-bottom: 20px; } .warning { color: $warning_text_color !important; } } .password-confirmation { display: none; } section.field { margin-bottom: 20px; } } #move-selected { p { margin-top: 0; } input[type=radio] { margin-right: 10px; } button { margin-top: 10px; display: block; width: 300px; } form { margin-top: 20px; input[type=text] { width: 500px; } } } .flag-modal { max-height: 450px; } .custom-message-length { margin-bottom: 10px; margin-left: 20px; } .flag-message { margin-left: 20px; width: 95% !important; } .edit-category-modal { .modal-body { position: relative; height: 350px; } &.small .modal-body { height: 310px; } .secure-category-options { margin: 10px 0 0 16px; .badge-list { margin: 10px 0; li { margin: 0 4px 8px 0; a { color: #888; cursor: pointer; } } } } } .tabbed-modal { .modal-body { position: relative; height: 350px; } } .modal-tab { position: absolute; } .invite-modal { overflow: visible; .ember-text-field { width: 550px; } } .reply-where-modal { width: 370px; margin-left: -185px; .modal-footer { .btn { text-align: left; font-size: 18px; line-height: 20px; width: 310px; margin-bottom: 10px; display: block; margin-left: 0; .topic-title { font-size: 13px; font-weight: normal; } &.btn-reply-here { background: lighten($secondary_background_color, 60%); text-shadow: none; color: $secondary_text_color; } } .cancel { text-decoration: underline; float: right; margin-right: 5px; } } } .delete-user-modal { .modal-footer { .btn { font-weight: normal; text-align: left; font-size: 14px; line-height: 20px; margin-bottom: 10px; display: inline-block; margin-left: 0; } .cancel { text-decoration: underline; display: block; margin-right: 5px; } } } .flagging-delete-spammer, .delete-all-posts { .modal-footer .cancel { text-decoration: underline; margin-left: 10px; } } .permission-list{ list-style:none; margin: 0 0 30px; padding: 0; .name { margin-right: 20px; display: inline-block; min-width: 100px; } .permission { margin-left: 20px; } .fa-times-circle { margin-left: 5px; } li { margin-bottom: 10px; } }