diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-04-10 12:28:45 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-04-15 14:34:52 +0200 |
commit | 67529b69ff666397886fa48403d76954c8bc6f9c (patch) | |
tree | c8ce7f9251d04f33a1a7713da8a1dedda15f2d21 | |
parent | 46ce940f8bb71454740741affe9cd82ee799e01f (diff) | |
download | server-67529b69ff666397886fa48403d76954c8bc6f9c.tar.gz |
Allow using images as icons for menu items.
-rw-r--r-- | public/common/play.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/public/common/play.css b/public/common/play.css index 10d1cc4..efe34c0 100644 --- a/public/common/play.css +++ b/public/common/play.css @@ -124,6 +124,10 @@ footer { .menu { user-select: none; } +.menu_item img { + vertical-align: top; + height: 20px; +} .menu_title img { display: block; height: 35px; @@ -158,6 +162,9 @@ footer { background-color: black; color: white; } +.menu_item:hover img { + filter: invert(100%); +} /* TOOL BAR */ |