Browse Source

fix fading menu in arc-green theme (#5128)

* fix fading menu in arc-green theme

the menu faded white because it missed proper styling.
only visible on viewports narrower than 1200px.

* Generate minimized css

* compiled arc-green.less to apply changes from 76e4f9a58
tags/v1.7.0-dev
glaszig techknowlogick 6 years ago
parent
commit
68cfb98058
2 changed files with 6 additions and 1 deletions
  1. +1
    -1
      public/css/theme-arc-green.css
  2. +5
    -0
      public/less/themes/arc-green.less

+ 1
- 1
public/css/theme-arc-green.css
File diff suppressed because it is too large
View File


+ 5
- 0
public/less/themes/arc-green.less View File

@@ -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