@acorex/styles 7.17.14 → 7.17.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/icons/demo-files/demo.css +19 -27
- package/icons/demo-files/demo.js +24 -23
- package/icons/demo.html +29 -1
- package/icons/fonts/acorex-icons.eot +0 -0
- package/icons/fonts/acorex-icons.svg +2 -0
- package/icons/fonts/acorex-icons.ttf +0 -0
- package/icons/fonts/acorex-icons.woff +0 -0
- package/icons/selection.json +1 -1289
- package/icons/style.css +86 -81
- package/icons/style.scss +92 -82
- package/icons/variables.scss +80 -77
- package/index.css +24 -24
- package/index.min.css +1 -1
- package/package.json +1 -1
- package/src/shared/_color-look.scss +1 -1
@@ -12,25 +12,22 @@ h1 {
|
|
12
12
|
font-weight: normal;
|
13
13
|
}
|
14
14
|
small {
|
15
|
-
font-size:
|
15
|
+
font-size: .66666667em;
|
16
16
|
}
|
17
17
|
a {
|
18
18
|
color: #e74c3c;
|
19
19
|
text-decoration: none;
|
20
20
|
}
|
21
|
-
a:hover,
|
22
|
-
a:focus {
|
21
|
+
a:hover, a:focus {
|
23
22
|
box-shadow: 0 1px #e74c3c;
|
24
23
|
}
|
25
|
-
.bshadow0,
|
26
|
-
input {
|
24
|
+
.bshadow0, input {
|
27
25
|
box-shadow: inset 0 -2px #e7e7e7;
|
28
26
|
}
|
29
27
|
input:hover {
|
30
28
|
box-shadow: inset 0 -2px #ccc;
|
31
29
|
}
|
32
|
-
input,
|
33
|
-
fieldset {
|
30
|
+
input, fieldset {
|
34
31
|
font-family: sans-serif;
|
35
32
|
font-size: 1em;
|
36
33
|
margin: 0;
|
@@ -41,7 +38,7 @@ input {
|
|
41
38
|
color: inherit;
|
42
39
|
line-height: 1.5;
|
43
40
|
height: 1.5em;
|
44
|
-
padding:
|
41
|
+
padding: .25em 0;
|
45
42
|
}
|
46
43
|
input:focus {
|
47
44
|
outline: none;
|
@@ -80,22 +77,19 @@ p {
|
|
80
77
|
margin-bottom: 1em;
|
81
78
|
}
|
82
79
|
.mvm {
|
83
|
-
margin-top:
|
84
|
-
margin-bottom:
|
80
|
+
margin-top: .75em;
|
81
|
+
margin-bottom: .75em;
|
85
82
|
}
|
86
83
|
.mtn {
|
87
84
|
margin-top: 0;
|
88
85
|
}
|
89
|
-
.mtl,
|
90
|
-
.mal {
|
86
|
+
.mtl, .mal {
|
91
87
|
margin-top: 1.5em;
|
92
88
|
}
|
93
|
-
.mbl,
|
94
|
-
.mal {
|
89
|
+
.mbl, .mal {
|
95
90
|
margin-bottom: 1.5em;
|
96
91
|
}
|
97
|
-
.mal,
|
98
|
-
.mhl {
|
92
|
+
.mal, .mhl {
|
99
93
|
margin-left: 1.5em;
|
100
94
|
margin-right: 1.5em;
|
101
95
|
}
|
@@ -104,18 +98,16 @@ p {
|
|
104
98
|
margin-right: 1em;
|
105
99
|
}
|
106
100
|
.mls {
|
107
|
-
margin-left:
|
101
|
+
margin-left: .25em;
|
108
102
|
}
|
109
103
|
.ptl {
|
110
104
|
padding-top: 1.5em;
|
111
105
|
}
|
112
|
-
.pbs,
|
113
|
-
.
|
114
|
-
padding-bottom: 0.25em;
|
106
|
+
.pbs, .pvs {
|
107
|
+
padding-bottom: .25em;
|
115
108
|
}
|
116
|
-
.pvs,
|
117
|
-
.
|
118
|
-
padding-top: 0.25em;
|
109
|
+
.pvs, .pts {
|
110
|
+
padding-top: .25em;
|
119
111
|
}
|
120
112
|
.unit {
|
121
113
|
float: left;
|
@@ -129,9 +121,8 @@ p {
|
|
129
121
|
.size1of1 {
|
130
122
|
width: 100%;
|
131
123
|
}
|
132
|
-
.clearfix:before,
|
133
|
-
|
134
|
-
content: ' ';
|
124
|
+
.clearfix:before, .clearfix:after {
|
125
|
+
content: " ";
|
135
126
|
display: table;
|
136
127
|
}
|
137
128
|
.clearfix:after {
|
@@ -143,7 +134,7 @@ p {
|
|
143
134
|
.textbox0 {
|
144
135
|
width: 3em;
|
145
136
|
background: #f1f1f1;
|
146
|
-
padding:
|
137
|
+
padding: .25em .5em;
|
147
138
|
line-height: 1.5;
|
148
139
|
height: 1.5em;
|
149
140
|
}
|
@@ -158,3 +149,4 @@ p {
|
|
158
149
|
.fs1 {
|
159
150
|
font-size: 32px;
|
160
151
|
}
|
152
|
+
|
package/icons/demo-files/demo.js
CHANGED
@@ -1,29 +1,30 @@
|
|
1
1
|
if (!('boxShadow' in document.body.style)) {
|
2
|
-
|
2
|
+
document.body.setAttribute('class', 'noBoxShadow');
|
3
3
|
}
|
4
4
|
|
5
|
-
document.body.addEventListener(
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
5
|
+
document.body.addEventListener("click", function(e) {
|
6
|
+
var target = e.target;
|
7
|
+
if (target.tagName === "INPUT" &&
|
8
|
+
target.getAttribute('class').indexOf('liga') === -1) {
|
9
|
+
target.select();
|
10
|
+
}
|
10
11
|
});
|
11
12
|
|
12
|
-
(function
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
13
|
+
(function() {
|
14
|
+
var fontSize = document.getElementById('fontSize'),
|
15
|
+
testDrive = document.getElementById('testDrive'),
|
16
|
+
testText = document.getElementById('testText');
|
17
|
+
function updateTest() {
|
18
|
+
testDrive.innerHTML = testText.value || String.fromCharCode(160);
|
19
|
+
if (window.icomoonLiga) {
|
20
|
+
window.icomoonLiga(testDrive);
|
21
|
+
}
|
22
|
+
}
|
23
|
+
function updateSize() {
|
24
|
+
testDrive.style.fontSize = fontSize.value + 'px';
|
20
25
|
}
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
testText.addEventListener('input', updateTest, false);
|
27
|
-
testText.addEventListener('change', updateTest, false);
|
28
|
-
updateSize();
|
29
|
-
})();
|
26
|
+
fontSize.addEventListener('change', updateSize, false);
|
27
|
+
testText.addEventListener('input', updateTest, false);
|
28
|
+
testText.addEventListener('change', updateTest, false);
|
29
|
+
updateSize();
|
30
|
+
}());
|
package/icons/demo.html
CHANGED
@@ -9,10 +9,38 @@
|
|
9
9
|
<link rel="stylesheet" href="style.css"></head>
|
10
10
|
<body>
|
11
11
|
<div class="bgc1 clearfix">
|
12
|
-
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> acorex-icons <small class="fgc1">(Glyphs:
|
12
|
+
<h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> acorex-icons <small class="fgc1">(Glyphs: 77)</small></h1>
|
13
13
|
</div>
|
14
14
|
<div class="clearfix mhl ptl">
|
15
15
|
<h1 class="mvm mtn fgc1">Grid Size: Unknown</h1>
|
16
|
+
<div class="glyph fs1">
|
17
|
+
<div class="clearfix bshadow0 pbs">
|
18
|
+
<span class="ax-icon ax-icon-block"></span>
|
19
|
+
<span class="mls"> ax-icon-block</span>
|
20
|
+
</div>
|
21
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
22
|
+
<input type="text" readonly value="e94b" class="unit size1of2" />
|
23
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
24
|
+
</fieldset>
|
25
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
26
|
+
<span class="unit pvs fgc1">liga: </span>
|
27
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<div class="glyph fs1">
|
31
|
+
<div class="clearfix bshadow0 pbs">
|
32
|
+
<span class="ax-icon ax-icon-archive"></span>
|
33
|
+
<span class="mls"> ax-icon-archive</span>
|
34
|
+
</div>
|
35
|
+
<fieldset class="fs0 size1of1 clearfix hidden-false">
|
36
|
+
<input type="text" readonly value="e94c" class="unit size1of2" />
|
37
|
+
<input type="text" maxlength="1" readonly value="" class="unitRight size1of2 talign-right" />
|
38
|
+
</fieldset>
|
39
|
+
<div class="fs0 bshadow0 clearfix hidden-true">
|
40
|
+
<span class="unit pvs fgc1">liga: </span>
|
41
|
+
<input type="text" readonly value="" class="liga unitRight" />
|
42
|
+
</div>
|
43
|
+
</div>
|
16
44
|
<div class="glyph fs1">
|
17
45
|
<div class="clearfix bshadow0 pbs">
|
18
46
|
<span class="ax-icon ax-icon-more-vertical"></span>
|
Binary file
|
@@ -82,4 +82,6 @@
|
|
82
82
|
<glyph unicode="" glyph-name="arrow-long-left" d="M384 149.333l-298.667 298.667 298.667 298.667 59.733-59.733-195.2-196.267h690.133v-85.333h-690.133l196.267-196.267-60.8-59.733z" />
|
83
83
|
<glyph unicode="" glyph-name="arrow-long-down" d="M512 21.333l-298.667 298.667 59.733 59.733 196.267-195.2v690.133h85.333v-690.133l196.267 196.267 59.733-60.8-298.667-298.667z" />
|
84
84
|
<glyph unicode="" glyph-name="more-horizontal" d="M256 362.667q-35.2 0-60.267 25.067t-25.067 60.267 25.067 60.267 60.267 25.067 60.267-25.067 25.067-60.267-25.067-60.267-60.267-25.067zM512 362.667q-35.2 0-60.267 25.067t-25.067 60.267 25.067 60.267 60.267 25.067 60.267-25.067 25.067-60.267-25.067-60.267-60.267-25.067zM768 362.667q-35.2 0-60.267 25.067t-25.067 60.267 25.067 60.267 60.267 25.067 60.267-25.067 25.067-60.267-25.067-60.267-60.267-25.067z" />
|
85
|
+
<glyph unicode="" glyph-name="block" d="M512 21.333q-88.533 0-166.4 33.6t-135.467 91.2-91.2 135.467-33.6 166.4 33.6 166.4 91.2 135.467 135.467 91.2 166.4 33.6 166.4-33.6 135.467-91.2 91.2-135.467 33.6-166.4-33.6-166.4-91.2-135.467-135.467-91.2-166.4-33.6zM512 106.667q57.6 0 110.933 18.667t98.133 53.867l-477.867 477.867q-35.2-44.8-53.867-98.133t-18.667-110.933q0-142.933 99.2-242.133t242.133-99.2zM780.8 238.933q35.2 44.8 53.867 98.133t18.667 110.933q0 142.933-99.2 242.133t-242.133 99.2q-57.6 0-110.933-18.667t-98.133-53.867l477.867-477.867z" />
|
86
|
+
<glyph unicode="" glyph-name="archive" d="M213.333 21.333q-35.2 0-60.267 25.067t-25.067 60.267v481.067q-19.2 11.733-30.933 30.4t-11.733 43.2v128q0 35.2 25.067 60.267t60.267 25.067h682.667q35.2 0 60.267-25.067t25.067-60.267v-128q0-24.533-11.733-43.2t-30.933-30.4v-481.067q0-35.2-25.067-60.267t-60.267-25.067h-597.333zM213.333 576v-469.333h597.333v469.333h-597.333zM170.667 661.333h682.667v128h-682.667v-128zM384 362.667h256v85.333h-256v-85.333z" />
|
85
87
|
</font></defs></svg>
|
Binary file
|
Binary file
|