Merge branch 'theme-select-mobile' of https://github.com/jjaffeux/discourse
This commit is contained in:
commit
ae674dcb4e
|
@ -63,7 +63,15 @@
|
|||
border-bottom: 1px solid $primary-low;
|
||||
padding-bottom: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.title {
|
||||
color: $primary-medium;
|
||||
flex-grow: 1;
|
||||
h3 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.create-actions {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
@ -129,10 +137,7 @@
|
|||
}
|
||||
}
|
||||
.show-current-style {
|
||||
padding-left: 10px;
|
||||
padding-top: 10px;
|
||||
display: inline-block;
|
||||
width: 70%;
|
||||
vertical-align: top;
|
||||
|
||||
.url {
|
||||
|
@ -200,7 +205,6 @@
|
|||
border-right: 1px solid $primary-low;
|
||||
border-bottom: 1px solid $primary-low;
|
||||
display: inline-block;
|
||||
width: 28%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
@import "desktop/queued-posts";
|
||||
@import "desktop/group";
|
||||
@import "desktop/groups";
|
||||
@import "desktop/admin_customize";
|
||||
|
||||
// Import all component-specific files
|
||||
@import "desktop/components/*";
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
.admin-customize {
|
||||
.show-current-style {
|
||||
padding-left: 10px;
|
||||
padding-top: 10px;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
.themes-list {
|
||||
width: 28%;
|
||||
}
|
||||
|
||||
.customize-themes-header {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
|
@ -24,6 +24,7 @@
|
|||
@import "mobile/group";
|
||||
@import "mobile/groups";
|
||||
@import "mobile/dashboard_next";
|
||||
@import "mobile/admin_customize";
|
||||
@import "mobile/admin_reports";
|
||||
@import "mobile/admin_report";
|
||||
@import "mobile/admin_report_table";
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
.admin-customize {
|
||||
.show-current-style {
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.themes-list {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.customize-themes-header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue