Changing map colors

This commit is contained in:
g 2020-09-28 20:27:14 +02:00
commit c3087d3ae7
3 changed files with 117 additions and 8 deletions

View file

@ -1,11 +1,3 @@
canvas.jqplot-piwik-ticks-canvas {
background: @theme-color-background-base !important;
}
.UserCountryMap.card-content.dataTable {
background: @theme-color-background-base;
}
td .label img {
display: none;
}

View file

@ -0,0 +1,116 @@
.UserCountryMap.card-content.dataTable {
background: @theme-color-background-base;
}
td .label img {
display: none;
}
// Visitor map colors
.visitor-map[data-name="no-data-color"] {
color: @theme-color-background-base;
}
.visitor-map[data-name="one-country-color"] {
color: #e6e6e6;
}
.visitor-map[data-name="color-range-start-choropleth"] {
color: #ceccd2;
}
.visitor-map[data-name="color-range-start-normal"] {
color: #828089;
}
.visitor-map[data-name="color-range-end-choropleth"] {
color: #323036;
}
.visitor-map[data-name="color-range-end-normal"] {
color: rgb(0, 0, 0);
}
.visitor-map[data-name="country-highlight-color"] {
color: #f4f45b;
}
.visitor-map[data-name="country-selected-color"] {
color: #f4f45b;
}
.visitor-map[data-name="unknown-region-fill-color"] {
color: @theme-color-background-base;
}
.visitor-map[data-name="unknown-region-stroke-color"] {
color: #bbb;
}
.visitor-map[data-name="region-stroke-color"] {
color: #3c6fb6;
}
.visitor-map[data-name="region-selected-color"] {
color: #f4f45b;
}
.visitor-map[data-name="region-highlight-color"] {
color: #f4f45b;
}
.visitor-map[data-name="invisible-region-background"] {
color: @theme-color-background-base;
}
.visitor-map[data-name="city-label-color"] {
color: @theme-color-background-base;
}
.visitor-map[data-name="city-stroke-color"] {
color: @theme-color-background-base;
}
.visitor-map[data-name="city-highlight-stroke-color"] {
color: #000000;
}
.visitor-map[data-name="city-highlight-fill-color"] {
color: #f4f45b;
}
.visitor-map[data-name="city-highlight-label-color"] {
color: #000;
}
.visitor-map[data-name="city-label-fill-color"] {
color: @theme-color-background-base;
}
.visitor-map[data-name="city-selected-color"] {
color: #f4f45b;
}
.visitor-map[data-name="city-selected-label-color"] {
color: #000;
}
.visitor-map[data-name="region-layer-stroke-color"] {
color: #aaa;
}
.visitor-map[data-name="special-metrics-color-scale-1"] {
color: #385993;
}
.visitor-map[data-name="special-metrics-color-scale-2"] {
color: #385993;
}
.visitor-map[data-name="special-metrics-color-scale-3"] {
color: #e87500;
}
.visitor-map[data-name="special-metrics-color-scale-4"] {
color: #e87500;
}

View file

@ -14,6 +14,7 @@
@import "components/_login";
@import "components/_charts";
@import "components/_maps";
@theme-color-brand: #ceccd2;
@theme-color-background-base: #faf9f6;