mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
Fix field styling regression
The extra comma in the selectors caused this rule set to be ignored. Regressed by https://github.com/matrix-org/matrix-react-sdk/pull/3200 Fixes https://github.com/vector-im/riot-web/issues/10311
This commit is contained in:
parent
56b1775209
commit
5ab958cc9f
2 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ limitations under the License.
|
|||
}
|
||||
|
||||
.mx_Field_labelAlwaysTopLeft label,
|
||||
.mx_Field select + label, /* Always show a select's label on top to not collide with the value */,
|
||||
.mx_Field select + label /* Always show a select's label on top to not collide with the value */,
|
||||
.mx_Field input:focus + label,
|
||||
.mx_Field input:not(:placeholder-shown) + label,
|
||||
.mx_Field textarea:focus + label,
|
||||
|
|
|
@ -111,7 +111,7 @@ limitations under the License.
|
|||
}
|
||||
|
||||
.mx_Field_labelAlwaysTopLeft label,
|
||||
.mx_Field select + label, /* Always show a select's label on top to not collide with the value */,
|
||||
.mx_Field select + label /* Always show a select's label on top to not collide with the value */,
|
||||
.mx_Field input:focus + label,
|
||||
.mx_Field input:not(:placeholder-shown) + label,
|
||||
.mx_Field textarea:focus + label,
|
||||
|
|
Loading…
Reference in a new issue