From eb550681d0a64e8b4a4341bbc7c7e583f28d8009 Mon Sep 17 00:00:00 2001 From: Mert Tumer Date: Fri, 1 Apr 2022 11:23:43 +0300 Subject: change blinking cursor color to black now, it uses a css theme variable for the color but it is a kind of light grayish and it is harder to see in a crowded document. Signed-off-by: Mert Tumer Change-Id: Iec5a7efdb4cb385512226841b036eba3b3212427 --- browser/css/leaflet.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/browser/css/leaflet.css b/browser/css/leaflet.css index 3cb72582f5..081fe86133 100644 --- a/browser/css/leaflet.css +++ b/browser/css/leaflet.css @@ -681,7 +681,7 @@ div.leaflet-cursor-container:hover > .leaflet-cursor-header { @keyframes blink { from, to { - background: var(--color-background-darker); + background: #000; } 50% { background: transparent; @@ -690,7 +690,7 @@ div.leaflet-cursor-container:hover > .leaflet-cursor-header { @-moz-keyframes blink { from, to { - background: var(--color-background-darker); + background: #000; } 50% { background: transparent; @@ -699,7 +699,7 @@ div.leaflet-cursor-container:hover > .leaflet-cursor-header { @-webkit-keyframes blink { from, to { - background: var(--color-background-darker); + background: #000; } 50% { background: transparent; @@ -708,7 +708,7 @@ div.leaflet-cursor-container:hover > .leaflet-cursor-header { @-ms-keyframes blink { from, to { - background: var(--color-background-darker); + background: #000; } 50% { background: transparent; @@ -717,7 +717,7 @@ div.leaflet-cursor-container:hover > .leaflet-cursor-header { @-o-keyframes blink { from, to { - background: var(--color-background-darker); + background: #000; } 50% { background: transparent; -- cgit