From 64b114533c8a3fe3d81f5d5b325f65915e2a5fa2 Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Tue, 3 Oct 2023 23:51:13 -0700 Subject: [PATCH 1/6] replicate nav buttons --- .gitignore | 1 + app/styles/custom.css | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore index 4cc31a0..46b8290 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,6 @@ node_modules /public/build .env .idea +.sentryclirc *.json \ No newline at end of file diff --git a/app/styles/custom.css b/app/styles/custom.css index 70135e3..4054984 100644 --- a/app/styles/custom.css +++ b/app/styles/custom.css @@ -25,6 +25,18 @@ border: 1px solid rgba(255, 255, 255, 0.2); } +.btn.btn-theme.replicate-nav { + border-radius: 32px; + background: white; + color: black; + border: 1px solid transparent; + margin-right: 0.5em; +} + +.btn.btn-theme.replicate-nav:hover { + border: 1px solid black; +} + .gooey-spinner { scroll-margin: 20px; display: inline-block; From 354e1b3fd8c5b38c6522085afaba4f6e8eeebd52 Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Wed, 4 Oct 2023 00:07:44 -0700 Subject: [PATCH 2/6] refactored link-button --- app/styles/custom.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/styles/custom.css b/app/styles/custom.css index 4054984..a966c7b 100644 --- a/app/styles/custom.css +++ b/app/styles/custom.css @@ -37,6 +37,17 @@ border: 1px solid black; } +.btn.btn-theme.link-button { + background: none; + border: 0; + color: black; + padding: 0; +} + +.btn.btn-theme.link-button:hover { + background-color: white; +} + .gooey-spinner { scroll-margin: 20px; display: inline-block; From 6521b000ef70dd308e1280c217dc575344ff96b7 Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Tue, 7 Nov 2023 11:14:51 -0800 Subject: [PATCH 3/6] added dashes around inactive horizontal radios --- app/styles/custom.css | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/app/styles/custom.css b/app/styles/custom.css index a966c7b..5b0fb27 100644 --- a/app/styles/custom.css +++ b/app/styles/custom.css @@ -26,11 +26,17 @@ } .btn.btn-theme.replicate-nav { - border-radius: 32px; - background: white; - color: black; - border: 1px solid transparent; - margin-right: 0.5em; + border-radius: 32px; + background: white; + color: black; + border: 1px dashed gray; + margin-right: 0.5em; +} + +.btn.btn-theme.replicate-nav.active { + background: black; + color: white; + border: 1px solid transparent; } .btn.btn-theme.replicate-nav:hover { From f3aa2fc7db7626b3abd3c555b7d610a2863dd061 Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Tue, 7 Nov 2023 15:20:35 -0800 Subject: [PATCH 4/6] tweaked colors --- app/styles/custom.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/styles/custom.css b/app/styles/custom.css index 5b0fb27..0f17709 100644 --- a/app/styles/custom.css +++ b/app/styles/custom.css @@ -29,7 +29,7 @@ border-radius: 32px; background: white; color: black; - border: 1px dashed gray; + border: 1px solid #e5e5e5; margin-right: 0.5em; } @@ -40,7 +40,8 @@ } .btn.btn-theme.replicate-nav:hover { - border: 1px solid black; + background: #f3f3f3; + border: 1px solid black; } .btn.btn-theme.link-button { From f09ce559bedb0073c66911fe1d1e7436f6a6e4bd Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Tue, 7 Nov 2023 15:24:50 -0800 Subject: [PATCH 5/6] more color tweaks --- app/styles/custom.css | 1 - 1 file changed, 1 deletion(-) diff --git a/app/styles/custom.css b/app/styles/custom.css index 0f17709..dbd75ea 100644 --- a/app/styles/custom.css +++ b/app/styles/custom.css @@ -41,7 +41,6 @@ .btn.btn-theme.replicate-nav:hover { background: #f3f3f3; - border: 1px solid black; } .btn.btn-theme.link-button { From c05d11e85d17ddde2edef97777f5e0603e0bf0e9 Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Mon, 27 Nov 2023 11:02:04 -0800 Subject: [PATCH 6/6] fix style merge --- app/styles/custom.css | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/app/styles/custom.css b/app/styles/custom.css index ebc85b9..0667f97 100644 --- a/app/styles/custom.css +++ b/app/styles/custom.css @@ -43,15 +43,15 @@ background: #f3f3f3; } -.btn.btn-theme.link-button { - background: none; - border: 0; - color: black; - padding: 0; +.btn.btn-theme.btn-link { + background: none; + border: 0; + color: black; + padding: 0; } -.btn.btn-theme.link-button:hover { - background-color: white; +.btn.btn-theme.btn-link:hover { + background-color: white; } .gooey-spinner { @@ -496,18 +496,6 @@ textarea:disabled { color: gray; } -.btn.btn-theme.btn-link { - background: none; - border: 0; - color: gray; - padding: 0; - font-size: smaller; -} - -.btn.btn-theme.btn-link:hover { - background-color: white; -} - .bg-light { padding: 15px 20px; background-color: #f2f2f2 !important;