forked from melloc01/angular-input-stars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular-input-stars.css
61 lines (41 loc) · 930 Bytes
/
angular-input-stars.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
/* <input-star></input-star> directive */
.angular-input-stars {
display: inline-block;
padding: 0;
margin-left: -5px;
list-style: none;
}
.angular-input-stars > li {
font-size: 17px;
display: inline-block;
padding-right: 5px;
padding-left: 5px;
cursor: pointer;
}
.angular-input-stars > li i.readonly {
cursor: not-allowed;
}
.angular-input-stars > li .active.material-icons {
color: red;
}
.angular-input-stars > li .active:not(.material-icons) {
color: #FDE35E;
text-shadow: black 0 0 1px, 0 0 1px;
}
.angular-input-stars > li .active.angular-input-stars-hover:not(.material-icons) {
text-shadow: black 0 0 3px;
}
.example-element .view-code{
position: absolute;
right: 0;
top: -10px;
}
.row .example-element {
min-height: 200px;
}
.angular-input-stars > li .active.red:not(.material-icons) {
color: red;
}
.angular-input-stars > li .active.blue:not(.material-icons) {
color: blue;
}