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%; |
| 11 | @extend %noselect; |
| 12 | } |
| 13 | |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 14 | $scrollbar-width: 8px; |
| 15 | $scrollbar-height: 8px; |
| 16 | /* firefox */ |
| 17 | $ff-scrollbar-width: 17px; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 18 | /* scrollbar styling for Google Chrome | Safari | Opera */ |
| 19 | ::-webkit-scrollbar { |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 20 | width: $scrollbar-width; |
| 21 | height: $scrollbar-height; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | ::-webkit-scrollbar-track { |
| 25 | background-color: transparent; |
| 26 | border-radius: 10px; |
| 27 | } |
| 28 | |
| 29 | ::-webkit-scrollbar-thumb { |
| 30 | border-radius: 10px; |
| 31 | background-color: $light-gray; |
| 32 | border-right: 2px solid $content-background-color; |
| 33 | } |
| 34 | |
| 35 | /* Mozilla Firefox currently doesn't support scrollbar styling */ |
| 36 | |
| 37 | ul { |
| 38 | list-style: none; |
| 39 | } |
| 40 | |
| 41 | h1, h2, h3, h4, h5, h6, ul { |
| 42 | margin: 0; |
| 43 | padding: 0; |
| 44 | } |
| 45 | |
| 46 | input { |
| 47 | |
| 48 | padding: 7px 10px; |
| 49 | } |
| 50 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 51 | .disabled { |
| 52 | opacity: 0.7 !important; |
| 53 | } |
| 54 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 55 | fieldset { |
| 56 | border: none; |
| 57 | } |
| 58 | |
| 59 | fieldset { |
| 60 | label { |
| 61 | display: inline-block; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | .nav-tabs > li > a:focus, |
| 66 | .btn:focus, |
| 67 | .btn:active:focus, |
| 68 | .btn.active:focus { |
| 69 | outline: none; |
| 70 | } |
| 71 | |
| 72 | .box-hover { |
| 73 | border: 1px solid $light-blue; |
| 74 | } |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 75 | |
Ariel Kenan | 51157f9 | 2018-03-07 12:30:06 +0200 | [diff] [blame] | 76 | /* Monkey patch for SDC-UI version clash */ |
| 77 | .sdc-radio { |
| 78 | .sdc-radio__input { |
| 79 | opacity: 1; |
| 80 | z-index: initial; |
| 81 | padding-right: 5px; |
| 82 | margin-right: 0; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 83 | |
Ariel Kenan | 51157f9 | 2018-03-07 12:30:06 +0200 | [diff] [blame] | 84 | &:before { |
| 85 | left: 0; |
| 86 | top: 0; |
| 87 | padding-right: 0; |
| 88 | margin-right: 0; |
| 89 | } |
| 90 | } |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 91 | |
Ariel Kenan | 51157f9 | 2018-03-07 12:30:06 +0200 | [diff] [blame] | 92 | .sdc-radio__label { |
| 93 | margin-left: 14px; |
| 94 | padding-left: 0; |
| 95 | cursor: default; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 96 | |
Ariel Kenan | 51157f9 | 2018-03-07 12:30:06 +0200 | [diff] [blame] | 97 | &:before { |
| 98 | display: none; |
| 99 | } |
| 100 | } |
| 101 | } |