completion-kit 0.28.37 → 0.28.38
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: 0d1ac95215866b0de18d662ad0c690780a31b77cf163edd099a3a4b98d6e2f80
|
|
4
|
+
data.tar.gz: e016b642179a75138333d5d9bb5d1781e296349ed3952df828e8b154d4412518
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43f8b0575d21007a494f37dfc49e95dadfc140cc4d33e20137baba7deecbc6b81bdf03cee4ebbac80e1122d01a0b9b4c68d37e8e91f4aaf7e9c0437cc6fa20a0
|
|
7
|
+
data.tar.gz: f115a337c2b5b621755a421e1f2ddd1caacfd068db491872b728aa5f181beed9029e5d10b839169b822836025408854acbe20903ef869b33d15410f8f1da83bd
|
|
@@ -3247,11 +3247,15 @@ select.ck-input {
|
|
|
3247
3247
|
flex-wrap: wrap;
|
|
3248
3248
|
align-items: flex-start;
|
|
3249
3249
|
}
|
|
3250
|
+
/* The column is sized by the button, which never wraps, so min-content
|
|
3251
|
+
resolves to the button's own width and the note wraps underneath it. A
|
|
3252
|
+
fixed cap sized the column for the note instead, which let the wider
|
|
3253
|
+
button overflow and swallow the gap between the two actions. */
|
|
3250
3254
|
.ck-banner-action {
|
|
3251
3255
|
display: flex;
|
|
3252
3256
|
flex-direction: column;
|
|
3253
|
-
gap: 0.
|
|
3254
|
-
|
|
3257
|
+
gap: 0.4rem;
|
|
3258
|
+
width: min-content;
|
|
3255
3259
|
}
|
|
3256
3260
|
.ck-banner-action__note {
|
|
3257
3261
|
margin: 0;
|