summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMert Tumer <mert.tumer@collabora.com>2022-04-01 11:23:43 +0300
committerAndras Timar <andras.timar@collabora.com>2022-04-03 18:30:13 +0200
commiteb550681d0a64e8b4a4341bbc7c7e583f28d8009 (patch)
tree64b0aa399f9b237c461f9efef31b063709e9d7b0
parentAndroid: change targetSdkVersion and compileSdkVersion to 30 (diff)
downloadonline-eb550681d0a64e8b4a4341bbc7c7e583f28d8009.tar.gz
online-eb550681d0a64e8b4a4341bbc7c7e583f28d8009.zip
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 <mert.tumer@collabora.com> Change-Id: Iec5a7efdb4cb385512226841b036eba3b3212427
-rw-r--r--browser/css/leaflet.css10
1 files 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;