From 8ad470aaf5434005db4c59106dcbcf4cbc8cf49b Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 3 Dec 2024 00:02:21 -0500 Subject: Push drag and drop code so far --- extension/src/index.css | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'extension/src/index.css') diff --git a/extension/src/index.css b/extension/src/index.css index a85aeaf..a14e0d6 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -191,7 +191,7 @@ a { /* Drop targets */ .drop-targets { - pointer-events: none; + /*pointer-events: none;*/ position: absolute; top: 0; /* bottom: 0; */ @@ -215,7 +215,7 @@ a { align-items: center; > div { - background-color: aqua; + background-color: white; height: 50%; width: 4px; } @@ -231,7 +231,7 @@ a { align-items: center; > div { - background-color: aqua; + background-color: white; width: 4px; height: 50%; } @@ -248,13 +248,22 @@ a { align-items: center; > span { - color: aqua; + /*color: aqua;*/ font-size: 100px; /* background-color: aqua; */ /* aspect-ratio: 1 / 1; */ /* height: 100px; */ font-family: monospace; } + + > svg { + background-color: #000000ba; + width: 65px; + height: 65px; + border-radius: 10px; + padding: 10px; + margin-bottom: 14px; + } } -- cgit v1.2.3 From 37f9cb4a0dbb83aad1aaae0d88fd488edc5e56ac Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 3 Dec 2024 13:46:21 -0500 Subject: DRAG AND DROP WORKS --- extension/src/index.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'extension/src/index.css') diff --git a/extension/src/index.css b/extension/src/index.css index a14e0d6..f240f82 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -120,6 +120,7 @@ body > .folderBody { .icon-box > img { width: 100%; border-radius: 10px; + pointer-events: none; } .icon-box > svg { @@ -257,13 +258,19 @@ a { } > svg { - background-color: #000000ba; - width: 65px; - height: 65px; + background-color: #FFF; + width: 50px; + height: 50px; border-radius: 10px; padding: 10px; margin-bottom: 14px; + fill: black; } } +.enabled { + background-color: white; + fill: black; +} + -- cgit v1.2.3