From ae21d408d1f9f8f4a34e777c3ea708c6b1245064 Mon Sep 17 00:00:00 2001
From: Catalin Mititiuc
Date: Wed, 3 Jul 2024 10:04:58 -0700
Subject: Change elevation level selector selected color
---
public/assets/css/style.css | 4 ++--
src/radial.js | 7 +------
2 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/public/assets/css/style.css b/public/assets/css/style.css
index 5960f99..c941eda 100644
--- a/public/assets/css/style.css
+++ b/public/assets/css/style.css
@@ -490,9 +490,9 @@ input#content-visibility-toggle {
}
.select-elevation input:checked+label {
- border: 1px solid #666;
+ border: 1px solid orangered;
border-radius: 3px;
- background-color: orangered;
+ background-color: orange;
color: white;
font-weight: bold;
}
diff --git a/src/radial.js b/src/radial.js
index 038d9c1..ca79c35 100644
--- a/src/radial.js
+++ b/src/radial.js
@@ -1,8 +1,3 @@
-// if (window.IS_DEV) {
-// const source = new EventSource('/esbuild');
-// source.addEventListener('change', () => location.reload());
-// }
-
const xmlns = 'http://www.w3.org/2000/svg';
const svg = document.querySelector('svg');
@@ -274,7 +269,7 @@ const mapsheet1 = {
{ q: 0, r: 0, s: 0 },
{ left: 3, top: 5, right: 3, bottom: 5 }
),
- position: ({ q, r, s }) => ({ q: q, r: r, s: s })
+ position: ({ q, r, s }) => ({ q, r, s })
}
]
};
--
cgit v1.2.3