ros.grant.common 2.0.1259 → 2.0.1262
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.
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
&_name {
|
|
89
|
+
max-width: 531px;
|
|
89
90
|
margin-bottom: 10px;
|
|
90
91
|
padding-right: 50px;
|
|
91
92
|
display: flex;
|
|
@@ -106,6 +107,14 @@
|
|
|
106
107
|
font-size: 14px;
|
|
107
108
|
line-height: 16px;
|
|
108
109
|
margin-bottom: 5px;
|
|
110
|
+
|
|
111
|
+
@media screen and (min-width: 991px) {
|
|
112
|
+
display: -webkit-box;
|
|
113
|
+
-webkit-line-clamp: 1;
|
|
114
|
+
-webkit-box-orient: vertical;
|
|
115
|
+
overflow: hidden;
|
|
116
|
+
text-overflow: ellipsis;
|
|
117
|
+
}
|
|
109
118
|
}
|
|
110
119
|
|
|
111
120
|
h3 {
|
|
@@ -133,7 +142,7 @@
|
|
|
133
142
|
|
|
134
143
|
@media screen and (min-width: 991px) {
|
|
135
144
|
display: -webkit-box;
|
|
136
|
-
-webkit-line-clamp:
|
|
145
|
+
-webkit-line-clamp: 1;
|
|
137
146
|
-webkit-box-orient: vertical;
|
|
138
147
|
overflow: hidden;
|
|
139
148
|
text-overflow: ellipsis;
|
|
@@ -161,6 +170,7 @@
|
|
|
161
170
|
margin-bottom: 10px;
|
|
162
171
|
white-space: nowrap;
|
|
163
172
|
display: flex;
|
|
173
|
+
flex-direction: column;
|
|
164
174
|
|
|
165
175
|
@media screen and (max-width: 414px) {
|
|
166
176
|
border-right: none;
|
|
@@ -505,6 +505,11 @@ input.ng-invalid.ng-touched {
|
|
|
505
505
|
background-color: var(--Warning) !important;
|
|
506
506
|
}
|
|
507
507
|
|
|
508
|
+
.custom-input-group .string-input {
|
|
509
|
+
border-color: var(--Red) !important;
|
|
510
|
+
background-color: var(--Warning) !important;
|
|
511
|
+
}
|
|
512
|
+
|
|
508
513
|
.qq-gallery.qq-uploader,
|
|
509
514
|
.ngx-file-drop__drop-zone,
|
|
510
515
|
.new-custom-file-input__item {
|
|
@@ -536,6 +541,11 @@ input.ng-invalid.ng-touched {
|
|
|
536
541
|
background-color: var(--Good) !important;
|
|
537
542
|
}
|
|
538
543
|
|
|
544
|
+
.custom-input-group .string-input {
|
|
545
|
+
border-color: var(--Green) !important;
|
|
546
|
+
background-color: var(--Good) !important;
|
|
547
|
+
}
|
|
548
|
+
|
|
539
549
|
.qq-gallery.qq-uploader,
|
|
540
550
|
.ngx-file-drop__drop-zone,
|
|
541
551
|
.new-custom-file-input__item {
|
package/package.json
CHANGED