Fixed bad dropdown arrow colour.

Accidentally broke it in the previous commit.
This commit is contained in:
Oliver Hamlet
2014-12-20 13:11:56 +00:00
parent 32c634882b
commit c433e199cf
+4 -2
View File
@@ -11,13 +11,15 @@
}
/* These overrides change the colour of the game menu's text and underline. */
#gameMenu::shadow > paper-dropdown-menu,
#gameMenu::shadow > paper-dropdown-menu::shadow #arrow {
#gameMenu::shadow > paper-dropdown-menu {
border-bottom-color: #64B5F6;
}
#gameMenu[disabled]::shadow > paper-dropdown-menu {
border-bottom-color: rgba(100, 181, 246, 0.26);
}
#gameMenu::shadow > paper-dropdown-menu::shadow #arrow {
color: #64B5F6;
}
#gameMenu[disabled]::shadow > paper-dropdown-menu::shadow #arrow {
color: rgba(100, 181, 246, 0.26);
}