1
0
mirror of https://github.com/tabler/tabler.git synced 2026-06-17 12:50:03 +04:00

Fix overflow of label in a floating-input (#2072)

* Fix overflow of label in a floating-input

Temporary fix for the bug in twbs/bootstrap v5.3.3.

* Create dry-rice-march.md

---------

Co-authored-by: codecalm <codecalm@gmail.com>
This commit is contained in:
BG-Software
2025-02-08 13:57:11 +01:00
committed by GitHub
parent ea144622a1
commit 687267de38
2 changed files with 16 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@tabler/core": patch
---
Fix overflow of `label` in a `floating-input`
+11
View File
@@ -227,4 +227,15 @@ Upload files
.form-file-button {
margin-left: 0;
border-left: 0;
}
/**
Floating inputs
*/
// Fix for the bug in twbs/bootstrap v5.3.3. Issue #39080. Should be fixed in v5.3.4
label[for="floating-input"] {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}