-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcategories.css
54 lines (45 loc) · 1.02 KB
/
categories.css
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
/***
* Annotator Categories Plugin CSS.
***/
.annotator-categories {
border-top: solid 1px #eee;
}
.annotator-category:hover {
cursor: pointer;
}
.annotator-categories h4{
font-size: 13px;
display: block;
margin: 5px 0px 5px 5px;
}
.annotator-viewer ul li .annotator-category {
text-align: center;
width: 33%;
}
.annotator-category {
padding: 7px;
margin: 1px 1px 0px;
-webkit-border-radius: 6px 6px 6px 6px;
-moz-border-radius: 6px 6px 6px 6px;
border-radius: 6px 6px 6px 6px;
color: black;
display: inline-block;
background-color: rgba(255, 255, 10, .3);
}
.annotator-category-none {
}
/* For different color categories, set different color values here */
.annotator-category-0,
.annotator-category-1,
.annotator-category-2,
.annotator-category-3,
.annotator-category-4,
.annotator-category-5,
.annotator-category-6,
.annotator-category-7
{
background-color: rgba(22,147,165, .2);
}
.annotator-category-selected {
background-color: rgba(196,223,44,1) !important;
}