ros.grant.common 2.0.1066 → 2.0.1067
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.
|
@@ -144,6 +144,22 @@ html {
|
|
|
144
144
|
text-align: justify !important;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.nowrap {
|
|
148
|
+
white-space: nowrap;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.bold {
|
|
152
|
+
font-weight: bold !important;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.text-bold {
|
|
156
|
+
font-weight: bold !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.text-normal {
|
|
160
|
+
font-weight: normal !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
147
163
|
.text-nowrap {
|
|
148
164
|
white-space: nowrap !important;
|
|
149
165
|
}
|
|
@@ -56,10 +56,6 @@ span {
|
|
|
56
56
|
word-break: break-word;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
.nowrap {
|
|
60
|
-
white-space: nowrap;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
59
|
p {
|
|
64
60
|
padding: 0;
|
|
65
61
|
margin: 0;
|
|
@@ -143,10 +139,6 @@ h6 {
|
|
|
143
139
|
font-size: 12px;
|
|
144
140
|
}
|
|
145
141
|
|
|
146
|
-
.bold {
|
|
147
|
-
font-weight: bold;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
142
|
.color-accent {
|
|
151
143
|
color: var(--Main2) !important;
|
|
152
144
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
input {
|
|
8
8
|
font-size: 14px;
|
|
9
9
|
border-radius: 4px;
|
|
10
|
-
padding:
|
|
10
|
+
padding: 8px 16px;
|
|
11
11
|
border: 1px solid var(--Stroke);
|
|
12
12
|
width: 100%;
|
|
13
13
|
height: 48px;
|
|
@@ -43,13 +43,92 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
46
|
+
&.inputbox-md {
|
|
47
|
+
input {
|
|
48
|
+
font-size: 14px;
|
|
49
|
+
padding: 8px 12px;
|
|
50
|
+
height: 40px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
textarea {
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
padding: 8px 12px;
|
|
56
|
+
min-height: 40px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ng-select {
|
|
60
|
+
.ng-select-container {
|
|
61
|
+
min-height: 40px !important;
|
|
62
|
+
|
|
63
|
+
.ng-value-container {
|
|
64
|
+
padding-left: 12px !important;
|
|
65
|
+
|
|
66
|
+
.ng-input {
|
|
67
|
+
padding-left: 12px !important;
|
|
68
|
+
height: 28px;
|
|
69
|
+
|
|
70
|
+
>input {
|
|
71
|
+
padding-top: 10px;
|
|
72
|
+
transform: translateY(-5px);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.ng-arrow-wrapper {
|
|
79
|
+
min-height: 38px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&.ng-select-multiple {
|
|
83
|
+
.ng-select-container {
|
|
84
|
+
.ng-value-container {
|
|
85
|
+
padding-left: 8px !important;
|
|
86
|
+
padding-top: 8px !important;
|
|
87
|
+
|
|
88
|
+
.ng-input {
|
|
89
|
+
padding-left: 8px !important;
|
|
90
|
+
padding: 0 0 0px 3px !important;
|
|
91
|
+
|
|
92
|
+
input {
|
|
93
|
+
transform: translateY(-10px) !important;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.ng-value {
|
|
98
|
+
min-height: 24px;
|
|
99
|
+
padding: 2px 8px;
|
|
100
|
+
padding-right: 32px;
|
|
101
|
+
margin-right: 8px;
|
|
102
|
+
margin-bottom: 8px;
|
|
103
|
+
|
|
104
|
+
.ng-value-icon {
|
|
105
|
+
width: 30px;
|
|
106
|
+
font-size: 32px;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.ng-placeholder {
|
|
111
|
+
top: 9px !important;
|
|
112
|
+
padding-left: 8px !important;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&.inputbox-sm {
|
|
121
|
+
input {
|
|
122
|
+
font-size: 12px;
|
|
123
|
+
padding: 8px;
|
|
124
|
+
height: 32px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
textarea {
|
|
128
|
+
font-size: 12px;
|
|
129
|
+
padding: 8px;
|
|
130
|
+
min-height: 32px;
|
|
131
|
+
}
|
|
53
132
|
}
|
|
54
133
|
|
|
55
134
|
.user_label {
|
package/package.json
CHANGED