[style] Fix first letter of labels not capitalized
This error is caused by setting label::before { content: " "; }, which makes the first letter a whitespace on all labels, neccessary for browsers that doesn't support the grid layout. This commit clears the content if the browser supports the grid layout, properly capitalizing labels again. If a browser doesn't support grid layout, labels stay as they are provided by the bridge.
This commit is contained in:
parent
182153485c
commit
adc6f72e97
1 changed files with 4 additions and 0 deletions
|
@ -202,6 +202,10 @@ form {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.parameters label::before {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
.parameters input[type="text"],
|
.parameters input[type="text"],
|
||||||
.parameters input[type="number"],
|
.parameters input[type="number"],
|
||||||
.parameters input[type="checkbox"],
|
.parameters input[type="checkbox"],
|
||||||
|
|
Loading…
Reference in a new issue