Colour changes, removed borders... simplified

This commit is contained in:
g 2020-09-15 16:30:30 +02:00
commit dd75d5e9fd
11 changed files with 54 additions and 49 deletions

View file

@ -1,12 +1,12 @@
@theme-color-brand: #1a73e8;
@theme-color-background-base: #f8f9fa;
@theme-color-header-background: #ffffff;
@theme-color-header-text: #5f6368;
@theme-color-brand: #CECCD2;
@theme-color-background-base: #faf9f6;
@theme-color-header-background: #FAF9F6;
@theme-color-header-text: #323036;
@theme-color-widget-title-background: #f8f9fa;
@theme-color-widget-title-text: #4a4a4a;
@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-textActive: #3c4043;
@theme-color-menu-contrast-textSelected: #1a73e8;
@theme-color-menu-contrast-background: transprent;
@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: transprent;

View file

@ -1 +1 @@
@theme-fontFamily-base: Arial, Verdana, sans-serif;
@theme-fontFamily-base: "Roboto", Helvetica, sans-serif;

View file

@ -1,9 +1,14 @@
.btn, input[type="button"], .button {
box-shadow: none;
text-decoration: none;
text-transform: uppercase;
border: none;
font-weight: bold;
letter-spacing: 1.5em;
&:hover {
opacity: 0.8;
color: #CECCD2;
box-shadow: none;
border: none;
}
}

View file

@ -1,8 +1,8 @@
.card {
//box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
box-shadow: none;
border: 1px solid #e6e6e6;
border-radius: 8px;
border: none;
border-radius: 0px;
.card-content {
padding: 5px 20px 20px 20px !important;

View file

@ -1,6 +1,6 @@
#root .borderedControl {
background-color: transparent;
border: 1px solid #e6e6e6; //#dadce1;
border: none;
box-shadow: none;
transition: .2s ease all;
border-radius: 3px;

View file

@ -2,6 +2,6 @@ nav {
box-shadow: none !important;
.nav-wrapper {
border-bottom: 1px solid #dadce0;
border-bottom: none;
}
}

View file

@ -2,17 +2,17 @@
ul {
& > li > ul > li.active > .item {
background-color: #e8f0fe !important;
background-color: #E6E6E6 !important;
}
li {
&.active > a {
background-color: #e8eaed !important;
background-color: #CECCD2 !important;
}
a {
border-radius: 0 50em 50em 0;
border-radius: 0;
font-weight: 500;
font-size: 14px;
//letter-spacing: .25px;
@ -24,7 +24,7 @@
}
&:hover {
background-color: #dadce1 !important;
background-color: #CECCD2 !important;
transition: .2s ease all;
}
}

View file

@ -1,24 +1,24 @@
// sparkline colors
.sparkline-colors[data-name=backgroundColor] {
color: white;
.sparkline-colors[data-name="backgroundColor"] {
color: white;
}
.sparkline-colors[data-name=lineColor] {
color: #058DC7;
.sparkline-colors[data-name="lineColor"] {
color: #323036;
}
.sparkline-colors[data-name=minPointColor] {
color: #058DC7 //darken(#058DC7, 10);
.sparkline-colors[data-name="minPointColor"] {
color: #323036 //darken(#058DC7, 10);
}
.sparkline-colors[data-name=maxPointColor] {
color: #058DC7 //darken(#058DC7, 10);
.sparkline-colors[data-name="maxPointColor"] {
color: #323036 //darken(#058DC7, 10);
}
.sparkline-colors[data-name=lastPointColor] {
color: white; //hidden
.sparkline-colors[data-name="lastPointColor"] {
color: white; //hidden
}
.sparkline-colors[data-name=fillColor] {
color: lighten(#058DC7, 55);
}
.sparkline-colors[data-name="fillColor"] {
color: lighten(#323036, 55);
}

View file

@ -4,6 +4,6 @@
.dataTableVizVisitorLog .card {
box-shadow: none;
border: 1px solid #e6e6e6;
border-radius: 8px;
border: none;
border-radius: 0px;
}

View file

@ -1,5 +1,5 @@
.widget {
background-color: transparent;
background-color: white;
box-shadow: none;
border: none !important;
@ -30,12 +30,12 @@
.widgetName {
padding: 0 0 15px 0 !important;
font-weight: 300;
color: #4a4a4a;
color: @theme-color-header-text;
}
}
.widgetContent {
background-color: #ffffff;
background-color: @theme-color-background-base;
/*border-radius: 2px;
border: none;
padding: 14px;
@ -43,8 +43,8 @@
padding-top: 15px;
box-shadow: none;
border: 1px solid #e6e6e6;
border-radius: 8px;
border: none;
border-radius: 0px;
overflow: hidden;
.dataTable, .card {

View file

@ -12,15 +12,15 @@
@import "components/_visitor_log";
@import "components/_widget";
@theme-color-brand: #1a73e8;
@theme-color-background-base: #f8f9fa;
@theme-color-header-background: #ffffff;
@theme-color-header-text: #5f6368;
@theme-color-brand: #CECCD2;
@theme-color-background-base: #FAF9F6;
@theme-color-header-background: #FAF9F6;
@theme-color-header-text: #323036;
@theme-color-widget-title-background: #f8f9fa;
@theme-color-widget-title-text: #4a4a4a;
@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-textActive: #3c4043;
@theme-color-menu-contrast-textSelected: #1a73e8;
@theme-color-menu-contrast-background: transprent;
@theme-color-menu-contrast-textActive: #828089;
@theme-color-menu-contrast-textSelected: #CECCd2;
@theme-color-menu-contrast-background: transparent;