mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 03:14:03 +03:00
8e7b8f8bfa
- Uses Node Bourbon https://www.npmjs.org/package/node-bourbon - Produces source maps - Removed all ruby dependencie History: - Remove bourbon from package and cleanup grunt tasks - Un-bourbon keyframe animations - Un-bourbon transitions - Un-bourbon box-sizing - Un-bourbon font-feature-settings - Import bourbon clearfix mixin - Un-bourbon linear gradients - Un-bourbon input types - Un-bourbon positions - Un-bourbon transforms - Un-bourbon notification animations - Un-bourbon uploader box-sizing - Un-bourbon border-radius - Un-bourbon splitbutton transitions - Add triangle mixin - Un-bourbon default container positioning - Un-bourbon flexbox properties - Fix triangle mixin - It now has the same output as the Bourbon mixin - Add autoprefixer - Correct global default font size - Remove unwanted prefixes - Because, y'know, autoprefixer - Output from node sass migration - Includes all the files we usually have, plus source maps
102 lines
1.6 KiB
SCSS
102 lines
1.6 KiB
SCSS
//
|
|
// Post Settings Menu
|
|
// --------------------------------------------------
|
|
|
|
// Wrapper
|
|
.post-settings-menu {
|
|
background: $lightestgrey;
|
|
width: 100%;
|
|
max-width: 350px;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
}
|
|
.subview .post-settings-header {
|
|
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;
|
|
}
|