aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/SidebarAnnos.scss
blob: c2b9dcce5d914a539d9b556ae71845add1eab50f (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
.sidebarAnnos-container {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0px;
    .sidebarAnnos-stacking {
        width: 100%;
        position: relative;
    }
}
.sidebarAnnos-tagList {
    display: flex;
    flex-direction: row;
    overflow: auto;
    flex-flow: row;
    flex-wrap: wrap;
    .sidebarAnnos-filterTag,
    .sidebarAnnos-filterTag-active,
    .sidebarAnnos-filterUser,
    .sidebarAnnos-filterUser-active {
        font-weight: bold;
        font-size: 10px;
        padding-left: 5px;
        padding-right: 5px;
        box-shadow: black 1px 1px 3px;
        border-radius: 5px;
        margin: 2px;
        height: 15px;
        background-color: lightgrey;
    }
    .sidebarAnnos-filterUser,
    .sidebarAnnos-filterUser-active {
        border-radius: 15px;
    }
    .sidebarAnnos-filterUser-active,
    .sidebarAnnos-filterTag-active {
        background-color: white;
    }
}