aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/layout.css.scss
blob: b9a71546566a55933231250ffd1bd251a3253b21 (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
/* Green theme */
$header_background: #61970b;
$header_color: white;
$tabs_background: #86b41d;
$tabs_color: white;
$text_color: #222;

@import "user_interface/layout";

#sidebar ul {
    padding: 0 8px;

    li {
        margin: 4px 0;
    }
}

#sidebar ul.selection li {
    a {
        padding-left: 20px;
    }
    a.current {
        text-decoration: none;
        color: black !important;
        background: url(image-path('user_interface/ui/accept.png')) no-repeat;
    }
    a.all {
        background-image: none;
    }
}


#map {
    float: right;
    width: 400px;
    height: 400px;
}

.actions {
    a.add_children {
        background: url(image-path('user_interface/ui/add.png')) no-repeat;
    }

    a.add_fields {
        background: url(image-path('user_interface/ui/add.png')) no-repeat;
    }

    a.select_parent {
        background: url(image-path('icons/select_parent.png')) no-repeat;
    }
    
    a.select_areas {
        background: url(image-path('icons/select_parent.png')) no-repeat;
    }
}