mastodon/app/javascript/glitch/components/local_settings/navigation/item/style.scss

28 lines
545 B
SCSS
Raw Normal View History

2017-09-26 02:24:32 +00:00
@import 'styles/variables';
2017-07-20 02:54:02 +00:00
.glitch.local-settings__navigation__item {
display: block;
padding: 15px 20px;
color: inherit;
background: $primary-text-color;
border-bottom: 1px $ui-primary-color solid;
cursor: pointer;
text-decoration: none;
outline: none;
transition: background .3s;
&:hover {
background: $ui-secondary-color;
}
&.active {
background: $ui-highlight-color;
color: $primary-text-color;
}
&.close, &.close:hover {
background: $error-value-color;
color: $primary-text-color;
}
}