diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-05-29 02:36:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-05-29 02:36:57 +0900 |
| commit | 12b13e974c377d02bb8d41840fd43faba04074f1 (patch) | |
| tree | bf203a9515778b059d5bdc82f235f29bf9c3765c /src | |
| parent | Fix bug (diff) | |
| download | sharkey-12b13e974c377d02bb8d41840fd43faba04074f1.tar.gz sharkey-12b13e974c377d02bb8d41840fd43faba04074f1.tar.bz2 sharkey-12b13e974c377d02bb8d41840fd43faba04074f1.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/style.styl | 51 |
1 files changed, 15 insertions, 36 deletions
diff --git a/src/client/app/desktop/style.styl b/src/client/app/desktop/style.styl index ea48fbee3d..f2a60955fd 100644 --- a/src/client/app/desktop/style.styl +++ b/src/client/app/desktop/style.styl @@ -6,43 +6,26 @@ *::input-placeholder color #D8CBC5 -* - &:focus - outline none +*:focus + outline none - &::scrollbar - width 5px - background transparent - - &:horizontal - height 5px - - &::scrollbar-button - width 0 - height 0 - background rgba(0, 0, 0, 0.2) - - &::scrollbar-piece - background transparent - - &:start - background transparent - - &::scrollbar-thumb - background rgba(0, 0, 0, 0.2) +html + height 100% + background #f7f7f7 - &:hover - background rgba(0, 0, 0, 0.4) + &, * + &::-webkit-scrollbar + width 6px + height 6px - &:active - background $theme-color + &::-webkit-scrollbar-thumb + background rgba(0, 0, 0, 0.2) - &::scrollbar-corner - background rgba(0, 0, 0, 0.2) + &:hover + background rgba(0, 0, 0, 0.4) -html - height 100% - background #f7f7f7 + &:active + background $theme-color &[data-darkmode] background #191B22 @@ -51,10 +34,6 @@ html &::-webkit-scrollbar-track background-color #282C37 - &::-webkit-scrollbar - width 6px - height 6px - &::-webkit-scrollbar-thumb background-color #454954 |