mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 14:20:47 +08:00
9eb74fdc8a
The textarea in the CustomFooterModal was much larger than in the other appearance page modals, and did not use a monospaced font. Turns out the other 2 were explicitly specified in the less. This commit adds a class that can be applied to all these modals for simpler maintenance. Fixes https://github.com/flarum/core/issues/2865
46 lines
604 B
Plaintext
46 lines
604 B
Plaintext
.AppearancePage {
|
|
padding-bottom: 30px;
|
|
|
|
@media @desktop-up {
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
fieldset {
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|
|
.AppearancePage-colors-input {
|
|
overflow: hidden;
|
|
|
|
.Form-group {
|
|
display: inline-block;
|
|
}
|
|
|
|
.Form-group:last-child {
|
|
margin-bottom: 24px !important;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
input {
|
|
float: left;
|
|
|
|
&:first-child {
|
|
margin-right: 2%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.AppearancePage-colors .Checkbox {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.TextareaCodeModal {
|
|
textarea {
|
|
font-family: monospace;
|
|
line-height: 1;
|
|
}
|
|
}
|