diff options
author | Cirno the Strongest <1447794+CirnoT@users.noreply.github.com> | 2020-05-20 00:54:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 18:54:20 -0400 |
commit | c572ee2b61a9ed8bd8db3f12b9c44724693cef65 (patch) | |
tree | eaab631753833dd6891b6f0dd64b1ed0cafee41e /web_src | |
parent | b5851b7d1aec2996b148480a809e9a7b5ec4c42c (diff) | |
download | gitea-c572ee2b61a9ed8bd8db3f12b9c44724693cef65.tar.gz gitea-c572ee2b61a9ed8bd8db3f12b9c44724693cef65.zip |
Fix dropzone color on arc-green (#11514)
* Fix dropzone color on arc-green
* fix missing ;
* use same color as textarea and fix border
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/themes/theme-arc-green.less | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/web_src/less/themes/theme-arc-green.less b/web_src/less/themes/theme-arc-green.less index 0a468d047c..da1c9d435f 100644 --- a/web_src/less/themes/theme-arc-green.less +++ b/web_src/less/themes/theme-arc-green.less @@ -1062,7 +1062,16 @@ input { } .ui.form .dropzone { - border: 2px dashed #4c505c; + border: 2px dashed #7f98ad; + background-color: #2e323e; + + .dz-button { + color: rgba(158, 158, 158, .8); + } +} + +.ui.form .dropzone:hover .dz-button { + color: rgba(158, 158, 158, 1); } .ui.basic.red.button, |