diff --git a/config.template.js b/config.template.js index 09a97e6..28ea8d1 100644 --- a/config.template.js +++ b/config.template.js @@ -100,6 +100,18 @@ nodata: { color: 'darkred', }, + beeline: { + weight: 5, + dashArray: [1, 10], + color: 'magenta', + opacity: BR.conf.defaultOpacity, + }, + beelineTrailer: { + weight: 5, + dashArray: [1, 10], + opacity: 0.6, + color: 'magenta', + }, }; BR.conf.markerColors = { diff --git a/css/style.css b/css/style.css index 461e975..d90c841 100644 --- a/css/style.css +++ b/css/style.css @@ -443,6 +443,22 @@ button.btn { line-height: 30px; } +button.activate-beeline-active, +button.deactivate-beeline-active { + transition-duration: 0.3s; +} +button.activate-beeline-active.disabled, +button.deactivate-beeline-active.disabled { + height: 0; + border-bottom-width: 0px; +} +.mdi.active { + fill: #2074b6; +} +.mdi { + width: 18px; +} + /* smaller tab height */ .nav > li > a { padding: 2px 15px; diff --git a/index.html b/index.html index 0058bd9..a68da4f 100644 --- a/index.html +++ b/index.html @@ -1132,6 +1132,16 @@