Browse Source

fix fading menu in arc-green theme

the menu faded white because it missed proper styling.
only visible on viewports narrower than 1200px.
pull/5128/head
glaszig 7 years ago committed by GitHub
parent
commit
76e4f9a58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      public/less/themes/arc-green.less

5
public/less/themes/arc-green.less

@ -546,6 +546,11 @@
}
.ui.menu.new-menu {
background-color: #2a2e3a!important;
@media only screen and (max-width: 1200px) {
&:after {
background-image: linear-gradient(to right, rgba(42, 46, 42, 0), rgba(42, 46, 42, 1) 100%);
}
}
}
input {
background: #2e323e;

Loading…
Cancel
Save