From b2250a1909d889af2d2132daac08f4e709d23134 Mon Sep 17 00:00:00 2001 From: g <63980406+gugulet-hu@users.noreply.github.com> Date: Thu, 24 Sep 2020 11:44:21 +0200 Subject: [PATCH] Chart fixes and login submit button colour change --- stylesheets/components/_charts.less | 15 +++++++++++++++ stylesheets/components/_widget.less | 5 +++-- stylesheets/theme.less | 13 +++++++------ 3 files changed, 25 insertions(+), 8 deletions(-) create mode 100644 stylesheets/components/_charts.less diff --git a/stylesheets/components/_charts.less b/stylesheets/components/_charts.less new file mode 100644 index 0000000..4a16ed9 --- /dev/null +++ b/stylesheets/components/_charts.less @@ -0,0 +1,15 @@ +#dataTable_5Chart > canvas.jqplot-piwik-ticks-canvas { + background: transparent; +} + +.UserCountryMap_map.kartograph > svg { + background: transparent; +} + +div.UserCountryMap.card-content.dataTable { + background: transparent; +} + +td .label img { + display: none; +} diff --git a/stylesheets/components/_widget.less b/stylesheets/components/_widget.less index 1acb847..5069a07 100644 --- a/stylesheets/components/_widget.less +++ b/stylesheets/components/_widget.less @@ -29,8 +29,9 @@ .widgetName { padding: 0 0 15px 0 !important; - font-weight: 300; - color: @theme-color-header-text; + font-weight: 400; + color: @theme-color-header-text; + text-align:center; } } diff --git a/stylesheets/theme.less b/stylesheets/theme.less index 7e4d4c2..9311613 100644 --- a/stylesheets/theme.less +++ b/stylesheets/theme.less @@ -13,16 +13,17 @@ @import "components/_widget"; @import "components/_login"; +@import "components/_charts"; -@theme-color-brand: #CECCD2; -@theme-color-background-base: #FAF9F6; -@theme-color-header-background: #FAF9F6; +@theme-color-brand: #ceccd2; +@theme-color-background-base: #faf9f6; +@theme-color-header-background: #faf9f6; @theme-color-header-text: #323036; @theme-color-widget-title-background: transparent; @theme-color-widget-title-text: #323036; -@theme-color-menu-contrast-text: rgba(0,0,0,0.54); +@theme-color-menu-contrast-text: rgba(0, 0, 0, 0.54); @theme-color-menu-contrast-textActive: #828089; -@theme-color-menu-contrast-textSelected: #CECCd2; -@theme-color-menu-contrast-background: transparent; \ No newline at end of file +@theme-color-menu-contrast-textSelected: #ceccd2; +@theme-color-menu-contrast-background: transparent;