blob: e4aa23f876c83b158a0f9c942ef248110b02a9c3 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001html {
2 font-size: 100%;
3 height: 100%;
4}
5
6body {
7 /* scrollbar styling for Internet Explorer */
8 scrollbar-face-color: $scroll-bar-color;
9 scrollbar-track-color: $scroll-bar-color;
10 height: 100%;
Michael Landoefa037d2017-02-19 12:57:33 +020011}
12
talig8e9c0652017-12-20 14:30:43 +020013$scrollbar-width: 8px;
14$scrollbar-height: 8px;
15/* firefox */
16$ff-scrollbar-width: 17px;
Michael Landoefa037d2017-02-19 12:57:33 +020017/* scrollbar styling for Google Chrome | Safari | Opera */
18::-webkit-scrollbar {
talig8e9c0652017-12-20 14:30:43 +020019 width: $scrollbar-width;
20 height: $scrollbar-height;
Michael Landoefa037d2017-02-19 12:57:33 +020021}
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
36ul {
37 list-style: none;
38}
39
40h1, h2, h3, h4, h5, h6, ul {
41 margin: 0;
42 padding: 0;
43}
44
45input {
46
47 padding: 7px 10px;
48}
49
AviZi280f8012017-06-09 02:39:56 +030050.disabled {
51 opacity: 0.7 !important;
52}
53
Michael Landoefa037d2017-02-19 12:57:33 +020054fieldset {
55 border: none;
56}
57
58fieldset {
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}
svishnevc4e4b522018-03-08 15:50:44 +020074/* monkey patch */
75.sdc-button.sdc-button__link.sdc-button.sdc-button__link {
76 width: initial;
77 &:focus {
78 border: none;
Ariel Kenan51157f92018-03-07 12:30:06 +020079 }
80}