aboutsummaryrefslogtreecommitdiffstats
path: root/style.css
diff options
context:
space:
mode:
authorGreendayle <Greendayle>2022-10-08 14:27:48 +0000
committerGreendayle <Greendayle>2022-10-08 14:27:48 +0000
commit2e8ba0fa478eb076760dc0fdfc526f6f5f1f98c5 (patch)
tree18bd69791e0eff3affd59876f8b39e9150aa8e2b /style.css
parent5f12e7efd92ad802742f96788b4be3249ad02829 (diff)
parent4f33289d0fc5aa3a197f4a4c926d03d44f0d597e (diff)
downloadstable-diffusion-webui-gfx803-2e8ba0fa478eb076760dc0fdfc526f6f5f1f98c5.tar.gz
stable-diffusion-webui-gfx803-2e8ba0fa478eb076760dc0fdfc526f6f5f1f98c5.tar.bz2
stable-diffusion-webui-gfx803-2e8ba0fa478eb076760dc0fdfc526f6f5f1f98c5.zip
fix conflicts
Diffstat (limited to 'style.css')
-rw-r--r--style.css43
1 files changed, 40 insertions, 3 deletions
diff --git a/style.css b/style.css
index 29b04feb..101d2052 100644
--- a/style.css
+++ b/style.css
@@ -398,10 +398,20 @@ input[type="range"]{
#txt2img_interrupt, #img2img_interrupt{
position: absolute;
- width: 100%;
+ width: 50%;
height: 72px;
background: #b4c0cc;
- border-radius: 8px;
+ border-radius: 0px;
+ display: none;
+}
+
+#txt2img_skip, #img2img_skip{
+ position: absolute;
+ width: 50%;
+ right: 0px;
+ height: 72px;
+ background: #b4c0cc;
+ border-radius: 0px;
display: none;
}
@@ -415,4 +425,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;
+}