Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | html { |
| 2 | font-size: 100%; |
| 3 | height: 100%; |
| 4 | } |
| 5 | |
| 6 | body { |
| 7 | /* scrollbar styling for Internet Explorer */ |
| 8 | scrollbar-face-color: $scroll-bar-color; |
| 9 | scrollbar-track-color: $scroll-bar-color; |
| 10 | height: 100%; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 11 | } |
| 12 | |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 13 | $scrollbar-width: 8px; |
| 14 | $scrollbar-height: 8px; |
| 15 | /* firefox */ |
| 16 | $ff-scrollbar-width: 17px; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 17 | /* scrollbar styling for Google Chrome | Safari | Opera */ |
| 18 | ::-webkit-scrollbar { |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 19 | width: $scrollbar-width; |
| 20 | height: $scrollbar-height; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | ::-webkit-scrollbar-track { |
| 24 | background-color: transparent; |
| 25 | border-radius: 10px; |
| 26 | } |
| 27 | |
| 28 | ::-webkit-scrollbar-thumb { |
| 29 | border-radius: 10px; |
| 30 | background-color: $light-gray; |
| 31 | border-right: 2px solid $content-background-color; |
| 32 | } |
| 33 | |
| 34 | /* Mozilla Firefox currently doesn't support scrollbar styling */ |
| 35 | |
| 36 | ul { |
| 37 | list-style: none; |
| 38 | } |
| 39 | |
| 40 | h1, h2, h3, h4, h5, h6, ul { |
| 41 | margin: 0; |
| 42 | padding: 0; |
| 43 | } |
| 44 | |
| 45 | input { |
| 46 | |
| 47 | padding: 7px 10px; |
| 48 | } |
| 49 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 50 | .disabled { |
| 51 | opacity: 0.7 !important; |
| 52 | } |
| 53 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 54 | fieldset { |
| 55 | border: none; |
| 56 | } |
| 57 | |
| 58 | fieldset { |
| 59 | label { |
| 60 | display: inline-block; |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | .nav-tabs > li > a:focus, |
| 65 | .btn:focus, |
| 66 | .btn:active:focus, |
| 67 | .btn.active:focus { |
| 68 | outline: none; |
| 69 | } |
| 70 | |
| 71 | .box-hover { |
| 72 | border: 1px solid $light-blue; |
| 73 | } |
svishnev | c4e4b52 | 2018-03-08 15:50:44 +0200 | [diff] [blame] | 74 | /* monkey patch */ |
| 75 | .sdc-button.sdc-button__link.sdc-button.sdc-button__link { |
| 76 | width: initial; |
| 77 | &:focus { |
| 78 | border: none; |
Ariel Kenan | 51157f9 | 2018-03-07 12:30:06 +0200 | [diff] [blame] | 79 | } |
| 80 | } |