aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/vlanTagging/vlan-tagging.component.scss
blob: af4a7e212d08563ebbabc044c33dcf6ff58653c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
$popupHeaderHeight: 59px;

.vlan-wrapper-config * {
  font-family: OpenSans-Regular, sans-serif;
}

.body-content-jsp {
  margin-top: 35px;
  margin-left: 201px;
  margin-right: 0px;
  background-color: white;
}

:host {
  height: 100%;
}
.form-wrapper{
  min-width: 75%;
  overflow: auto;
}
button {
  border-radius: 2px;
  font-size: 14px;
  line-height: 28px;
  height: 30px;
  &.blue {
    border: #0091c8 1px solid;
    background-color: #009fdb;
    color: white;
    &:hover {
      background-color: #1ec2ff;
      border-color: #0091c8;
    }
    &:active {
      background-color: #0091c7;
      border-color: #006186;
    }
    &[disabled] {
      background-color: rgba(5, 104, 174, 0.3);
      border-color: rgba(4, 113, 168, 0.3);
    }
  }
  &.grey {
    color: #009FDB;
    background-color: #ffffff;
    border: 1px solid #009FDB;
    &:hover {
      background-color: #f8f8f8;
      border-color: #009fdb;
    }
    &:active {
      background-color: #d8d8d8;
      border-color: #5a5a5a;
    }
    &[disabled] {
      background-color: #f8f8f8;
      border-color: #d8d8d8;
      color: #cdcdcd;
    }
  }
  &.white {
    border: #009fdb 1px solid;
    background-color: white;
    color: #009fdb;
  }
}

.vlan-wrapper-config {
  /*todo: remove. this a temporary fix for the sub-interface popup not showing as a page beside the sidebar. currently showing it in full screen.*/
  /*it is necessary inside the iframe (and not just in the angularjs - old app) angular app because in Firefox the iframe content isn't effected by the iframe size */
  width: 100vw;
  height: 100vh;
  position: fixed;
  /********************/
  .head {
    line-height: $popupHeaderHeight;
    height: $popupHeaderHeight;
    display: flex;
    background-color: #F8F8F8;
    border-bottom: 1px solid #D8D8D8;
    .title {
      font-size: 18px;
      margin-left: 56px;
      color: #5A5A5A;
    }
    .btn-wrapper {
      flex: 1;
      text-align: right;
      margin-right: 15px;
      button {
        width: 120px;
        &.delete-btn {
          margin-left: 13px;
        }
      }
    }
  }
  .content-wrapper {
    display: flex;
    .form {
      overflow-y: auto;
    }
    height: calc(100% - #{$popupHeaderHeight});
    .form {
      margin-top: 48px;

    }
    .content {
      .form-wrapper {

        margin: 0 auto;
      }
    }

  }

  span.error {
    color: #cf2a2a;
  }
  .content-wrapper .content .form-wrapper .instance-field {
    .ng-invalid-pattern {
      border-color: #cf2a2a;
      color: #cf2a2a;
    }
    margin-bottom: 25px;
    label {
      color: #191919;
      font-size: 13px;
    }
    input,
    select {
      border-color: #D2D2D2;
    }
    &.lcpRegionText,
    &.productFamily {
      display: none;
    }
  }

}

.sidebar-right {
  min-width: 25%;
  background-color: #F8F8F8;
  overflow-y: auto;
  .headline {
    font-family: OpenSans-Semibold;
    font-size: 12px;
     color: #009FDB;
     padding-bottom: 6px;
     padding-top: 20px
  }
  .seperator{
    background: #D2D2D2;
    height: 1px;
    margin-bottom: 10px;
  }
}

.left-side{
  min-width: 75%;
  overflow:auto;

}

.sidebar-right service-metadata .metadata-content {
  padding-bottom: 20px;
}