forked from jeffmay/input-tokenizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput-tokenizer.css
More file actions
38 lines (37 loc) · 927 Bytes
/
input-tokenizer.css
File metadata and controls
38 lines (37 loc) · 927 Bytes
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
/* Default CSS for word-tokenizer */
/* Many of the important statements are to override the jQuery UI CSS
without speculating too much on the structure. */
*.wt-tokenWrapper {
display: block;
width: 100%;
font-size: 10px !important;
}
*.wt-tokenWrapper > * {
display: block !important;
}
*.wt-tokenWrapper > *:first-child > * {
display: inline-block;
padding: .25em .5ex;
margin: 0 1ex .5em 0;
background-color: #DFEFFC;
border: 1px solid #C5DBEC;
border-radius: 3px;
}
*.wt-tokenWrapper button {
margin-left: 1ex !important;
border-radius: 3px !important;
padding: 0 2px !important;
}
*.wt-tokenWrapper button * {
padding: 0 !important;
}
*.wt-tokenWrapper *.invalid-token {
color: #d00000;
}
*.wt-tokenWrapper *.invalid-action {
background-color: #f0d0d0;
border: 1px solid #de7a7b;
}
*.wt-tokenWrapper *.highlight-token {
border: solid 1px #79B7E7;
}