blob: b9cfd7906abe6a2417658ea50e4604d09f14c551 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001html {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +03002 font-size: 100%;
3 height: 100%;
Michael Landoefa037d2017-02-19 12:57:33 +02004}
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 {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030019 width: $scrollbar-width;
20 height: $scrollbar-height;
Michael Landoefa037d2017-02-19 12:57:33 +020021}
22
23::-webkit-scrollbar-track {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030024 background-color: transparent;
25 border-radius: 10px;
Michael Landoefa037d2017-02-19 12:57:33 +020026}
27
28::-webkit-scrollbar-thumb {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030029 border-radius: 10px;
30 background-color: $light-gray;
31 border-right: 2px solid $content-background-color;
Michael Landoefa037d2017-02-19 12:57:33 +020032}
33
34/* Mozilla Firefox currently doesn't support scrollbar styling */
35
36ul {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030037 list-style: none;
Michael Landoefa037d2017-02-19 12:57:33 +020038}
39
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030040h1,
41h2,
42h3,
43h4,
44h5,
45h6,
46ul {
47 margin: 0;
48 padding: 0;
Michael Landoefa037d2017-02-19 12:57:33 +020049}
50
51input {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030052 padding: 7px 10px;
Michael Landoefa037d2017-02-19 12:57:33 +020053}
54
AviZi280f8012017-06-09 02:39:56 +030055.disabled {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030056 opacity: 0.7 !important;
AviZi280f8012017-06-09 02:39:56 +030057}
58
Michael Landoefa037d2017-02-19 12:57:33 +020059fieldset {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030060 border: none;
Michael Landoefa037d2017-02-19 12:57:33 +020061}
62
63fieldset {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030064 label {
65 display: inline-block;
66 }
Michael Landoefa037d2017-02-19 12:57:33 +020067}
68
69.nav-tabs > li > a:focus,
70.btn:focus,
71.btn:active:focus,
72.btn.active:focus {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030073 outline: none;
Michael Landoefa037d2017-02-19 12:57:33 +020074}
75
76.box-hover {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030077 border: 1px solid $light-blue;
Michael Landoefa037d2017-02-19 12:57:33 +020078}
svishnevc4e4b522018-03-08 15:50:44 +020079/* monkey patch */
80.sdc-button.sdc-button__link.sdc-button.sdc-button__link {
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030081 width: initial;
82 &:focus {
83 border: none;
84 }
Ariel Kenan51157f92018-03-07 12:30:06 +020085}