mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
c65b6c3736
Reference #3932 Take this, and make it work.
99 lines
1.6 KiB
SCSS
99 lines
1.6 KiB
SCSS
//
|
|
// Post Settings Menu
|
|
// --------------------------------------------------
|
|
|
|
// Wrapper
|
|
.post-settings-menu {}
|
|
|
|
// Header
|
|
.post-settings-header {
|
|
position: relative;
|
|
padding: 19px 24px;
|
|
h4 {
|
|
font-weight: normal;
|
|
font-size: 1.6rem;
|
|
line-height: 1.375;
|
|
margin: 0;
|
|
}
|
|
.close {
|
|
right: 0;
|
|
&:before {
|
|
right: 22px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.post-settings-header.subview {
|
|
h4 {
|
|
text-align: center;
|
|
}
|
|
.back {
|
|
left: 0;
|
|
&:before {
|
|
left: 19px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.post-settings-header-action {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 7px;
|
|
width: 45px;
|
|
padding: 0;
|
|
&:before {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
color: $midbrown;
|
|
font-size: 2rem;
|
|
}
|
|
&:hover {
|
|
&:before {
|
|
color: $midgrey;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Content
|
|
.post-settings-content {
|
|
padding: 0 24px 24px;
|
|
|
|
.image-uploader {
|
|
padding-top: 35px;
|
|
padding-bottom: 35px;
|
|
margin: 0 0 1.5rem 0;
|
|
}
|
|
|
|
.form-group {
|
|
// margin-bottom: 1.5rem;
|
|
} // .form-group
|
|
|
|
textarea {
|
|
height: 108px;
|
|
}
|
|
|
|
.nav-list {
|
|
margin-top: 3rem;
|
|
}
|
|
}
|
|
|
|
.seo-preview {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.46;
|
|
}
|
|
.seo-preview-title {
|
|
font-size: 1.6rem;
|
|
text-decoration: underline;
|
|
color: #1E0FBE;
|
|
}
|
|
.seo-preview-link {
|
|
font-size: 1.3rem;
|
|
color: #006621;
|
|
margin: 2px 0;
|
|
}
|
|
.seo-preview-description {
|
|
font-size: 1.3rem;
|
|
color: #545454;
|
|
}
|