diff options
author | glaszig <glaszig@gmail.com> | 2018-10-20 22:31:27 +0200 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-10-20 16:31:27 -0400 |
commit | 2313121354ae2c02c73d654e9d6827904f75b469 (patch) | |
tree | 8c1b253e70ae1715500e25e40f43440df7c4e5e5 /public/less | |
parent | 22274464f491984f5ea6cba98c40c4fad30a157c (diff) | |
download | gitea-2313121354ae2c02c73d654e9d6827904f75b469.tar.gz gitea-2313121354ae2c02c73d654e9d6827904f75b469.zip |
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
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/themes/arc-green.less | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/public/less/themes/arc-green.less b/public/less/themes/arc-green.less index c70c6d2f7a..7e2493f85f 100644 --- a/public/less/themes/arc-green.less +++ b/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; |