Remove unused code
[aai/sparky-fe.git] / resources / scss / _components.scss
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 @import "components/validationForm";
23 @import "components/notifications";
24 @import "components/dropdownMultiSelect";
25 @import "components/inlineMessage";
26 @import "components/titledComponent";
27 @import "components/containerPanel";
28 @import "components/filterBar";
29 @import "components/launchExternalResource/launchExternalResource";
30
31 %noselect {
32   -webkit-touch-callout: none;
33   -webkit-user-select: none;
34   -moz-user-select: none;
35   -ms-user-select: none;
36   user-select: none;
37 }
38
39 .clickable {
40   cursor: pointer;
41 }
42
43 .no-padding {
44   padding: 0;
45 }
46
47 .next-to-icon-label {
48   $margin: 10px;
49   margin-left: $margin;
50   &.right {
51     margin-left: 0;
52     margin-right: $margin;
53   }
54 }
55
56 .search-wrapper {
57   display: flex;
58   .search-input-control {
59     flex: 1 1;
60     margin: 0;
61   }
62
63 .search-icon {
64     position: relative;
65     left: -20px;
66     align-self: center;
67     width: 0;
68     color: $background-color2;
69   }
70 }
71
72