source: OpenWorkouts-current/ow/static/less/vendors/leaflet-elevation.less @ 978575d

currentfeature/docs
Last change on this file since 978575d was 978575d, checked in by Segundo Fdez <segun.2@…>, 5 years ago

update map on workout detail

  • Property mode set to 100644
File size: 1.7 KB
Line 
1
2/* Leaflet-elevation openworkouts theme */
3
4/* background color */
5.openworkouts-theme.leaflet-control.elevation .background {
6    background-color: transparent;
7}
8
9/* Axis x and y*/
10.openworkouts-theme.leaflet-control.elevation .axis line, .openworkouts-theme.leaflet-control.elevation .axis path {
11    stroke: @color-main-medium;
12}
13
14/* selected drag area*/
15.openworkouts-theme.leaflet-control.elevation .mouse-drag {
16    fill: fade(@color-main, 10%);
17}
18
19/* Icon to show when the chart is collapse */
20/*
21.openworkouts-theme.leaflet-control.elevation .elevation-toggle-icon {
22    background: url(images/elevation-steelblue.png) no-repeat center center;
23}
24*/
25
26/* Graph color area background */
27.openworkouts-theme.leaflet-control.elevation .area {
28    fill: @color-app-light;
29    stroke: transparent;
30}
31
32/* vertical line to know where are you */
33.openworkouts-theme.leaflet-control.elevation .mouse-focus-line {
34    stroke: @color-main;
35}
36
37/* graph color line area */
38/*.leaflet-control.elevation .area {
39    fill: #f8b5be;
40}
41*/
42
43/* box with parameters */
44.mouse-focus-label {
45    opacity: .8;
46}
47
48
49.mouse-focus-label-text {
50    .font-size(13);
51    font-family: 'Open Sans', sans-serif;
52    font-weight: 100 !important;
53}
54/*.mouse-focus-label-y {}*/
55
56
57/* Color line on map */
58.leaflet-interactive {
59    stroke: @color-main;
60    opacity: .6;
61    stroke-width: 6px;
62    stroke-linecap: round;
63}
64
65/* indicator on map line*/
66.openworkouts-theme.height-focus.line{
67    stroke: @color-main;
68    display: none;
69
70    /*fill: #4682b4;*/
71}
72
73/* txt on map */
74
75.openworkouts-theme.height-focus-label {
76    display: none;
77}
78
79/* indicator on map circle */
80.openworkouts-theme.height-focus.circle-lower {
81    fill:  @color-main;
82    stroke: @color-app;
83    stroke-width: 10px;
84
85}
Note: See TracBrowser for help on using the repository browser.