blob: a241851f4c307a9ebce2ae6f0037ca125d2ed239 (
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
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
|
.sprite-base {
background: url('../assets/images/sprite.png') top left no-repeat;
}
.portal-logo {
.sprite-base;
width: 28px;
height: 28px;
background-position: -10px -10px;
}
.ico_user {
.sprite-base;
width: 16px;
height: 19px;
background-position: -10px -48px;
}
.ico_add_user {
.sprite-base;
width: 19px;
height: 19px;
background-position: -10px -78px;
}
.ico_dropdown {
.sprite-base;
width: 12px;
height: 7px;
background-position: -10px -107px;
}
.ico_search {
.sprite-base;
width: 14px;
height: 14px;
background-position: -10px -124px;
}
.ico_trash_default {
.sprite-base;
width: 12px;
height: 15px;
background-position: -10px -148px;
}
.ico_trash_disabled {
.sprite-base;
width: 12px;
height: 15px;
background-position: -10px -173px;
}
.arrow_down {
.sprite-base;
width: 12px;
height: 5px;
background-position: -10px -198px;
}
.arrow_up {
.sprite-base;
width: 12px;
height: 5px;
background-position: -10px -213px;
}
.checkbox_checked {
.sprite-base;
width: 14px;
height: 14px;
background-position: -10px -228px;
}
.checkbox_disabled {
.sprite-base;
width: 14px;
height: 14px;
background-position: -10px -252px;
}
.checkbox_unchecked {
.sprite-base;
width: 14px;
height: 14px;
background-position: -10px -276px;
}
.checkbox_unchecked_hover {
.sprite-base;
width: 14px;
height: 14px;
background-position: -10px -300px;
}
.default_upload_image{
.sprite-base;
width:150px;
height:100px;
background-position:-10px -324px;
}
|