mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-17 21:41:49 +03:00
db20afb809
References https://github.com/TryGhost/Ghost/issues/3079 and #21 Also changes the global modal styles
38 lines
674 B
SCSS
38 lines
674 B
SCSS
.invite-new-user {
|
|
.modal-body {
|
|
@include clearfix;
|
|
}
|
|
.form-group {
|
|
|
|
margin-bottom: 0;
|
|
padding: 0;
|
|
|
|
label {
|
|
position: static;
|
|
display: block;
|
|
text-align: left;
|
|
}
|
|
|
|
&:nth-of-type(1) {
|
|
float: left;
|
|
width: 60%;
|
|
}
|
|
&:nth-of-type(2) {
|
|
float: right;
|
|
width: 35%;
|
|
}
|
|
|
|
input,
|
|
select {
|
|
margin-top: 1px;
|
|
width: 100%;
|
|
}
|
|
} // .form-group
|
|
.button-add {
|
|
width: 100%;
|
|
padding: 0.85rem 1.9rem;
|
|
font-size: 14px;
|
|
line-height: 16px;
|
|
}
|
|
|
|
} |