@acorex/styles 6.0.8 → 6.1.0
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/package.json +1 -1
- package/src/components/_alert.scss +0 -2
- package/src/components/_avatar.scss +41 -50
- package/src/components/_badge.scss +10 -15
- package/src/components/_button.scss +11 -7
- package/src/components/_dropdown.scss +3 -3
- package/src/components/_editor-container.scss +25 -14
- package/src/components/_image.scss +24 -0
- package/src/components/_list.scss +1 -1
- package/src/components/_menu.scss +21 -2
- package/src/components/_popup.scss +6 -0
- package/src/components/_range-slider.scss +23 -16
- package/src/components/_result.scss +2 -2
- package/src/components/_tabs copy.scss +235 -0
- package/src/components/_tabs.scss +4 -4
- package/src/components/_textarea.scss +3 -8
- package/src/components/_uploader.scss +18 -0
- package/src/components/index.scss +2 -0
- package/src/icons/demo.html +71 -1
- package/src/icons/fonts/acorex-icon.eot +0 -0
- package/src/icons/fonts/acorex-icon.svg +5 -0
- package/src/icons/fonts/acorex-icon.ttf +0 -0
- package/src/icons/fonts/acorex-icon.woff +0 -0
- package/src/icons/selection.json +1 -1
- package/src/icons/style.css +20 -5
- package/src/icons/style.scss +30 -5
- package/src/icons/variables.scss +5 -0
- package/src/utility/index.scss +8 -8
package/src/icons/style.scss
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
@font-face {
|
4
4
|
font-family: '#{$icomoon-font-family}';
|
5
|
-
src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?
|
6
|
-
src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?
|
7
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?
|
8
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?
|
9
|
-
url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?
|
5
|
+
src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?1da3f8');
|
6
|
+
src: url('#{$icomoon-font-path}/#{$icomoon-font-family}.eot?1da3f8#iefix') format('embedded-opentype'),
|
7
|
+
url('#{$icomoon-font-path}/#{$icomoon-font-family}.ttf?1da3f8') format('truetype'),
|
8
|
+
url('#{$icomoon-font-path}/#{$icomoon-font-family}.woff?1da3f8') format('woff'),
|
9
|
+
url('#{$icomoon-font-path}/#{$icomoon-font-family}.svg?1da3f8##{$icomoon-font-family}') format('svg');
|
10
10
|
font-weight: normal;
|
11
11
|
font-style: normal;
|
12
12
|
font-display: block;
|
@@ -27,6 +27,31 @@
|
|
27
27
|
-moz-osx-font-smoothing: grayscale;
|
28
28
|
}
|
29
29
|
|
30
|
+
.ax-ic-inbox {
|
31
|
+
&:before {
|
32
|
+
content: $ax-ic-inbox;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
.ax-ic-cloud-download {
|
36
|
+
&:before {
|
37
|
+
content: $ax-ic-cloud-download;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
.ax-ic-download {
|
41
|
+
&:before {
|
42
|
+
content: $ax-ic-download;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
.ax-ic-upload {
|
46
|
+
&:before {
|
47
|
+
content: $ax-ic-upload;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
.ax-ic-cloud-upload {
|
51
|
+
&:before {
|
52
|
+
content: $ax-ic-cloud-upload;
|
53
|
+
}
|
54
|
+
}
|
30
55
|
.ax-ic-empty-box {
|
31
56
|
&:before {
|
32
57
|
content: $ax-ic-empty-box;
|
package/src/icons/variables.scss
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
$icomoon-font-family: "acorex-icon" !default;
|
2
2
|
$icomoon-font-path: "fonts" !default;
|
3
3
|
|
4
|
+
$ax-ic-inbox: "\e925";
|
5
|
+
$ax-ic-cloud-download: "\e926";
|
6
|
+
$ax-ic-download: "\e927";
|
7
|
+
$ax-ic-upload: "\e928";
|
8
|
+
$ax-ic-cloud-upload: "\e929";
|
4
9
|
$ax-ic-empty-box: "\e924";
|
5
10
|
$ax-ic-colorize: "\e921";
|
6
11
|
$ax-ic-pase: "\e922";
|
package/src/utility/index.scss
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
@layer utilities {
|
2
2
|
.ax-sm {
|
3
3
|
--ax-base-size: calc(var(--ax-size) - 2px);
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
font-size: 0.75rem;
|
5
|
+
* {
|
6
|
+
font-size: 0.75rem;
|
7
|
+
}
|
8
8
|
}
|
9
9
|
.ax-md {
|
10
10
|
--ax-base-size: var(--ax-size);
|
11
|
-
font-size:
|
11
|
+
font-size: 0.875rem;
|
12
12
|
* {
|
13
|
-
font-size:
|
13
|
+
font-size: 0.875rem;
|
14
14
|
}
|
15
15
|
}
|
16
16
|
.ax-lg {
|
17
17
|
--ax-base-size: calc(var(--ax-size) + 2px);
|
18
|
-
font-size:
|
18
|
+
font-size: 1rem;
|
19
19
|
* {
|
20
|
-
font-size:
|
20
|
+
font-size: 1rem;
|
21
21
|
}
|
22
22
|
}
|
23
23
|
}
|