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 ', hh: 'h ',
mm: 'min' mm: 'min'
}, },
gridColor: layoutColors.defaultText, gridAlpha: 0.5,
gridColor: layoutColors.border,
} }
], ],
graphs: [ graphs: [

View File

@ -77,16 +77,16 @@
top: 45, top: 45,
labelShiftY: 5, labelShiftY: 5,
labelShiftX: 5, labelShiftX: 5,
color: layoutColors.default, color: layoutColors.defaultText,
labelColor: layoutColors.default, labelColor: layoutColors.defaultText,
labelRollOverColor: layoutColors.default, labelRollOverColor: layoutColors.defaultText,
labelFontSize: 20 labelFontSize: 20
}, { }, {
label: 'show flights from Vilnius', label: 'show flights from Vilnius',
left: 106, left: 106,
top: 70, top: 70,
labelColor: layoutColors.default, labelColor: layoutColors.defaultText,
labelRollOverColor: layoutColors.default, labelRollOverColor: layoutColors.defaultText,
labelFontSize: 11, labelFontSize: 11,
linkToObject: 'vilnius' linkToObject: 'vilnius'
} ] } ]
@ -145,16 +145,16 @@
top: 45, top: 45,
labelShiftY: 5, labelShiftY: 5,
labelShiftX: 5, labelShiftX: 5,
color: layoutColors.default, color: layoutColors.defaultText,
labelColor: layoutColors.default, labelColor: layoutColors.defaultText,
labelRollOverColor: layoutColors.default, labelRollOverColor: layoutColors.defaultText,
labelFontSize: 20 labelFontSize: 20
}, { }, {
label: 'show flights from London', label: 'show flights from London',
left: 106, left: 106,
top: 70, top: 70,
labelColor: layoutColors.default, labelColor: layoutColors.defaultText,
labelRollOverColor: layoutColors.default, labelRollOverColor: layoutColors.defaultText,
labelFontSize: 11, labelFontSize: 11,
linkToObject: 'london' 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 id="map-lines"></div>
</div> </div>

View File

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

View File

@ -33,7 +33,7 @@ html {
width: 540px; width: 540px;
margin: 0 auto; margin: 0 auto;
border-radius: 5px; border-radius: 5px;
background-color: white; background-color: $default;
color: $default-text; color: $default-text;
padding: 32px; padding: 32px;
h1 { h1 {

View File

@ -120,7 +120,7 @@ a {
i { i {
cursor: pointer; cursor: pointer;
transition: all 0.1s ease; transition: all 0.1s ease;
color: $default; color: white;
padding: 6px; padding: 6px;
box-sizing: content-box; box-sizing: content-box;
font-size: 16px; font-size: 16px;