fix(theme): fix small issues for configurable color scheme

pull/46/head
KostyaDanovsky 2016-04-22 12:50:46 +03:00 committed by kostya.danovsky
parent 23bfdd6d53
commit 43e50fc6fa
6 changed files with 16 additions and 14 deletions

View File

@ -80,7 +80,8 @@
hh: 'h ',
mm: 'min'
},
gridColor: layoutColors.defaultText,
gridAlpha: 0.5,
gridColor: layoutColors.border,
}
],
graphs: [

View File

@ -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'
} ]

View File

@ -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>

View File

@ -13,6 +13,7 @@ html, body {
body {
font: 12px/16px $font-family;
color: $default-text;
background-color: $default;
display: flex;
align-items: center;
}

View File

@ -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 {

View File

@ -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;