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