ros.grant.common 2.0.1052 → 2.0.1056
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Shared/Styles/Layout/Card/Card.less +1 -1
- package/Shared/Styles/Layout/DashboardLayout/Content.less +4 -5
- package/Shared/Styles/Layout/DashboardLayout/Sidebar.less +1 -1
- package/Shared/Styles/Modules/Input/Checkbox.less +1 -0
- package/Shared/Styles/Modules/Input/inputbox.less +22 -13
- package/Shared/Styles/Modules/employee-panel.less +2 -1
- package/package.json +1 -1
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
.page-header {
|
|
16
16
|
background: #fff;
|
|
17
|
-
|
|
18
|
-
border-bottom: 1px solid var(--Stroke);
|
|
17
|
+
border-bottom: 1px solid var(--Bg1);
|
|
19
18
|
height: 72px;
|
|
20
19
|
position: fixed;
|
|
21
20
|
width: 100%;
|
|
@@ -130,7 +129,7 @@
|
|
|
130
129
|
}
|
|
131
130
|
|
|
132
131
|
.desktop-logo {
|
|
133
|
-
max-height:
|
|
132
|
+
max-height: 64px;
|
|
134
133
|
}
|
|
135
134
|
|
|
136
135
|
img {
|
|
@@ -241,7 +240,7 @@
|
|
|
241
240
|
align-items: center;
|
|
242
241
|
justify-content: space-between;
|
|
243
242
|
flex-wrap: wrap;
|
|
244
|
-
max-width:
|
|
243
|
+
max-width: 1096px;
|
|
245
244
|
// margin: 0 auto;
|
|
246
245
|
margin-bottom: 8px;
|
|
247
246
|
|
|
@@ -328,7 +327,7 @@
|
|
|
328
327
|
margin-right: auto;
|
|
329
328
|
}
|
|
330
329
|
|
|
331
|
-
.page-container .card.info-baner{
|
|
330
|
+
.page-container .card.info-baner {
|
|
332
331
|
padding-left: 0;
|
|
333
332
|
padding-right: 0;
|
|
334
333
|
justify-content: center;
|
|
@@ -145,19 +145,6 @@
|
|
|
145
145
|
}
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
&.web-link-input {
|
|
149
|
-
cursor: pointer !important;
|
|
150
|
-
|
|
151
|
-
input[name="webLink"],
|
|
152
|
-
input {
|
|
153
|
-
cursor: pointer !important;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
input:disabled {
|
|
157
|
-
pointer-events: none;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
148
|
.input-work-phone {
|
|
162
149
|
height: 50px;
|
|
163
150
|
padding-left: 45px;
|
|
@@ -397,6 +384,28 @@
|
|
|
397
384
|
border: 1px dashed var(--Green);
|
|
398
385
|
}
|
|
399
386
|
}
|
|
387
|
+
|
|
388
|
+
.web-link-input {
|
|
389
|
+
display: flex;
|
|
390
|
+
cursor: pointer !important;
|
|
391
|
+
|
|
392
|
+
input[name="webLink"],
|
|
393
|
+
input {
|
|
394
|
+
cursor: pointer !important;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
input:disabled {
|
|
398
|
+
pointer-events: none;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.link-btn {
|
|
402
|
+
z-index: 1;
|
|
403
|
+
width: 48px;
|
|
404
|
+
min-width: 48px;
|
|
405
|
+
padding: 5px;
|
|
406
|
+
margin-right: 8px;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
400
409
|
}
|
|
401
410
|
|
|
402
411
|
input.ng-invalid.ng-touched {
|
|
@@ -132,13 +132,13 @@
|
|
|
132
132
|
display: flex;
|
|
133
133
|
align-items: center;
|
|
134
134
|
justify-content: space-between;
|
|
135
|
-
margin: 0 8px;
|
|
136
135
|
padding: 8px 24px;
|
|
137
136
|
border-top: 1px solid var(--Stroke);
|
|
138
137
|
|
|
139
138
|
div {
|
|
140
139
|
display: flex;
|
|
141
140
|
align-items: center;
|
|
141
|
+
margin: 0 -8px;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
span {
|
|
@@ -239,6 +239,7 @@
|
|
|
239
239
|
box-shadow: 0px 8px 16px rgba(59, 67, 87, 0.0978475),
|
|
240
240
|
0px 0px 1px rgba(10, 31, 68, 0.08);
|
|
241
241
|
border-radius: 4px;
|
|
242
|
+
z-index: 3;
|
|
242
243
|
|
|
243
244
|
&_item {
|
|
244
245
|
min-height: 48px;
|
package/package.json
CHANGED