Blame view

src/styles.scss 1.4 KB
c680f5b4   Administrator   first commit
1
2
  // Custom style for loading elements without height
  .will-load {
229df284   Yarik   Big map commit
3
    min-height: 80px;
c680f5b4   Administrator   first commit
4
  }
74a2441c   Administrator   Add ServiceObject
5
  
c680f5b4   Administrator   first commit
6
7
  // Href line height wasn't right for md-icon-button
  a[md-icon-button] {
229df284   Yarik   Big map commit
8
    line-height: 36px;
c680f5b4   Administrator   first commit
9
10
11
12
  }
  
  // Capitalize
  .text-capital {
229df284   Yarik   Big map commit
13
    text-transform: capitalize;
74a2441c   Administrator   Add ServiceObject
14
15
16
  }
  
  .grid_containert {
229df284   Yarik   Big map commit
17
    height: 100%;
74a2441c   Administrator   Add ServiceObject
18
19
20
  }
  
  .control_button {
229df284   Yarik   Big map commit
21
22
23
24
25
26
27
28
29
30
    position: fixed;
    bottom: 40px;
    right: 40px;
    td-loading {
      width: 56px;
      height: 56px;
      float: left;
      margin-right: 20px;
      .td-loading-wrapper {
        margin-top: -10px;
d653c752   Administrator   fix
31
      }
229df284   Yarik   Big map commit
32
    }
842485ac   Administrator   add select point ...
33
34
  }
  
e74fdc9c   Yarik   Button
35
  .map-container {
229df284   Yarik   Big map commit
36
37
    height: 400px;
    width: 400px;
842485ac   Administrator   add select point ...
38
  }
e74fdc9c   Yarik   Button
39
40
  
  #mapId {
229df284   Yarik   Big map commit
41
42
    height: 400px;
    width: 400px;
e74fdc9c   Yarik   Button
43
44
  }
  
229df284   Yarik   Big map commit
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  road-map > div {
    transition: height 1s ease-out;
  }
  
  .map-controls {
    z-index: 1500;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 5px;
    md-icon {
      cursor: pointer;
      margin: 0 5px;
    }
  }
  .map-legend {
    z-index: 700;
    position: absolute;
    left: 60px;
    top: 10px;
    max-width: 300px;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 5px;
    max-height: calc(100% - 50px);
    overflow-y: auto;
    td-expansion-panel {
      text-align: center;
      .expansion-header {
        width: 100%;
      }
    }
    .legend-summary {
      .expansion-header {
        text-align: center;
        font-size: 15px;
        margin: 5px 0;
      }
    }
    .legend-header {
      width: 100%;
      md-icon {
        float: right;
        cursor: pointer;
      }
    }
c680f5b4   Administrator   first commit
93
  }