avo 4.0.12 → 4.0.13
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b349b505ec6b14d71c35268b7fa11cbea05b06afe7c7e1652433a59c07bde057
|
|
4
|
+
data.tar.gz: 1229319d10fcaf4da366d7a38a7e7679907cf9974b9115a88835eaaf4da8d15b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cfc7511b601656774c16ef83511c8470cc79abb6aa0c70a9878fc255cf27f274151cdab27293a23e9ea307ef85fa276fb51ea124bb9c8843523aa5e45e8acba5
|
|
7
|
+
data.tar.gz: c48a8d5d6f29336782ec100eb3a8d19444b32858f723f54d87afee8b49c3a80ffb73316f843e5e01743a816c804e9a98ebfd360fcfdb75afbfbb7a569f6b3191
|
data/Gemfile.lock
CHANGED
|
@@ -8090,6 +8090,7 @@ tag.tagify__tag {
|
|
|
8090
8090
|
background-position: left var(--input-icon-offset) center;
|
|
8091
8091
|
}
|
|
8092
8092
|
select[multiple] {
|
|
8093
|
+
overflow-y: auto;
|
|
8093
8094
|
background-image: none;
|
|
8094
8095
|
}
|
|
8095
8096
|
input[type="date"]::-webkit-calendar-picker-indicator, .input-field--date::-webkit-calendar-picker-indicator {
|
|
@@ -203,7 +203,11 @@
|
|
|
203
203
|
background-position: left var(--input-icon-offset) center;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
+
/* The base reset sets `overflow: hidden` on every select, which clips the
|
|
207
|
+
options past the visible rows and leaves no way to scroll to them. */
|
|
206
208
|
select[multiple] {
|
|
209
|
+
@apply overflow-y-auto;
|
|
210
|
+
|
|
207
211
|
background-image: none;
|
|
208
212
|
}
|
|
209
213
|
|
data/lib/avo/version.rb
CHANGED