mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
Stop Markdown help icon from moving
No issue The markdown help icon would move when `<body>` gets a class of `editor`. The class wasn't needed, so it's gone from the selector now.
This commit is contained in:
parent
944daef01c
commit
203132dfa1
@ -49,8 +49,7 @@
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
} // .entry-title
|
||||
|
||||
.entry-container {
|
||||
position: relative;
|
||||
@ -62,7 +61,8 @@
|
||||
.entry-preview { right: 0; border-left: $lightbrown 2px solid; }
|
||||
|
||||
// The visual styles for both panels
|
||||
.entry-markdown, .entry-preview {
|
||||
.entry-markdown,
|
||||
.entry-preview {
|
||||
width: 50%;
|
||||
padding: 15px;
|
||||
position: absolute;
|
||||
@ -115,19 +115,6 @@
|
||||
color: $brown;
|
||||
}
|
||||
|
||||
.markdown-help {
|
||||
position: relative;
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
@include icon($i-question, '', lighten($brown, 15%));
|
||||
float: right;
|
||||
padding: 5px;
|
||||
|
||||
&:hover {
|
||||
@include icon($i-question, '', $brown);
|
||||
}
|
||||
}
|
||||
|
||||
.entry-word-count {
|
||||
float: right;
|
||||
}
|
||||
@ -167,7 +154,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
} // .entry-markdown, .entry-preview
|
||||
|
||||
.entry-markdown-content {
|
||||
|
||||
@ -250,7 +237,7 @@
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
}
|
||||
} // .entry-markdown-content
|
||||
|
||||
.entry-preview {
|
||||
// Align the tab of entry-preview on the right
|
||||
@ -284,7 +271,7 @@
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
} // .entry-preview
|
||||
|
||||
// Special case, when scrolling, add shadows to content headers.
|
||||
.scrolling {
|
||||
@ -307,10 +294,23 @@
|
||||
box-shadow: 0 5px 5px rgba(0,0,0,0.05) inset;
|
||||
}
|
||||
}
|
||||
}
|
||||
} // .scrolling
|
||||
|
||||
} // .editor
|
||||
|
||||
.markdown-help {
|
||||
position: relative;
|
||||
top: -5px;
|
||||
right: -5px;
|
||||
@include icon($i-question, '', lighten($brown, 15%));
|
||||
float: right;
|
||||
padding: 5px;
|
||||
|
||||
&:hover {
|
||||
@include icon($i-question, '', $brown);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Post Preview Content
|
||||
|
4
ghost/admin/docs/dist/css/ghost-ui.min.css
vendored
4
ghost/admin/docs/dist/css/ghost-ui.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user