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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
1.6 KiB
SCSS
Raw Normal View History

// 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 {
-webkit-animation: fade 0.25s;
animation: fade 0.25s;
2013-02-05 14:16:51 -05:00
}
.modal-footer .btn.right {
float: right;
}
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 11:42:20 -05:00
}
2014-06-18 14:04:10 -04:00
}
2019-01-10 21:50:00 -05:00
.close {
2018-01-12 17:27:38 -05:00
font-size: $font-up-3;
2014-06-18 14:04:10 -04:00
text-decoration: none;
2019-01-10 21:50:00 -05:00
&:visited {
color: var(--primary-high);
2019-01-10 21:50:00 -05:00
}
2014-06-18 14:04:10 -04:00
cursor: pointer;
&:hover {
color: var(--primary);
2013-02-05 14:16:51 -05:00
}
}
.modal {
2017-10-19 15:51:08 -04:00
.category-chooser {
width: 50%;
}
.modal-body.insert-link {
input {
min-width: 450px;
}
}
2013-02-05 14:16:51 -05:00
}
.choose-topic-modal {
.modal-body {
position: relative;
height: 350px;
}
#choosing-topic {
// prevents content from moving when user selects different move options 525px
// is the same width we set on category edit modal
width: 525px;
p {
margin-top: 0;
}
.radios {
margin-bottom: 10px;
display: flex;
flex-direction: row;
.radio-label {
display: inline-block;
padding-right: 15px;
}
}
button {
margin-top: 10px;
display: block;
width: 300px;
}
form {
width: 95%;
margin-top: 20px;
.participant-selector {
width: 100%;
}
div.ac-wrap {
width: 100%;
margin-bottom: 9px;
}
}
}
}
.change-post-notice-modal {
.modal-body {
min-width: 450px;
}
}