diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2024-02-10 09:09:10 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2024-02-10 09:09:10 +0000 |
commit | 75833517604964942b5ecaf83d9056efc01bd9d2 (patch) | |
tree | da643b4af4358d5d1b14a3c73005c96d9a28485a /style.css | |
parent | d69a7944c9ad5a086d99cf9220a3a2742a1194f3 (diff) | |
download | stable-diffusion-webui-gfx803-75833517604964942b5ecaf83d9056efc01bd9d2.tar.gz stable-diffusion-webui-gfx803-75833517604964942b5ecaf83d9056efc01bd9d2.tar.bz2 stable-diffusion-webui-gfx803-75833517604964942b5ecaf83d9056efc01bd9d2.zip |
extensions tab table row hover highlight
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -846,6 +846,20 @@ table.popup-table .link{ display: inline-block;
}
+/* extensions tab table row hover highlight */
+
+#extensions tr:hover td,
+#config_state_extensions tr:hover td,
+#available_extensions tr:hover td {
+ background: rgba(0, 0, 0, 0.15)
+}
+
+.dark #extensions tr:hover td ,
+.dark #config_state_extensions tr:hover td ,
+.dark #available_extensions tr:hover td {
+ background: rgba(255, 255, 255, 0.15)
+}
+
/* replace original footer with ours */
footer {
|