diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-08 04:35:03 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-08 06:43:31 +0000 |
commit | 83749bfc72923b946abb825ebf4fdcc8b6035c8e (patch) | |
tree | fbd66a57a4e9423da4ec2f3c46442bd90ac95103 /style.css | |
parent | e21e4732531299ef4895baccdb7a6493a3886924 (diff) | |
download | stable-diffusion-webui-gfx803-83749bfc72923b946abb825ebf4fdcc8b6035c8e.tar.gz stable-diffusion-webui-gfx803-83749bfc72923b946abb825ebf4fdcc8b6035c8e.tar.bz2 stable-diffusion-webui-gfx803-83749bfc72923b946abb825ebf4fdcc8b6035c8e.zip |
context menu styling
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 29 |
1 files changed, 28 insertions, 1 deletions
@@ -410,4 +410,31 @@ input[type="range"]{ #img2img_image div.h-60{
height: 480px;
-}
\ No newline at end of file +}
+
+#context-menu{
+ z-index:9999;
+ position:absolute;
+ display:block;
+ padding:0px 0;
+ border:2px solid #a55000;
+ border-radius:8px;
+ box-shadow:1px 1px 2px #CE6400;
+ width: 200px;
+}
+
+.context-menu-items{
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+.context-menu-items a{
+ display:block;
+ padding:5px;
+ cursor:pointer;
+}
+
+.context-menu-items a:hover{
+ background: #a55000;
+}
|