Ghost/ghost/admin/app/styles/components/dropdowns.css
Peter Zimon c51bce7358 🎨 Updated admin area design and usability (#1232)
refs. https://github.com/TryGhost/Team/issues/205

Major update to Ghost Admin UI including:
- improved general consistency (typography, colors and contrast, UI components, icons)
- new design for post and pages lists, improved discoverability of filters 
- search moved to modal
- account menu is decoupled from ghost logo
- further usability fixes
2019-06-18 11:47:20 +01:00

156 lines
3.2 KiB
CSS

/* Dropdowns
/* ---------------------------------------------------------- */
.ember-basic-dropdown-content {
z-index: 1100;
}
.dropdown {
position: relative;
z-index: 1100;
}
.dropdown-toggle:focus {
outline: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
float: left;
margin: 2px 0 0;
padding: 6px;
min-width: 200px;
background-color: #fff;
background-clip: padding-box;
border-radius: 5px;
box-shadow: 0 0 0 1px rgba(0,0,0,.04), 0 7px 20px -5px rgba(0,0,0,.15);
list-style: none;
text-align: left;
text-transform: none;
font-size: 1.4rem;
font-weight: normal;
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
overflow: hidden;
margin: 8px 0;
height: 1px;
background: color-mod(#dfe1e3 lightness(+5%));
}
.dropdown-menu li {
margin: 0;
}
.dropdown-menu > li > a,
.dropdown-menu > li > button {
display: flex;
align-items: center;
clear: both;
padding: 6px 10px;
width: 100%;
color: var(--middarkgrey);
text-align: left;
white-space: nowrap;
font-size: 1.3rem;
line-height: 1em;
font-weight: normal;
transition: none;
}
.dropdown-menu svg {
margin-right: 10px;
height: 14px;
width: 14px;
line-height: 1em;
fill: color-mod(var(--darkgrey) lightness(+20%));
}
@media (max-width: 500px) {
.dropdown-menu > li > a,
.dropdown-menu > li > button {
padding: 7px 8px;
font-size: 1.5rem;
}
.dropdown-menu svg {
height: 16px;
}
}
/* States
/* ---------------------------------------------------------- */
/* Hover/Focus */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > button:hover,
.dropdown-menu > li > button:focus {
background: color-mod(var(--whitegrey) a(60%) s(-12%));
color: var(--darkgrey);
text-decoration: none;
}
.dropdown-menu > li > a:hover svg,
.dropdown-menu > li > a:focus svg,
.dropdown-menu > li > button:hover svg,
.dropdown-menu > li > button:focus svg {
fill: var(--darkgrey);
}
/* Active */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > button,
.dropdown-menu > .active > button:hover,
.dropdown-menu > .active > button:focus {
outline: 0;
background-color: var(--blue);
color: #fff;
text-decoration: none;
}
/* Disabled */
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > button,
.dropdown-menu > .disabled > button:hover,
.dropdown-menu > .disabled > button:focus {
color: var(--midgrey);
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > button:hover,
.dropdown-menu > .disabled > button:focus {
background-color: transparent;
background-image: none;
text-decoration: none;
cursor: not-allowed;
}
/* Open / Close
/* ---------------------------------------------------------- */
.open > .dropdown-menu {
display: block;
}
.open > a {
outline: 0;
}
.closed > .dropdown-menu {
display: none;
}