aboutsummaryrefslogtreecommitdiff
path: root/extension/src/index.css
diff options
context:
space:
mode:
authorTyler Ferrari <69283684+Sowgro@users.noreply.github.com>2024-12-03 13:48:05 -0500
committerGitHub <noreply@github.com>2024-12-03 13:48:05 -0500
commita2689fd6ed8f39d4aee98ad193973c743ec1ae4d (patch)
tree70a6af461bb92721ce93ef073ca9839dceb57905 /extension/src/index.css
parentafa44751b7f9d39c4842d5a91a9e3ce28d74bfce (diff)
parent37f9cb4a0dbb83aad1aaae0d88fd488edc5e56ac (diff)
downloadbookmarks-home-a2689fd6ed8f39d4aee98ad193973c743ec1ae4d.tar.gz
bookmarks-home-a2689fd6ed8f39d4aee98ad193973c743ec1ae4d.tar.bz2
bookmarks-home-a2689fd6ed8f39d4aee98ad193973c743ec1ae4d.zip
Merge pull request #1 from ATO-b2/drag-n-drop
Drag n drop
Diffstat (limited to 'extension/src/index.css')
-rw-r--r--extension/src/index.css24
1 files changed, 20 insertions, 4 deletions
diff --git a/extension/src/index.css b/extension/src/index.css
index a85aeaf..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 {
@@ -191,7 +192,7 @@ a {
/* Drop targets */
.drop-targets {
- pointer-events: none;
+ /*pointer-events: none;*/
position: absolute;
top: 0;
/* bottom: 0; */
@@ -215,7 +216,7 @@ a {
align-items: center;
> div {
- background-color: aqua;
+ background-color: white;
height: 50%;
width: 4px;
}
@@ -231,7 +232,7 @@ a {
align-items: center;
> div {
- background-color: aqua;
+ background-color: white;
width: 4px;
height: 50%;
}
@@ -248,13 +249,28 @@ 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: #FFF;
+ width: 50px;
+ height: 50px;
+ border-radius: 10px;
+ padding: 10px;
+ margin-bottom: 14px;
+ fill: black;
+ }
+}
+
+.enabled {
+ background-color: white;
+ fill: black;
}