-
Notifications
You must be signed in to change notification settings - Fork 0
/
text-highlighter.css
108 lines (90 loc) · 2.03 KB
/
text-highlighter.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.text-highlighter {
position: relative
}
.text-highlighter .select-header .header-group {
margin-bottom: 12px
}
.text-highlighter .select-body {
border: 1px solid #CCC;
padding: 20px;
text-align: justify
}
.text-highlighter .select-header {
padding: 10px 20px 0 20px;
border: 1px solid #CCC;
margin-bottom: 10px;
background: #FFF;
z-index: 998
}
.text-highlighter .select-header .select-header-top {
padding-bottom: 10px
}
.text-highlighter .select-header .select-header-top .select-header-top-left {
display: inline-block;
width: 50%
}
.text-highlighter .select-header .select-header-top .select-header-top-right {
width: 50%;
text-align: right;
display: inline-block;
font-size: 18px;
cursor: pointer;
color: #CCC
}
.text-highlighter .select-header .select-header-top .select-header-top-right .btn {
padding: 10px 20px;
background: #157dec;
border: none;
color: #FFF;
margin-right: 3px;
}
.text-highlighter .select-header .select-header-buttom {
padding: 10px 0;
border-top: 1px solid #CCC
}
.text-highlighter .select-header label {
cursor: pointer;
font-weight: normal
}
.text-highlighter .select-header label span {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
margin: 0 5px;
vertical-align: middle;
color: #FFF
}
.text-highlighter .select-body span {
color: #FFF;
position: relative;
border-radius: 10px;
padding: 1px 4px
}
.text-highlighter .select-header .select-header-buttom label.active {
text-decoration: underline;
font-weight: bold
}
.text-highlighter .select-header label.active span {
box-shadow: 0 0 2px 4px #c1c1c1
}
i.cross {
color: #000;
margin-left: 3px;
font-size: 11px;
cursor: pointer
}
i.cross-icon::before {
content: "\2716"
}
.text-highlighter .panel-top {
height: 50px
}
.text-highlighter .panel-top-left {
float: left;
display: none;
width: 95%
}
.text-highlighter .panel-top-right {
float: right
}