Initial coomit for AAI-UI(sparky-fe)
[aai/sparky-fe.git] / resources / scss / common / _base.scss
1 /*
2 * ============LICENSE_START=======================================================
3 * SPARKY (AAI UI service)
4 * ================================================================================
5 * Copyright © 2017 AT&T Intellectual Property.
6 * Copyright © 2017 Amdocs
7 * All rights reserved.
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 *
22 * ECOMP and OpenECOMP are trademarks
23 * and service marks of AT&T Intellectual Property.
24 */
25
26 html {
27   font-size: 100%;
28   height: 100%;
29 }
30
31 body {
32   /* scrollbar styling for Internet Explorer */
33   scrollbar-face-color: $scroll-bar-color;
34   scrollbar-track-color: $scroll-bar-color;
35   height: 100%;
36   min-width: 1280px;
37   overflow-y: auto;
38   //@extend %noselect;
39 }
40
41 /* scrollbar styling for Google Chrome | Safari | Opera */
42 ::-webkit-scrollbar {
43   width: 8px;
44 }
45
46 ::-webkit-scrollbar-track {
47   background-color: transparent;
48   border-radius: 10px;
49 }
50
51 ::-webkit-scrollbar-thumb {
52   border-radius: 10px;
53   border: 1px solid $scroll-bar-color;
54   background-color: transparent;
55 }
56
57 /* Mozilla Firefox currently doesn't support scrollbar styling */
58
59 ul {
60   list-style: none;
61 }
62
63 h1, h2, h3, h4, h5, h6, ul {
64   margin: 0;
65   padding: 0;
66 }
67
68 input {
69
70   padding: 7px 10px;
71 }
72
73 fieldset {
74   border: none;
75 }
76
77 fieldset {
78   label {
79         display: inline-block;
80   }
81 }
82
83 .nav-tabs > li > a:focus,
84 .btn:focus,
85 .btn:active:focus,
86 .btn.active:focus {
87   outline: none;
88 }