mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Limit Field label to size of input
This avoids awkward wrapping if the label is longer than the input. This will show an ellipsis to suggest there's more text in the label than can be shown.
This commit is contained in:
parent
a6a3716576
commit
c1688d2be3
@ -89,6 +89,10 @@ limitations under the License.
|
||||
margin: 7px 8px;
|
||||
padding: 2px;
|
||||
pointer-events: none; // Allow clicks to fall through to the input
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
max-width: calc(100% - 18px);
|
||||
}
|
||||
|
||||
.mx_Field input:focus + label,
|
||||
|
Loading…
Reference in New Issue
Block a user