ros.grant.common 2.0.1000 → 2.0.1004
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/Modules/Button/Button.less +4 -0
- package/Shared/Styles/Modules/Input/Checkbox.less +1 -1
- package/Shared/Styles/Modules/Input/Switch.less +4 -2
- package/Shared/Styles/Modules/Input/inputbox.less +1 -8
- package/Shared/Styles/Modules/Table/custom-table.less +7 -0
- package/package.json +1 -1
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
.slider-checkbox {
|
|
3
3
|
font-weight: normal;
|
|
4
4
|
margin-right: 8px;
|
|
5
|
-
display: flex;
|
|
5
|
+
display: flex!important;
|
|
6
|
+
font-weight: normal!important;
|
|
6
7
|
align-items: center;
|
|
7
8
|
|
|
8
9
|
&:hover {
|
|
@@ -138,7 +139,8 @@
|
|
|
138
139
|
|
|
139
140
|
.custom-switch {
|
|
140
141
|
font-weight: normal;
|
|
141
|
-
display: flex;
|
|
142
|
+
display: flex!important;
|
|
143
|
+
font-weight: normal!important;
|
|
142
144
|
align-items: center;
|
|
143
145
|
cursor: pointer;
|
|
144
146
|
margin: 0;
|
|
@@ -52,12 +52,9 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.user_label {
|
|
55
|
-
display: flex;
|
|
55
|
+
display: flex !important;
|
|
56
56
|
align-items: center;
|
|
57
|
-
width: 100%;
|
|
58
57
|
height: 14px;
|
|
59
|
-
line-height: 1;
|
|
60
|
-
margin-bottom: 6px;
|
|
61
58
|
}
|
|
62
59
|
|
|
63
60
|
.email_label {
|
|
@@ -494,10 +491,6 @@ input.ng-invalid.ng-touched {
|
|
|
494
491
|
label {
|
|
495
492
|
margin-bottom: 0 !important;
|
|
496
493
|
}
|
|
497
|
-
|
|
498
|
-
.tooltip-trigger{
|
|
499
|
-
|
|
500
|
-
}
|
|
501
494
|
}
|
|
502
495
|
}
|
|
503
496
|
|
package/package.json
CHANGED