blob: d7de2b641173a7668dd2b90849e3f32e01364288 (
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
|
.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;
}
}
|