ros.grant.common 2.0.1023 → 2.0.1027
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/Base/Grid.less +4 -4
- package/Shared/Styles/Base/Main.less +24 -20
- package/Shared/Styles/Layout/Card/Card.less +2 -1
- package/Shared/Styles/Layout/DashboardLayout/Content.less +1 -1
- package/Shared/Styles/Layout/DashboardLayout/Sidebar.less +1 -0
- package/Shared/Styles/Modules/Table/custom-table.less +4 -4
- package/package.json +1 -1
|
@@ -134,6 +134,10 @@ html {
|
|
|
134
134
|
text-align: justify;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
.text-nowrap {
|
|
138
|
+
white-space: nowrap !important;
|
|
139
|
+
}
|
|
140
|
+
|
|
137
141
|
.no-gutters {
|
|
138
142
|
margin-right: 0;
|
|
139
143
|
margin-left: 0
|
|
@@ -4555,8 +4559,4 @@ html {
|
|
|
4555
4559
|
|
|
4556
4560
|
.n-border {
|
|
4557
4561
|
border: none !important;
|
|
4558
|
-
}
|
|
4559
|
-
|
|
4560
|
-
.text-nowrap {
|
|
4561
|
-
white-space: nowrap !important;
|
|
4562
4562
|
}
|
|
@@ -146,83 +146,83 @@ h6 {
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
.color-accent {
|
|
149
|
-
color: var(--Main2);
|
|
149
|
+
color: var(--Main2) !important;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
.color-subsidiary {
|
|
153
|
-
color: var(--Subsidiary);
|
|
153
|
+
color: var(--Subsidiary) !important;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
.color-green {
|
|
157
|
-
color: var(--Green);
|
|
157
|
+
color: var(--Green) !important;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
.color-yellow {
|
|
161
|
-
color: var(--Yellow);
|
|
161
|
+
color: var(--Yellow) !important;
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
.color-red {
|
|
165
|
-
color: var(--Red);
|
|
165
|
+
color: var(--Red) !important;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
.color-secondary {
|
|
169
|
-
color: var(--Secondary);
|
|
169
|
+
color: var(--Secondary) !important;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.color-orange {
|
|
173
|
-
color: var(--Orange);
|
|
173
|
+
color: var(--Orange) !important;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
.color-light {
|
|
177
|
-
color: #fff;
|
|
177
|
+
color: #fff !important;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
.bg-accent {
|
|
181
|
-
background-color: var(--Main2);
|
|
181
|
+
background-color: var(--Main2) !important;
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.bg-subsidiary {
|
|
185
|
-
background-color: var(--Subsidiary);
|
|
185
|
+
background-color: var(--Subsidiary) !important;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.bg-bg2 {
|
|
189
|
-
background-color: var(--Bg2);
|
|
189
|
+
background-color: var(--Bg2) !important;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.bg-good {
|
|
193
|
-
background-color: var(--Good);
|
|
193
|
+
background-color: var(--Good) !important;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
.bg-attention {
|
|
197
|
-
background-color: var(--Attention);
|
|
197
|
+
background-color: var(--Attention) !important;
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.bg-warning {
|
|
201
|
-
background-color: var(--Warning);
|
|
201
|
+
background-color: var(--Warning) !important;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
.bg-disabled {
|
|
205
|
-
background-color: var(--Disabled);
|
|
205
|
+
background-color: var(--Disabled) !important;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
.bg-news {
|
|
209
|
-
background-color: var(--TooltipBG);
|
|
209
|
+
background-color: var(--TooltipBG) !important;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
.bg-green {
|
|
213
|
-
background-color: var(--Green);
|
|
213
|
+
background-color: var(--Green) !important;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
.bg-yellow {
|
|
217
|
-
background-color: var(--Yellow);
|
|
217
|
+
background-color: var(--Yellow) !important;
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.bg-red {
|
|
221
|
-
background-color: var(--Red);
|
|
221
|
+
background-color: var(--Red) !important;
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
.bg-light {
|
|
225
|
-
background-color: #fff;
|
|
225
|
+
background-color: #fff !important;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
228
|
.gray {
|
|
@@ -233,6 +233,10 @@ h6 {
|
|
|
233
233
|
border-radius: 4px;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
+
.radius-round{
|
|
237
|
+
border-radius: 100%;
|
|
238
|
+
}
|
|
239
|
+
|
|
236
240
|
.hidden {
|
|
237
241
|
display: none !important;
|
|
238
242
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
box-shadow: var(--main_shadow);
|
|
5
5
|
border-radius: 4px;
|
|
6
6
|
padding: 24px;
|
|
7
|
-
max-width:
|
|
7
|
+
max-width: 1575px;
|
|
8
8
|
margin: 0 auto;
|
|
9
9
|
margin-bottom: 20px;
|
|
10
10
|
height: calc(~'100% - 20px');
|
|
@@ -342,6 +342,7 @@
|
|
|
342
342
|
margin-bottom: 12px;
|
|
343
343
|
border-radius: 0px;
|
|
344
344
|
min-height: 64px;
|
|
345
|
+
max-width: initial;
|
|
345
346
|
|
|
346
347
|
@media (max-width: 991px) {
|
|
347
348
|
margin: 0 -20px;
|
|
@@ -62,10 +62,7 @@
|
|
|
62
62
|
top: 100%;
|
|
63
63
|
right: 0;
|
|
64
64
|
padding: 8px;
|
|
65
|
-
|
|
66
|
-
.inputbox {
|
|
67
|
-
min-width: 180px;
|
|
68
|
-
}
|
|
65
|
+
width: 215px;
|
|
69
66
|
}
|
|
70
67
|
|
|
71
68
|
&.open {
|
|
@@ -129,6 +126,9 @@
|
|
|
129
126
|
max-width: 340px;
|
|
130
127
|
vertical-align: top;
|
|
131
128
|
|
|
129
|
+
a{
|
|
130
|
+
color: initial;
|
|
131
|
+
}
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
th {
|
package/package.json
CHANGED