blob: 6aa01592ec6fa1ca1fcf2221ac660e586b1e6531 (
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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 14 14"
xml:space="preserve">
<defs>
<style type="text/css">
use:not(:target) {
display: none;
}
#addpage, #alreadyadded {
fill: #808080;
}
#addpage-hover, #alreadyadded-hover {
fill: #555555;
}
#addpage-active, #alreadyadded-active {
fill: #0095DD;
}
</style>
<mask id="plus-mask">
<rect width="100%" height="100%" fill="white"/>
<rect x="3" y="6" width="8" height="2"/>
<rect x="6" y="3" width="2" height="8"/>
</mask>
<mask id="minus-mask">
<rect width="100%" height="100%" fill="white"/>
<rect x="3" y="6" width="8" height="2"/>
</mask>
<g id="addpage-shape">
<circle cx="7" cy="7" r="6" mask="url(#plus-mask)"/>
</g>
<g id="removepage-shape">
<circle cx="7" cy="7" r="6" mask="url(#minus-mask)"/>
</g>
</defs>
<use id="addpage" xlink:href="#addpage-shape"/>
<use id="addpage-hover" xlink:href="#addpage-shape"/>
<use id="addpage-active" xlink:href="#addpage-shape"/>
<use id="alreadyadded" xlink:href="#removepage-shape"/>
<use id="alreadyadded-hover" xlink:href="#removepage-shape"/>
<use id="alreadyadded-active" xlink:href="#removepage-shape"/>
</svg>
|