blob: aafdff36a440960f7fd13aecfe3cbad8c7139b6b (
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
102
103
104
105
106
107
108
109
110
111
112
|
/*!
* OOjs UI v0.1.0-pre (f2c3f12959)
* https://www.mediawiki.org/wiki/OOjs_UI
*
* Copyright 2011–2014 OOjs Team and other contributors.
* Released under the MIT license
* http://oojs.mit-license.org
*
* Date: 2014-09-18T23:22:20Z
*/
/*
* Blank theme mixins.
*
* Base styles invoke these mixins at the end of their definitions. Override these mixins to add
* additional rules to the base styles.
*/
.oo-ui-icon-add-item {
background-image: /* @embed */ url(images/icons/add-item.svg);
}
.oo-ui-icon-advanced {
background-image: /* @embed */ url(images/icons/advanced.svg);
}
.oo-ui-icon-alert {
background-image: /* @embed */ url(images/icons/alert.svg);
}
.oo-ui-icon-check {
background-image: /* @embed */ url(images/icons/check.svg);
}
.oo-ui-icon-clear {
background-image: /* @embed */ url(images/icons/clear.svg);
}
.oo-ui-icon-close {
background-image: /* @embed */ url(images/icons/close.svg);
}
.oo-ui-icon-code {
background-image: /* @embed */ url(images/icons/code.svg);
}
.oo-ui-icon-collapse {
background-image: /* @embed */ url(images/icons/collapse.svg);
}
.oo-ui-icon-comment {
background-image: /* @embed */ url(images/icons/comment.svg);
}
.oo-ui-icon-expand {
background-image: /* @embed */ url(images/icons/expand.svg);
}
.oo-ui-icon-help {
background-image: /* @embed */ url(images/icons/help.svg);
}
.oo-ui-icon-info {
background-image: /* @embed */ url(images/icons/info.svg);
}
.oo-ui-icon-link {
background-image: /* @embed */ url(images/icons/link.svg);
}
.oo-ui-icon-menu {
background-image: /* @embed */ url(images/icons/menu.svg);
}
.oo-ui-icon-next {
background-image: /* @embed */ url(images/icons/move-ltr.svg);
}
.oo-ui-icon-picture {
background-image: /* @embed */ url(images/icons/picture.svg);
}
.oo-ui-icon-previous {
background-image: /* @embed */ url(images/icons/move-rtl.svg);
}
.oo-ui-icon-redo {
background-image: /* @embed */ url(images/icons/arched-arrow-ltr.svg);
}
.oo-ui-icon-remove {
background-image: /* @embed */ url(images/icons/remove.svg);
}
.oo-ui-icon-search {
background-image: /* @embed */ url(images/icons/search.svg);
}
.oo-ui-icon-settings {
background-image: /* @embed */ url(images/icons/settings.svg);
}
.oo-ui-icon-tag {
background-image: /* @embed */ url(images/icons/tag.svg);
}
.oo-ui-icon-undo {
background-image: /* @embed */ url(images/icons/arched-arrow-rtl.svg);
}
.oo-ui-icon-window {
background-image: /* @embed */ url(images/icons/window.svg);
}
.oo-ui-indicator-alert {
background-image: /* @embed */ url(images/indicators/alert.svg);
}
.oo-ui-indicator-down {
background-image: /* @embed */ url(images/indicators/arrow-down.svg);
}
.oo-ui-indicator-next {
background-image: /* @embed */ url(images/indicators/arrow-ltr.svg);
}
.oo-ui-indicator-previous {
background-image: /* @embed */ url(images/indicators/arrow-rtl.svg);
}
.oo-ui-indicator-required {
background-image: /* @embed */ url(images/indicators/required.svg);
}
.oo-ui-indicator-up {
background-image: /* @embed */ url(images/indicators/arrow-up.svg);
}
.oo-ui-texture-pending {
background-image: /* @embed */ url(images/textures/pending.gif);
}
.oo-ui-texture-transparency {
background-image: /* @embed */ url(images/textures/transparency.svg);
}
|