blob: 7714c13a3b0931fe4e143ce616440830bfb4cf37 (
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
|
// Place all the styles related to the routes controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
#workspace.lines.show
{
}
#workspace.routes.edit, #workspace.routes.new, #workspace.routes.create, #workspace.routes.update
{
#route_color{ width: 100px;
color: white;
font-weight: bold;}
#stop_points .nested-fields {
ol {
margin-left: 25%;
.handle { margin-left: 5px;}
.search_stop_area {
margin-bottom: 0px !important;
}
div.resize{
height: 40px;
line-height: 40px;
font-size: 16px;
}
}
}
#stop_points .links {
margin: 10px 0 15px 25%;
}
}
#workspace.routes.edit_boarding_alighting{
.stop_area{
padding-top: 7px;
}
}
#workspace.routes.show
{
}
|