Add collaboration feature
[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-width: 8px;
15 $scrollbar-height: 8px;
16 /* firefox */
17 $ff-scrollbar-width: 17px;
18 /* scrollbar styling for Google Chrome | Safari | Opera */
19 ::-webkit-scrollbar {
20   width: $scrollbar-width;
21   height: $scrollbar-height;
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
51 .disabled {
52   opacity: 0.7 !important;
53 }
54
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 }
75
76
77
78