1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 07:57:46 +02:00

Rough implementation of appearance settings

This commit is contained in:
Toby Zerner
2015-08-03 14:35:51 +09:30
parent 299bfc0e0a
commit 0657bf2d27
7 changed files with 173 additions and 8 deletions

View File

@@ -0,0 +1,34 @@
.AppearancePage {
@media @desktop-up {
.container {
max-width: 600px;
padding: 30px;
margin: 0;
}
}
fieldset {
margin-bottom: 40px;
}
}
.AppearancePage-colors-input {
overflow: hidden;
input {
width: 49%;
float: left;
&:first-child {
margin-right: 2%;
}
}
}
.AppearancePage-colors-input,
.AppearancePage-colors .Checkbox {
margin-bottom: 15px;
}
.EditCustomCssModal textarea {
font-family: monospace;
line-height: 1;
}

View File

@@ -6,3 +6,4 @@
@import "PermissionsPage.less";
@import "EditGroupModal.less";
@import "ExtensionsPage.less";
@import "AppearancePage.less";