aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/access_points.css.scss
blob: 6545a32aa143236658eab61b7e25a06a70a496b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
93
94
95
96
97
98
99
100
101
102
103
// Place all the styles related to the lines controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
@import "common/mixins";

#workspace.access_points.index
{
    .access_point:after { 
        @include after_div_for_object;  
    }

    .access_points:after {
        @include content_to_clear;
    }
    
    .access_point {
        @include div_for_object;
        /* to create multi-column index */
        width: 250px;
        float: left;
        padding-right: 10px;

        .access_type {
            width: 25px;
            height: 64px;
            float: left;
            margin-right: 10px;
            

            a {
                text-decoration: none;                   
            }
        }

    }
}

#workspace.access_points.edit {
  legend { padding-bottom: 20px; }
}

#workspace.access_points.show
{
    .geo_data {
       padding-left:15px;
    }

    .summary{
        
        p label {
            font-weight: bold;
        }
    }
    
    .access_link_pairs {
        
        .link {
          border: 2px solid black;
        }
        .access_point{
            float: left;
            padding: 3px 15px 0px 3px;
            height: 25px;        
            * { vertical-align:middle; }
            span { margin-left: 7px; }
            img { margin: 0px 5px 0px 5px;}
        }
        .stop_area{
            float: left;
            padding: 3px 15px 0px 3px;
            height: 25px;        
            * { vertical-align:middle; }
            span { margin-left: 7px; }
            img { margin: 0px 5px 0px 5px;}
        }
      
      .info {
          font-size: 10px;
          color: #777;
          font-weight: normal;
          padding-top: 0px;
          padding-left: 45px;
          padding-right: 3px;
          padding-bottom: 3px;
        }
    }

}


#sidebar ul.selection li {    
    a {
        line-height: 27px;
        
        img{
            height: 25px;
            width: 25px;
            vertical-align: middle;
        }
    }
}