mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
commit
a41c17936c
4 changed files with 15 additions and 8 deletions
|
@ -38,6 +38,7 @@
|
||||||
h1 {
|
h1 {
|
||||||
margin-top: -6px;
|
margin-top: -6px;
|
||||||
margin-bottom: -21px;
|
margin-bottom: -21px;
|
||||||
|
font-feature-settings: normal;
|
||||||
|
|
||||||
.version {
|
.version {
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
|
@ -71,6 +72,7 @@
|
||||||
float: left;
|
float: left;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
font-feature-settings: normal;
|
||||||
}
|
}
|
||||||
dt {
|
dt {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
|
|
|
@ -135,7 +135,12 @@
|
||||||
|
|
||||||
// The burger to expand .global-nav menu
|
// The burger to expand .global-nav menu
|
||||||
.menu-button {
|
.menu-button {
|
||||||
@include icon($i-menu, 18px) { line-height: 44px; }
|
@include icon($i-menu, 18px) {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 22px;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
// Main settings-menu styles, apply to every item
|
// Main settings-menu styles, apply to every item
|
||||||
.settings-menu {
|
.settings-menu {
|
||||||
width: 25%;
|
width: 25%;
|
||||||
position: fixed;
|
position: absolute;
|
||||||
top: 60px;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 700;
|
z-index: 700;
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
top: 44px;
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
|
|
@ -19,21 +19,21 @@
|
||||||
|
|
||||||
.object-list-item {
|
.object-list-item {
|
||||||
|
|
||||||
@media (max-width: 500px) {
|
@media (max-width: 600px) {
|
||||||
display: block;
|
display: block;
|
||||||
padding: 15px 0;
|
padding: 15px 0;
|
||||||
@include clearfix;
|
@include clearfix;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 501px) {
|
@media (min-width: 601px) {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
|
height: 68px;
|
||||||
}
|
}
|
||||||
|
|
||||||
border-top: 1px solid $lightbrown;
|
border-top: 1px solid $lightbrown;
|
||||||
min-height: 68px;
|
|
||||||
|
|
||||||
} // .object-list-item
|
} // .object-list-item
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ a.object-list-item {
|
||||||
|
|
||||||
.object-list-item-body {
|
.object-list-item-body {
|
||||||
|
|
||||||
flex: 1;
|
flex: 1 1 auto;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
||||||
padding-left: 15px;
|
padding-left: 15px;
|
||||||
|
|
Loading…
Add table
Reference in a new issue