mirror of https://github.com/akveo/blur-admin
fix(theme): fix small issues for configurable color scheme
parent
23bfdd6d53
commit
43e50fc6fa
|
@ -80,7 +80,8 @@
|
|||
hh: 'h ',
|
||||
mm: 'min'
|
||||
},
|
||||
gridColor: layoutColors.defaultText,
|
||||
gridAlpha: 0.5,
|
||||
gridColor: layoutColors.border,
|
||||
}
|
||||
],
|
||||
graphs: [
|
||||
|
|
|
@ -77,16 +77,16 @@
|
|||
top: 45,
|
||||
labelShiftY: 5,
|
||||
labelShiftX: 5,
|
||||
color: layoutColors.default,
|
||||
labelColor: layoutColors.default,
|
||||
labelRollOverColor: layoutColors.default,
|
||||
color: layoutColors.defaultText,
|
||||
labelColor: layoutColors.defaultText,
|
||||
labelRollOverColor: layoutColors.defaultText,
|
||||
labelFontSize: 20
|
||||
}, {
|
||||
label: 'show flights from Vilnius',
|
||||
left: 106,
|
||||
top: 70,
|
||||
labelColor: layoutColors.default,
|
||||
labelRollOverColor: layoutColors.default,
|
||||
labelColor: layoutColors.defaultText,
|
||||
labelRollOverColor: layoutColors.defaultText,
|
||||
labelFontSize: 11,
|
||||
linkToObject: 'vilnius'
|
||||
} ]
|
||||
|
@ -145,16 +145,16 @@
|
|||
top: 45,
|
||||
labelShiftY: 5,
|
||||
labelShiftX: 5,
|
||||
color: layoutColors.default,
|
||||
labelColor: layoutColors.default,
|
||||
labelRollOverColor: layoutColors.default,
|
||||
color: layoutColors.defaultText,
|
||||
labelColor: layoutColors.defaultText,
|
||||
labelRollOverColor: layoutColors.defaultText,
|
||||
labelFontSize: 20
|
||||
}, {
|
||||
label: 'show flights from London',
|
||||
left: 106,
|
||||
top: 70,
|
||||
labelColor: layoutColors.default,
|
||||
labelRollOverColor: layoutColors.default,
|
||||
labelColor: layoutColors.defaultText,
|
||||
labelRollOverColor: layoutColors.defaultText,
|
||||
labelFontSize: 11,
|
||||
linkToObject: 'london'
|
||||
} ]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div ba-panel ba-panel-title="Map with Bubbles" class="viewport100">
|
||||
<div ba-panel ba-panel-title="Line Map" class="viewport100">
|
||||
<div id="map-lines"></div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ html, body {
|
|||
body {
|
||||
font: 12px/16px $font-family;
|
||||
color: $default-text;
|
||||
background-color: $default;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ html {
|
|||
width: 540px;
|
||||
margin: 0 auto;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
background-color: $default;
|
||||
color: $default-text;
|
||||
padding: 32px;
|
||||
h1 {
|
||||
|
|
|
@ -120,7 +120,7 @@ a {
|
|||
i {
|
||||
cursor: pointer;
|
||||
transition: all 0.1s ease;
|
||||
color: $default;
|
||||
color: white;
|
||||
padding: 6px;
|
||||
box-sizing: content-box;
|
||||
font-size: 16px;
|
||||
|
|
Loading…
Reference in New Issue