diff --git a/assets/css/styles.css b/assets/css/styles.css
index 5a3e71db4..a70a23daa 100644
--- a/assets/css/styles.css
+++ b/assets/css/styles.css
@@ -3,6 +3,7 @@
--default-title-font: RDRLino;
--content-font: var(--default-content-font), serif;
--title-font: var(--default-title-font), serif;
+ --button-font: RDRCatalogueBold, var(--content-font), serif;
--fsb-color: #f0f0f0;
--fsb-background: transparent;
@@ -26,6 +27,13 @@
font-weight: 400;
}
+@font-face {
+ font-family: RDRCatalogueBold;
+ src: url(../fonts/RDRCatalogueBold-Bold.woff2) format("woff2");
+ font-style: normal;
+ font-weight: 400;
+}
+
*,
*:before,
*:after {
@@ -321,7 +329,6 @@ select {
.save-button,
.remove-button {
text-align: center;
- font-size: 14px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
@@ -343,6 +350,7 @@ select {
.marker-popup-buttons {
display: flex;
+ align-items: center;
justify-content: space-between;
margin-top: 8px;
-webkit-user-select: none;
@@ -396,11 +404,10 @@ select {
}
.links-container {
+ position: relative;
height: 44.45px;
display: flex;
justify-content: space-around;
- border-top: 1px solid #b0b0b0;
- border-bottom: 1px solid #b0b0b0;
padding: 10px 0;
margin: 15px 0;
}
@@ -685,14 +692,6 @@ select {
height: 24px;
}
-.btn-default {
- background-color: #383838;
- min-width: 40%;
- font-weight: 500;
- color: #fff;
- border: none;
-}
-
.input-text {
background: #383838;
border: none;
@@ -995,8 +994,10 @@ input.input-text.pickr-userpin {
min-width: 42px;
height: 38px;
background: url(../images/arrow.png) center no-repeat;
+ background-size: 21px 21px;
margin: auto 0 auto 5px;
padding: 0 5px 0 0;
+ filter: brightness(0.825);
transition: transform .2s ease-in-out;
}
@@ -1044,19 +1045,43 @@ input.input-text.pickr-userpin {
}
.side-menu .collection-value {
+ position: relative;
height: 34.45px;
text-align: center;
- border-top: 1px white solid;
- border-bottom: 1px white solid;
padding: 5px 0;
display: flex;
justify-content: space-around;
}
+.side-menu .collection-value-bottom::after,
+.side-menu .collection-value::before,
+.side-menu .collection-value::after,
+.links-container::before,
+.links-container::after {
+ content: '';
+ position: absolute;
+ left: 0;
+ width: 100%;
+ height: 1px;
+ background: url('../images/wanted_location_divider.png') repeat;
+ background-size: contain;
+}
+
+.side-menu .collection-value::before,
+.links-container::before {
+ top: 0;
+}
+
+.side-menu .collection-value-bottom::after,
+.side-menu .collection-value::after,
+.links-container::after {
+ bottom: 0;
+}
+
.side-menu .collection-value-bottom {
+ position: relative;
height: 33.65px;
text-align: center;
- border-bottom: 1px white solid;
padding: 5px 0;
display: flex;
justify-content: space-around;
@@ -1066,19 +1091,6 @@ input.input-text.pickr-userpin {
margin-bottom: 6px;
}
-.side-menu .btn-light {
- font-size: 16px;
- --bs-btn-color: #fff;
- --bs-btn-bg: transparent;
- --bs-btn-border-color: transparent;
- --bs-btn-hover-color: #fff;
- --bs-btn-hover-bg: #383838;
- --bs-btn-hover-border-color: transparent;
- --bs-btn-active-color: #fff;
- --bs-btn-active-bg: #aca9a9;
- --bs-btn-line-height: 0.4;
-}
-
.side-menu .collection-value .camps-small-btn,
.side-menu .collection-value .camps-large-btn,
.side-menu .collection-value .camps-wilderness-btn {
@@ -1158,6 +1170,12 @@ input.input-text.pickr-userpin {
width: auto;
}
+.nazar-error {
+ margin-left: 4px;
+ height: 16px;
+ width: auto;
+}
+
.lat-lng-container {
position: absolute;
bottom: 0;
@@ -1305,6 +1323,9 @@ a.wiki-page:visited {
}
.counter {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
line-height: 12px;
white-space: nowrap;
margin-left: 6px;
@@ -1320,13 +1341,27 @@ a.wiki-page:visited {
.counter-button {
display: inline-block;
- padding: 3px;
- height: 20px;
- width: 20px;
- text-align: center;
- background-color: #333;
- color: #eee !important;
- border-radius: 50%;
+ height: 16px;
+ width: 16px;
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: contain;
+}
+
+.counter-button.minus-circle {
+ background-image: url(../images/minus-circle.svg);
+}
+
+.counter-button.plus-circle {
+ background-image: url(../images/plus-circle.svg);
+}
+
+.counter-button:hover {
+ filter: brightness(1.2);
+}
+
+.counter-button:active {
+ filter: brightness(0.8);
}
.clickable {
@@ -1336,6 +1371,7 @@ a.wiki-page:visited {
.marker-content-wrapper {
display: flex;
align-items: center;
+ justify-content: center;
}
.marker-warning-wrapper {
@@ -1777,8 +1813,8 @@ a.no-style:visited {
height: 46px;
border: none;
border-radius: 50%;
- background-color: #eee;
- box-shadow: rgba(14, 15, 15, .3) 0px 2px 10px 0px;
+ background: url(../images/circle_white.png) no-repeat center center;
+ background-size: 100% 100%;
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(15px);
@@ -1802,8 +1838,8 @@ a.no-style:visited {
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
- height: 50%;
- width: 50%;
+ width: 100%;
+ height: 100%;
filter: invert(100%) sepia(100%) saturate(10000%) hue-rotate(10deg);
pointer-events: none;
}
@@ -2209,64 +2245,238 @@ span.daily-checkbox {
/* Override Bootstrap && Leaflet buttons color styling */
.btn {
- font-size: 14px;
+ color: #eee;
+ font-family: var(--button-font);
+ font-size: 17px;
+ letter-spacing: 0.075em;
+ --bs-btn-bg: transparent;
+ --bs-btn-hover-bg: transparent;
+ --bs-btn-active-bg: transparent;
+ text-transform: uppercase;
+}
+
+.btn-check:checked+.btn,
+.btn.active,
+.btn.show,
+.btn:first-child:active,
+:not(.btn-check)+.btn:active {
+ border-color: transparent;
}
.btn-default {
- --bs-btn-hover-color: #333;
- --bs-btn-hover-bg: #e6e6e6;
+ line-height: 0.2;
+ min-width: 40%;
+ padding: 0.75em 1.5em;
+ border-image: url(../images/double_border_gray.png) 28 repeat;
+ border-style: solid;
+ border-width: 8px;
}
+.btn-default:hover {
+ color: #fff;
+ filter: brightness(2);
+}
+
+.btn-default:active {
+ color: #fff;
+ filter: brightness(0.75);
+}
+
+.btn-light {
+ line-height: 0.5;
+ border: 3px solid transparent;
+ transition: border-image 100ms ease;
+}
+
+.btn-light:hover {
+ color: #fff;
+ border-image: url(../images/border_single.png) 14 repeat;
+ border-style: solid;
+ border-width: 3px;
+ filter: brightness(2);
+}
+
+.btn-light:active {
+ color: #fff !important;
+ filter: brightness(0.75);
+}
+
+.btn-info.save-button,
+.btn-info.remove-button,
+.btn-primary,
+.btn-danger,
+.btn-secondary,
+.btn-success {
+ line-height: 0;
+ padding: 0.75em 0.75em;
+ border-style: solid;
+ border-width: 6px;
+}
+
+.btn-info.save-button,
+.btn-info.remove-button,
.btn-primary {
- --bs-btn-bg: #337ab7;
- --bs-btn-hover-bg: #286090;
+ color: #12a4f3;
+ border-image: url(../images/single_border_lightblue.png) 14 repeat;
+}
+
+.btn-danger {
+ color: #990000;
+ border-image: url(../images/single_hover.png) 14 repeat;
}
.btn-secondary {
- --bs-btn-color: #333;
- --bs-btn-bg: #f0f0f0;
+ border-image: url(../images/single_border_lightgray.png) 14 repeat;
+}
+
+.btn-success {
+ color: #16c368;
+ border-image: url(../images/single_border_lightgreen.png) 14 repeat;
+}
+
+.btn-info.save-button:hover,
+.btn-info.remove-button:hover,
+.btn-primary:hover,
+.btn-danger:hover,
+.btn-secondary:hover,
+.btn-success:hover {
+ filter: brightness(1.25);
+}
+
+.btn-info.save-button:active,
+.btn-info.remove-button:active,
+.btn-primary:active,
+.btn-danger:active,
+.btn-secondary:active,
+.btn-success:active,
+.btn-info.remove-button.active {
+ filter: brightness(0.75);
+}
+
+.btn-info.save-button:hover,
+.btn-info.remove-button:hover,
+.btn-primary:hover,
+.btn-info.save-button:active,
+.btn-info.remove-button:active,
+.btn-primary:active {
+ color: #12a4f3 !important;
+}
+
+.btn-danger:hover,
+.btn-danger:active {
+ color: #990000 !important;
+}
+
+.btn-secondary:hover,
+.btn-secondary:active {
+ color: #fff;
+}
+
+.btn-success:hover,
+.btn-success:active {
+ color: #16c368;
+}
+
+.btn.btn-success.count-up,
+.btn.btn-danger.count-down {
+ width: 36px;
+ height: 36px;
+ border: none;
+}
+
+.btn.btn-success.count-up {
+ background: url(../images/inventory_plus.png) no-repeat center center;
+ background-size: 100% 100%;
+}
+
+.btn.btn-danger.count-down {
+ background: url(../images/inventory_minus.png) no-repeat center center;
+ background-size: 100% 100%;
+}
+
+:lang(ja) .btn-info.remove-button,
+:lang(ja) .btn-success,
+:lang(ja) .btn-default,
+:lang(ko) .btn-info.remove-button,
+:lang(ko) .btn-success,
+:lang(ko) .btn-default,
+:lang(zh-Hans) .btn-info.remove-button,
+:lang(zh-Hans) .btn-success,
+:lang(zh-Hans) .btn-default,
+:lang(zh-Hant) .btn-info.remove-button,
+:lang(zh-Hant) .btn-success,
+:lang(zh-Hant) .btn-default {
+ font-size: 14px;
+}
+
+/* Override Bootstrap accordions styling */
+
+.accordion {
+ --bs-accordion-color: #dadada;
+ --bs-accordion-bg: transparent;
+ --bs-accordion-btn-color: #12a4f3;
+ --bs-accordion-active-color: #12a4f3;
+ --bs-accordion-border-width: none;
+}
+
+.accordion-button {
+ font-family: var(--button-font);
+ font-size: 16px;
+ letter-spacing: 0.075em;
+ height: 20px;
+ padding: 2px 8px;
+ margin-top: 10px;
+ background-color: transparent;
+ border: none;
+ outline: none;
+ text-transform: uppercase;
}
-.btn-info {
- --bs-btn-color: #fff;
- --bs-btn-hover-color: #fff;
- --bs-btn-active-color: #222;
+.accordion-button:not(.collapsed) {
+ background-color: transparent;
}
-.btn.btn-info.remove-button,
-.save-button {
- background-color: #008fbece;
- border: 1px solid #15b4f3af;
+.accordion-button::after {
+ display: none;
}
-.btn.btn-info.remove-button:hover,
-.save-button:hover {
- background-color: #15b4f3af;
+.accordion-button:focus {
+ box-shadow: none;
}
-.remove-button,
-.btn.btn-danger {
- background-color: #a50000ce;
- border: 1px solid #bb0000ce;
+.accordion-body {
+ padding: 2px 8px;
}
-.remove-button:hover,
-.btn.btn-danger:hover {
- background-color: #bb0000ce;
+.leaflet-popup-content-wrapper {
+ -webkit-mask-size: 100% 100%;
+ mask-size: 100% 100%;
+ -webkit-mask-position: center;
+ mask-position: center;
+ -webkit-mask-repeat: no-repeat;
+ mask-repeat: no-repeat;
}
-.btn.btn-success {
- background-color: #008800ce;
- border: 1px solid #00aa00ce;
+.leaflet-popup-content-wrapper:not(:has(.marker-popup-pin-input-name)) {
+ -webkit-mask-image: url(../images/mask_2.png);
+ mask-image: url(../images/mask_2.png);
}
-.btn.btn-success:hover {
- background-color: #00aa00ce;
+.leaflet-popup-content-wrapper:has(.marker-content-wrapper) {
+ -webkit-mask-image: url(../images/mask_1.png);
+ mask-image: url(../images/mask_1.png);
}
.leaflet-popup-content-wrapper {
background: #222;
color: #dadada;
+ padding: 10px 1px 1px 1px;
+ border-radius: 0;
+}
+
+.leaflet-popup-content-wrapper h1 {
+ font-family: var(--title-font);
+ font-weight: 400 !important;
}
.leaflet-container a:visited,
@@ -2297,6 +2507,27 @@ span.daily-checkbox {
color: #d4d4d4 !important;
}
+.leaflet-container a.leaflet-popup-close-button {
+ position: absolute;
+ top: 3px;
+ right: 3px;
+ width: 18px;
+ height: 14px;
+ background-color: transparent;
+ background: url('../images/close_button_popup.png') no-repeat center center;
+ background-size: 100% 100%;
+ border: none;
+ filter: brightness(0.75);
+}
+
+.leaflet-container a.leaflet-popup-close-button:hover {
+ filter: brightness(1);
+}
+
+.leaflet-popup-close-button span {
+ display: none;
+}
+
/* Fix being able to select the overlays. */
.leaflet-overlay-pane,
@@ -2335,8 +2566,14 @@ span.daily-checkbox {
}
.leaflet-popup-tip {
- background: #222;
- color: #d4d4d4;
+ width: 42.5%;
+ height: 42.5%;
+ background: url(../images/tank_meter_marker.png) no-repeat;
+ background-size: 100% 100%;
+ padding: 0;
+ margin: 0 0 0 11px;
+ transform: none;
+ box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
@@ -2419,13 +2656,30 @@ span.daily-checkbox {
/* end dark mode styling */
-.properties, .legendary-properties {
- margin: 10px 0;
- width: 100%;
+#legendary-accordion .accordion-item:first-child {
+ filter: brightness(2);
+}
+
+#legendary-accordion .accordion-item:first-child .accordion-button,
+#legendary-accordion .accordion-item:first-child .accordion-button:not(.collapsed) {
+ color: #990000;
+}
+
+:lang(ja) #legendary-accordion .accordion-button,
+:lang(ko) #legendary-accordion .accordion-button,
+:lang(zh-Hans) #legendary-accordion .accordion-button,
+:lang(zh-Hant) #legendary-accordion .accordion-button {
+ font-size: 14px;
+}
+
+#legendary-accordion .accordion-item:first-child .accordion-body {
+ padding-top: 10px;
}
.legendary-properties {
- line-height: 1.8rem;
+ line-height: 1.25em;
+ margin: 10px 8px;
+ width: 100%;
}
.legendary-properties p {
@@ -2436,7 +2690,7 @@ span.daily-checkbox {
.legendary-spawn-time,
.legendary-preferred-weather {
- color: #3abce5;
+ color: #5de033;
}
.legendary-trader-materials,
@@ -2451,12 +2705,7 @@ span.daily-checkbox {
}
.legendary-sample-value {
- color: #5de033;
-}
-
-.legendary-cooldown-timer {
- color: #d80419;
- margin-bottom: 10px;
+ color: #70ae25;
}
.missions-list {
diff --git a/assets/fonts/RDRCatalogueBold-Bold.woff2 b/assets/fonts/RDRCatalogueBold-Bold.woff2
new file mode 100644
index 000000000..02395d31e
Binary files /dev/null and b/assets/fonts/RDRCatalogueBold-Bold.woff2 differ
diff --git a/assets/images/arrow.png b/assets/images/arrow.png
index ad3b39a78..da1968875 100644
Binary files a/assets/images/arrow.png and b/assets/images/arrow.png differ
diff --git a/assets/images/bullet_gray.png b/assets/images/bullet_gray.png
new file mode 100644
index 000000000..fa1db7047
Binary files /dev/null and b/assets/images/bullet_gray.png differ
diff --git a/assets/images/circle_white.png b/assets/images/circle_white.png
new file mode 100644
index 000000000..586e75a24
Binary files /dev/null and b/assets/images/circle_white.png differ
diff --git a/assets/images/close_button_popup.png b/assets/images/close_button_popup.png
new file mode 100644
index 000000000..181a5b0aa
Binary files /dev/null and b/assets/images/close_button_popup.png differ
diff --git a/assets/images/direction_up_pointer.png b/assets/images/direction_up_pointer.png
new file mode 100644
index 000000000..a1b5adf95
Binary files /dev/null and b/assets/images/direction_up_pointer.png differ
diff --git a/assets/images/double_border.png b/assets/images/double_border.png
new file mode 100644
index 000000000..3ee20fa43
Binary files /dev/null and b/assets/images/double_border.png differ
diff --git a/assets/images/double_border_gray.png b/assets/images/double_border_gray.png
new file mode 100644
index 000000000..e62fd8e77
Binary files /dev/null and b/assets/images/double_border_gray.png differ
diff --git a/assets/images/double_border_red.png b/assets/images/double_border_red.png
new file mode 100644
index 000000000..3811f2b70
Binary files /dev/null and b/assets/images/double_border_red.png differ
diff --git a/assets/images/error.png b/assets/images/error.png
new file mode 100644
index 000000000..167773cd7
Binary files /dev/null and b/assets/images/error.png differ
diff --git a/assets/images/inventory_minus.png b/assets/images/inventory_minus.png
new file mode 100644
index 000000000..7d8ddebe6
Binary files /dev/null and b/assets/images/inventory_minus.png differ
diff --git a/assets/images/inventory_plus.png b/assets/images/inventory_plus.png
new file mode 100644
index 000000000..b39989b43
Binary files /dev/null and b/assets/images/inventory_plus.png differ
diff --git a/assets/images/magnifying_glass.png b/assets/images/magnifying_glass.png
new file mode 100644
index 000000000..4ce784047
Binary files /dev/null and b/assets/images/magnifying_glass.png differ
diff --git a/assets/images/mask_1.png b/assets/images/mask_1.png
new file mode 100644
index 000000000..9db2517b6
Binary files /dev/null and b/assets/images/mask_1.png differ
diff --git a/assets/images/mask_2.png b/assets/images/mask_2.png
new file mode 100644
index 000000000..5a2f5400c
Binary files /dev/null and b/assets/images/mask_2.png differ
diff --git a/assets/images/minus-circle.svg b/assets/images/minus-circle.svg
new file mode 100644
index 000000000..84afe8c02
--- /dev/null
+++ b/assets/images/minus-circle.svg
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/assets/images/plus-circle.svg b/assets/images/plus-circle.svg
new file mode 100644
index 000000000..dd84fa683
--- /dev/null
+++ b/assets/images/plus-circle.svg
@@ -0,0 +1,11 @@
+
\ No newline at end of file
diff --git a/assets/images/single_border_lightblue.png b/assets/images/single_border_lightblue.png
new file mode 100644
index 000000000..81b42083d
Binary files /dev/null and b/assets/images/single_border_lightblue.png differ
diff --git a/assets/images/single_border_lightgray.png b/assets/images/single_border_lightgray.png
new file mode 100644
index 000000000..9d985064b
Binary files /dev/null and b/assets/images/single_border_lightgray.png differ
diff --git a/assets/images/single_border_lightgreen.png b/assets/images/single_border_lightgreen.png
new file mode 100644
index 000000000..73a8dde84
Binary files /dev/null and b/assets/images/single_border_lightgreen.png differ
diff --git a/assets/images/single_hover.png b/assets/images/single_hover.png
new file mode 100644
index 000000000..214219b9f
Binary files /dev/null and b/assets/images/single_hover.png differ
diff --git a/assets/images/tank_meter_marker.png b/assets/images/tank_meter_marker.png
new file mode 100644
index 000000000..faef3ba5f
Binary files /dev/null and b/assets/images/tank_meter_marker.png differ
diff --git a/assets/images/wanted_location_divider.png b/assets/images/wanted_location_divider.png
new file mode 100644
index 000000000..f36180efe
Binary files /dev/null and b/assets/images/wanted_location_divider.png differ
diff --git a/assets/images/waypoint.png b/assets/images/waypoint.png
new file mode 100644
index 000000000..79175a638
Binary files /dev/null and b/assets/images/waypoint.png differ
diff --git a/assets/js/animals.js b/assets/js/animals.js
index 1237d1509..37244bd0f 100644
--- a/assets/js/animals.js
+++ b/assets/js/animals.js
@@ -68,7 +68,7 @@ class Animal {
${description}
${description}
- + Latitude: ${_marker.x} / Longitude: ${_marker.y} `; Language.translateDom(popup); diff --git a/assets/js/events.js b/assets/js/events.js index 72aec12e0..497f843d9 100644 --- a/assets/js/events.js +++ b/assets/js/events.js @@ -76,7 +76,7 @@ class CondorEgg { popup.classList.add('handover-wrapper-with-no-influence'); popup.innerHTML = ` - + `; Language.translateDom(popup); popup.querySelector('button').addEventListener('click', () => CondorEgg.condorEggOnMap = false); @@ -213,7 +213,7 @@ class Salvage { popup.innerHTML = ` ${type ? `` : ''} - + `; Language.translateDom(popup); popup.querySelector('button').addEventListener('click', () => Salvage.salvageOnMap = false); diff --git a/assets/js/gfh.js b/assets/js/gfh.js index a0c6018c8..7d516406d 100644 --- a/assets/js/gfh.js +++ b/assets/js/gfh.js @@ -70,7 +70,7 @@ class GunForHire {${this.description}
- + Text: ${this.text} / Latitude: ${this.lat} / Longitude: ${this.lng} `; diff --git a/assets/js/menu.js b/assets/js/menu.js index e6905724d..489ff9cbe 100644 --- a/assets/js/menu.js +++ b/assets/js/menu.js @@ -79,7 +79,7 @@ class Menu { }); createInputContainer({ key: 'map_zoom_delta', - min: 0, max: 2, value: Settings.zoomDelta, defaultValue: 0.5, + min: 0.1, max: 2, value: Settings.zoomDelta, defaultValue: 0.5, step: 0.1, isFloat: true, }); createInputContainer({ @@ -95,8 +95,7 @@ class Menu { const reset = document.getElementById('reset-map-zoom'); reset.addEventListener('click', () => { - const zoomSettings = ['map_zoom_snap', 'map_zoom_delta', 'map_wheel_debounce_time', 'map_wheel_px_per_zoom_level' - ].map((key) => + const zoomSettings = ['map_zoom_snap', 'map_zoom_delta', 'map_wheel_debounce_time', 'map_wheel_px_per_zoom_level'].map((key) => key .replace(/^map_/, '') .split('_') diff --git a/assets/js/nazar.js b/assets/js/nazar.js index c8b7725fa..96fb41acf 100644 --- a/assets/js/nazar.js +++ b/assets/js/nazar.js @@ -44,6 +44,9 @@ class MadamNazar { return; MadamNazar.layer.clearLayers(); + + document.querySelector('.nazar-error').classList.toggle('hidden', MadamNazar.currentLocation !== -1); + const cl = MadamNazar.possibleLocations[MadamNazar.currentLocation]; const shadow = Settings.isShadowsEnabled ? `` : ''; @@ -82,7 +85,7 @@ class MadamNazar {${Language.get('map.madam_nazar.desc').replace('{link}', '@MadamNazarIO')}
- + `; Language.translateDom(popup); const buttonEl = popup.querySelector('button'); diff --git a/assets/js/plants.js b/assets/js/plants.js index 8cc5da8d3..969039c3e 100644 --- a/assets/js/plants.js +++ b/assets/js/plants.js @@ -57,7 +57,7 @@ class Plants {${description}
- + Latitude: ${_marker.x} / Longitude: ${_marker.y} `; Language.translateDom(popup); diff --git a/assets/js/scripts.js b/assets/js/scripts.js index 995963a59..33b82defb 100644 --- a/assets/js/scripts.js +++ b/assets/js/scripts.js @@ -285,11 +285,17 @@ backToTop.addEventListener('click', () => { } }); -sideMenu.addEventListener('touchend', e => { - if (e.target.classList.contains('btn-light')) - e.target.style.setProperty('--bs-btn-hover-bg', 'transparent'); - e.stopImmediatePropagation(); -}); +sideMenu.addEventListener('touchend', event => { + const target = event.target; + const btnClasses = ['btn-light', 'btn-default']; + if (target.classList.contains('btn-light')) { + target.style.setProperty('border', '3px solid transparent'); + } + if (btnClasses.some(cls => target.classList.contains(cls))) { + target.style.setProperty('filter', 'brightness(1)'); + } + event.stopImmediatePropagation(); +}, true); //TODO: re-implement this function document.getElementById('show-all-markers').addEventListener('change', function () { diff --git a/assets/js/treasures.js b/assets/js/treasures.js index c34b1dd1f..91c60fc14 100644 --- a/assets/js/treasures.js +++ b/assets/js/treasures.js @@ -96,8 +96,7 @@ class Treasure { snippet.classList.add('handover-wrapper-with-no-influence'); snippet.innerHTML = ` - + `; Language.translateDom(snippet); snippet.querySelector('button').addEventListener('click', () => this.onMap = false); diff --git a/index.html b/index.html index bc42cc612..0d1153e26 100644 --- a/index.html +++ b/index.html @@ -50,11 +50,11 @@ - - + + @@ -398,6 +398,7 @@