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

181 lines
3.0 KiB
SCSS
Raw Normal View History

2013-09-05 15:37:07 -04:00
// base styles for every modal popup used in Discourse
2014-03-12 23:17:18 -04:00
.modal-open #main {overflow:hidden;}
2013-09-05 15:37:07 -04:00
.modal-middle-container {
2013-09-12 14:49:49 -04:00
margin-top: 10%;
2014-03-06 23:55:57 -05:00
max-width: 100%;
margin-bottom: 30px; // For iOS Safari issues
2013-09-05 15:37:07 -04:00
}
// 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: $secondary;
2013-09-05 15:37:07 -04:00
border: 1px solid rgba(0, 0, 0, 0.3);
@include border-radius-all (6px);
2014-08-06 09:31:13 -04:00
box-shadow: 0 3px 7px rgba(0,0,0, 0.3);
2013-09-05 15:37:07 -04:00
background-clip: padding-box;
}
.modal.fade {
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 0 10px 10px;
2014-09-23 02:23:29 -04:00
width: 95%;
2013-09-05 15:37:07 -04:00
}
2013-09-12 15:09:24 -04:00
// 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;
2013-09-05 15:37:07 -04:00
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
2014-11-12 03:39:32 -05:00
.modal-footer span.hint { display: none; }
2013-09-05 15:37:07 -04:00
.modal-header {
// we need tighter spacing on mobile for header
// this clearfix under the modal title h3 pushes it way down
.clearfix {
display:none;
}
2013-09-05 15:37:07 -04:00
h3 {
font-size: 1.286em;
2014-09-23 02:13:30 -04:00
padding-left: 15px;
margin-bottom: 5px;
2013-09-05 15:37:07 -04:00
}
}
2014-06-18 14:04:10 -04:00
.close {
float: right;
font-size: 1.714em;
2014-09-23 02:23:29 -04:00
padding: 10px 15px 5px 5px;
2014-06-18 14:04:10 -04:00
margin: -15px 0 0 0;
color: $primary;
}
2013-09-05 15:37:07 -04:00
#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: -10px 0 10px 20px;
color: dark-light-choose(scale-color($primary, $lightness: 30%), scale-color($secondary, $lightness: 70%));
font-size: 85%;
2013-09-05 15:37:07 -04:00
}
.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;
}
/* fixes for the new account confirm dialog on mobile */
.modal-inner-container {
margin-bottom: 20px;
}
.alert {
padding: 5px;
&.alert-success {
background-color: scale-color($success, $lightness: 90%);
color: $success;
}
}
.delete-flag-modal, .agree-flag-modal {
.modal-inner-container {
width: 300px;
}
.btn {
float: none !important;
}
}
2014-10-31 15:07:09 -04:00
#search-help {
max-width: 300px;
}
#search-help h2 {
margin: 0;
font-size: 0.857em;
2014-10-31 15:07:09 -04:00
}
#search-help p {
margin: 5px;
}