|
2 | 2 | // Scrollbars for main flex containers
|
3 | 3 | // ------------------------------------------------------
|
4 | 4 |
|
5 |
| -::-webkit-scrollbar { |
6 |
| - height: 10px; |
7 |
| - overflow: visible; |
8 |
| - width: @scrollbar-width; |
9 |
| -} |
10 |
| - |
11 |
| -::-webkit-scrollbar-corner { |
12 |
| - background: transparent; |
13 |
| -} |
14 |
| - |
15 |
| -::-webkit-scrollbar-thumb { |
16 |
| - background-clip: padding-box; |
17 |
| - background-color: @scrollbar-thumb; |
18 |
| - border: solid transparent; |
19 |
| - border-width: 1px 1px 1px 1px; |
20 |
| - box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07); |
21 |
| - max-height: 60px; |
22 |
| - min-height: 28px; |
23 |
| - padding: 100px 0 0; |
24 |
| - &:active, |
25 |
| - &:hover { |
26 |
| - background-color: @scrollbar-thumb-hover; |
| 5 | +:not(.ios) { |
| 6 | + ::-webkit-scrollbar { |
| 7 | + height: 10px; |
| 8 | + overflow: visible; |
| 9 | + width: @scrollbar-width; |
27 | 10 | }
|
28 |
| -} |
29 | 11 |
|
30 |
| -::-webkit-scrollbar-track { |
31 |
| - background-clip:padding-box; |
32 |
| - background-color: @scrollbar-track; |
33 |
| -} |
| 12 | + ::-webkit-scrollbar-corner { |
| 13 | + background: transparent; |
| 14 | + } |
34 | 15 |
|
35 |
| -.chromeless .middle, |
36 |
| -.landing, |
37 |
| -.landing-side-bar, |
38 |
| -.log-view .log-view-output, |
39 |
| -.project-bar .dropdown-menu { |
40 |
| - &::-webkit-scrollbar-thumb { |
41 |
| - background-color: @scrollbar-thumb-inverse; |
42 |
| - box-shadow: inset 1px 1px 0 rgba(255,255,255,.1),inset 0 -1px 0 rgba(255,255,255,.07); |
| 16 | + ::-webkit-scrollbar-thumb { |
| 17 | + background-clip: padding-box; |
| 18 | + background-color: @scrollbar-thumb; |
| 19 | + border: solid transparent; |
| 20 | + border-width: 1px 1px 1px 1px; |
| 21 | + box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07); |
| 22 | + max-height: 60px; |
| 23 | + min-height: 28px; |
| 24 | + padding: 100px 0 0; |
43 | 25 | &:active,
|
44 | 26 | &:hover {
|
45 |
| - background-color: @scrollbar-thumb-hover-inverse; |
| 27 | + background-color: @scrollbar-thumb-hover; |
46 | 28 | }
|
47 | 29 | }
|
48 |
| -} |
49 | 30 |
|
50 |
| -.landing::-webkit-scrollbar-track { |
51 |
| - background-color: @scrollbar-track-landing; |
52 |
| -} |
| 31 | + ::-webkit-scrollbar-track { |
| 32 | + background-clip:padding-box; |
| 33 | + background-color: @scrollbar-track; |
| 34 | + } |
53 | 35 |
|
54 |
| -.landing-side-bar::-webkit-scrollbar-track { |
55 |
| - background-color: @scrollbar-track-landing-side-bar; |
56 |
| -} |
| 36 | + .chromeless .middle, |
| 37 | + .landing, |
| 38 | + .landing-side-bar, |
| 39 | + .log-view .log-view-output, |
| 40 | + .project-bar .dropdown-menu { |
| 41 | + &::-webkit-scrollbar-thumb { |
| 42 | + background-color: @scrollbar-thumb-inverse; |
| 43 | + box-shadow: inset 1px 1px 0 rgba(255,255,255,.1),inset 0 -1px 0 rgba(255,255,255,.07); |
| 44 | + &:active, |
| 45 | + &:hover { |
| 46 | + background-color: @scrollbar-thumb-hover-inverse; |
| 47 | + } |
| 48 | + } |
| 49 | + } |
57 | 50 |
|
58 |
| -.project-bar ::-webkit-scrollbar-track { |
59 |
| - background-color: @scrollbar-track-inverse; |
| 51 | + .landing::-webkit-scrollbar-track { |
| 52 | + background-color: @scrollbar-track-landing; |
| 53 | + } |
| 54 | + |
| 55 | + .landing-side-bar::-webkit-scrollbar-track { |
| 56 | + background-color: @scrollbar-track-landing-side-bar; |
| 57 | + } |
| 58 | + |
| 59 | + .project-bar ::-webkit-scrollbar-track { |
| 60 | + background-color: @scrollbar-track-inverse; |
| 61 | + } |
60 | 62 | }
|
0 commit comments