Add new code new version
[sdc.git] / openecomp-ui / resources / scss / common / _base.scss
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
14 /* scrollbar styling for Google Chrome | Safari | Opera */
15 ::-webkit-scrollbar {
16   width: 8px;
17   height: 8px;
18 }
19
20 ::-webkit-scrollbar-track {
21   background-color: transparent;
22   border-radius: 10px;
23 }
24
25 ::-webkit-scrollbar-thumb {
26   border-radius: 10px;
27   background-color: $light-gray;
28   border-right: 2px solid $content-background-color;
29 }
30
31 /* Mozilla Firefox currently doesn't support scrollbar styling */
32
33 ul {
34   list-style: none;
35 }
36
37 h1, h2, h3, h4, h5, h6, ul {
38   margin: 0;
39   padding: 0;
40 }
41
42 input {
43
44   padding: 7px 10px;
45 }
46
47 fieldset {
48   border: none;
49 }
50
51 fieldset {
52   label {
53         display: inline-block;
54   }
55 }
56
57 .nav-tabs > li > a:focus,
58 .btn:focus,
59 .btn:active:focus,
60 .btn.active:focus {
61   outline: none;
62 }
63
64 .box-hover {
65   border: 1px solid $light-blue;
66 }