FF52 workaround: only transform the outer svg

This commit is contained in:
tophf 2017-12-24 11:12:13 +03:00
parent 57806bed45
commit 8decffc6b5

View File

@ -673,13 +673,13 @@ select {
top: -1px;
}
#newUIoptions [data-toggle-on-click] svg {
transform: rotate(-90deg);
#newUIoptions [data-toggle-on-click] > svg {
position: static;
}
#newUIoptions [data-toggle-on-click][open] svg {
transform: none;
#newUIoptions [data-toggle-on-click]:not([open]) > svg {
/* note: without ">" FF52 also transforms the nested svg inside <use> */
transform: rotate(-90deg);
}
input[id^="manage.newUI"] {