mirror of https://github.com/vector-im/riot-web
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.pull/21833/head
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