blob: abfd04f11f5da8f83c11d0aef1f9090e697b584e (
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: 0;
.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: 5;
padding-right: 5;
box-shadow: black 1px 1px 3px;
border-radius: 5;
margin: 2;
height: 15;
background-color: lightgrey;
}
.sidebarAnnos-filterUser,
.sidebarAnnos-filterUser-active {
border-radius: 15px;
}
.sidebarAnnos-filterUser-active,
.sidebarAnnos-filterTag-active {
background-color: white;
}
}
|