Troubeshooting visitor log colours

This commit is contained in:
g 2020-09-15 17:04:43 +02:00
commit b5fb3036ca
5 changed files with 71 additions and 68 deletions

View file

@ -15,11 +15,11 @@
&:hover {
transition: .2s ease all;
background: #e6e6e6 !important;
color: rgba(0, 0, 0, .75) !important;
background: transparent !important;
color: #e6e6e6 !important;
.title {
color: rgba(0, 0, 0, .75) !important;
color:@theme-color-header-text!important;
}
}
}

View file

@ -2,13 +2,13 @@
ul {
& > li > ul > li.active > .item {
background-color: #E6E6E6 !important;
background-color: transparent !important;
}
li {
&.active > a {
background-color: #CECCD2 !important;
background-color: transparent !important;
}
a {

View file

@ -1,6 +1,6 @@
// sparkline colors
.sparkline-colors[data-name="backgroundColor"] {
color: white;
color: @theme-color-background-base;
}
.sparkline-colors[data-name="lineColor"] {
@ -8,11 +8,11 @@
}
.sparkline-colors[data-name="minPointColor"] {
color: #323036 //darken(#058DC7, 10);
color: #323036;
}
.sparkline-colors[data-name="maxPointColor"] {
color: #323036 //darken(#058DC7, 10);
color: #323036;
}
.sparkline-colors[data-name="lastPointColor"] {
@ -20,5 +20,5 @@
}
.sparkline-colors[data-name="fillColor"] {
color: lighten(#323036, 55);
color: transparent;
}

View file

@ -1,9 +1,16 @@
.theWidgetContent h2 {
font-weight: 300 !important;
font-weight: 300 !important;
}
.dataTableVizVisitorLog .card {
box-shadow: none;
border: none;
border-radius: 0px;
}
box-shadow: none;
border: none;
border-radius: 0px;
}
#visitsLive {
> .datetime,
> .settings {
background-color: @theme-color-background-base;
}
}

View file

@ -1,55 +1,51 @@
.widget {
background-color: white;
box-shadow: none;
border: none !important;
background-color: transparent;
box-shadow: none;
border: none !important;
&:hover {
box-shadow: none;
}
&:hover {
box-shadow: none;
}
.widgetTop {
border: none;
background-color: transparent;
padding: 0 !important;
.widgetTop {
border: none;
background-color: transparent;
padding: 0 !important;
.buttons {
background: @theme-color-background-base;
top: 4px;
right: 0;
padding-left: 0;
.buttons {
background: transparent;
top: 4px;
right: 0;
padding-left: 0;
.button {
margin-top: 0px;
.button {
margin-top: 0px;
&:first-child {
margin-right: 0;
}
}
}
&:first-child {
margin-right: 0;
}
}
}
.widgetName {
padding: 0 0 15px 0 !important;
font-weight: 300;
color: @theme-color-header-text;
}
}
.widgetName {
padding: 0 0 15px 0 !important;
font-weight: 300;
color: @theme-color-header-text;
}
}
.widgetContent {
background-color: @theme-color-background-base;
/*border-radius: 2px;
border: none;
padding: 14px;
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);*/
.widgetContent {
background-color: @theme-color-background-base;
padding-top: 15px;
box-shadow: none;
border: none;
border-radius: 0px;
overflow: hidden;
padding-top: 15px;
box-shadow: none;
border: none;
border-radius: 0px;
overflow: hidden;
.dataTable, .card {
margin-top: -15px;
border: none !important;
}
}
}
.dataTable,
.card {
margin-top: -15px;
border: none !important;
}
}
}