0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Hover colour for the markdown help button when an inactive tab on the tabbed editor.

Previously, hovering the markdown help button when the editor is on mobile tab mode, it disappeared as it was the same colour as the background. It's now the same colour as the inactive tab text.
This commit is contained in:
Paul Adam Davis 2014-07-01 22:56:06 +01:00
parent 87bf9a26bf
commit 4f66a52050
2 changed files with 11 additions and 1 deletions

View file

@ -121,6 +121,16 @@
}
@media (max-width: 1000px) {
&:not(.active) {
.markdown-help {
&:hover:before {
color: #fff;
}
}
}
}
// Give the tab with the .active class the highest z-index
&.active {
z-index: 200;

File diff suppressed because one or more lines are too long