aboutsummaryrefslogtreecommitdiff
path: root/doc/that_style/sass/_nav_tree.scss
blob: 0b265c62dd57e793ef8a46ca6510a2757b191a0b (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
/*
 * The tree view on the left
 */

.arrow {
    color:black;
    cursor: pointer;
    font-size: 80%;
    display: inline-block;
    width: 16px;
    height: 22px;
    margin-left: 4px;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    &:hover {
        color: black;
    }
}

#selected .arrow {
    color: white;
    
    &:hover {
        color: #d2d2d2;
    }
}

#nav-tree {
    background-image: none;
    background-color: white;
    
    .item {
        margin: 0;
        
        &:hover {
            background-color: #d2d2d2;
        }
    }

    .selected {
        background-image: none;
        background-color: $primary-color;
        color: white;
        text-shadow: none;
        
        &:hover {
            background-image: none;
            background-color: $primary-color;
            color: white;
            text-shadow: none;
        }
    }
    
    a {
        color: black;
    }
}

.ui-resizable-e {
    background: #808080 url("splitbar_handle.svg") no-repeat center;
    border-right: solid 1px #c0c0c0;
    border-left: solid 1px black;
    
    &:hover {
        background-color: #606060;
    }
}