@kasko/fe-loading-indicator 1.3.2 → 2.0.1
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/README.md +1 -1
- package/dist/{loader.js → kasko-loader/kasko-loader.js} +13 -15
- package/dist/spinner/spinner.js +12 -0
- package/index.js +4 -1
- package/package.json +22 -9
- package/src/loader.html +0 -7
- package/src/loader.js +0 -40
- package/src/loader.less +0 -134
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ yarn add @kasko/fe-loading-indicator
|
|
|
15
15
|
Requiring `@kasko/fe-loading-indicator` will return string that could be injected in
|
|
16
16
|
HTML using 'HtmlWebpackPlugin'.
|
|
17
17
|
```js
|
|
18
|
-
const loader = require('@kasko/fe-loading-indicator')();
|
|
18
|
+
const loader = require('@kasko/fe-loading-indicator').kaskoLoader();
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Module accepts configuration object, where custom CSS loading colors could be provided e.g.
|
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
let result = '<style title="li-loader">@keyframes spinner-loader{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.hidden{display:none}#kasko-loader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1500}#kasko-loader-wrapper:not(.li-loaded){background:"@overlaycolor";opacity:1}#kasko-loader{display:block;position:relative;left:50%;top:50%;width:150px;height:150px;margin:-75px 0 0 -75px;border-radius:50%;border:3px solid transparent;border-top-color:"@color1";animation:spin 2s linear infinite;z-index:1501}#kasko-loader::after,#kasko-loader::before{content:"";position:absolute;top:5px;left:5px;right:5px;bottom:5px;border-radius:50%;border:3px solid transparent;border-top-color:"@color2";animation:spin 3s linear infinite}#kasko-loader::after{top:15px;left:15px;right:15px;bottom:15px;border-top-color:"@color3";animation:spin 1.5s linear infinite}#kasko-loader-wrapper .loader-section{position:fixed;top:0;width:50%;height:100%;z-index:1500;transform:translateX(0)}.li-loaded .loader-section{background:"@overlaycolor";opacity:.9}#kasko-loader-wrapper .loader-section.section-left{left:0}#kasko-loader-wrapper .loader-section.section-right{right:0}#kasko-loader-wrapper.li-loaded .loader-section.section-left{transform:translateX(-100%);transition:all .7s .3s cubic-bezier(.645,.045,.355,1)}#kasko-loader-wrapper.li-loaded .loader-section.section-right{transform:translateX(100%);transition:all .7s .3s cubic-bezier(.645,.045,.355,1)}.li-loaded #kasko-loader{opacity:0;transition:all .3s ease-out}#kasko-loader-wrapper.li-loaded{visibility:hidden}.spinner-loader:not(:requigray){animation:spinner-loader 1500ms infinite linear;border-radius:.5em;box-shadow:#025983 1.5em 0 0 0,#025983 1.1em 1.1em 0 0,#025983 0 1.5em 0 0,#025983 -1.1em 1.1em 0 0,#025983 -1.5em 0 0 0,#025983 -1.1em -1.1em 0 0,#025983 0 -1.5em 0 0,#025983 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}</style> <div id="kasko-loader-wrapper" class="hidden"> <div id="kasko-loader"></div> <div class="loader-section section-left"></div> <div class="loader-section section-right"></div> </div> <script>function LoadingIndicator(){this.init=function(){var o=document.getElementById("kasko-loader-wrapper");o&&o.classList.remove("hidden")},this.hide=function(){const o=document.getElementById("kasko-loader-wrapper");o&&o.classList.add("li-loaded")},this.setColors=function(o){for(var t,e=0;e<document.styleSheets.length;e++){var n=document.styleSheets.item(e);if("li-loader"===n.title){t=n;break}}t&&(t.insertRule("#loader { border-top-color:"+o[0]+"!important;}"),t.insertRule("#loader::before { border-top-color:"+o[1]+"!important;}"),t.insertRule("#loader::after { border-top-color:"+o[2]+"!important;}"))}}const loadingIndicator=new LoadingIndicator;window.LoadingIndicator=loadingIndicator,window.LoadingIndicator.init();</script> ';
|
|
1
|
+
"use strict";
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
result = result.replace(
|
|
3
|
+
/**
|
|
4
|
+
* This function is used by gulp to replace LESS variables
|
|
5
|
+
* with actual values.
|
|
6
|
+
*/
|
|
7
|
+
module.exports = function () {
|
|
8
|
+
var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
9
|
+
var result = '<style title="li-loader">@keyframes spinner-loader{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.hidden{display:none}#kasko-loader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1500}#kasko-loader-wrapper:not(.li-loaded){background:"@overlaycolor";opacity:1}#kasko-loader{display:block;position:relative;left:50%;top:50%;width:150px;height:150px;margin:-75px 0 0 -75px;border-radius:50%;border:3px solid transparent;border-top-color:"@color1";animation:spin 2s linear infinite;z-index:1501}#kasko-loader::after,#kasko-loader::before{content:"";position:absolute;top:5px;left:5px;right:5px;bottom:5px;border-radius:50%;border:3px solid transparent;border-top-color:"@color2";animation:spin 3s linear infinite}#kasko-loader::after{top:15px;left:15px;right:15px;bottom:15px;border-top-color:"@color3";animation:spin 1.5s linear infinite}#kasko-loader-wrapper .loader-section{position:fixed;top:0;width:50%;height:100%;z-index:1500;transform:translateX(0)}.li-loaded .loader-section{background:"@overlaycolor";opacity:.9}#kasko-loader-wrapper .loader-section.section-left{left:0}#kasko-loader-wrapper .loader-section.section-right{right:0}#kasko-loader-wrapper.li-loaded .loader-section.section-left{transform:translateX(-100%);transition:all .7s .3s cubic-bezier(.645,.045,.355,1)}#kasko-loader-wrapper.li-loaded .loader-section.section-right{transform:translateX(100%);transition:all .7s .3s cubic-bezier(.645,.045,.355,1)}.li-loaded #kasko-loader{opacity:0;transition:all .3s ease-out}#kasko-loader-wrapper.li-loaded{visibility:hidden}.spinner-loader:not(:requigray){animation:spinner-loader 1500ms infinite linear;border-radius:.5em;box-shadow:#025983 1.5em 0 0 0,#025983 1.1em 1.1em 0 0,#025983 0 1.5em 0 0,#025983 -1.1em 1.1em 0 0,#025983 -1.5em 0 0 0,#025983 -1.1em -1.1em 0 0,#025983 0 -1.5em 0 0,#025983 1.1em -1.1em 0 0;display:inline-block;font-size:10px;width:1em;height:1em;margin:1.5em;overflow:hidden;text-indent:100%}</style> <div id="kasko-loader-wrapper" class="hidden"> <div id="kasko-loader"></div> <div class="loader-section section-left"></div> <div class="loader-section section-right"></div> </div> <script>"use strict";function LoadingIndicator(){var o=this,t=null;function n(o){t||function(){for(var o=0;o<document.styleSheets.length;o+=1){var n=document.styleSheets.item(o);if("li-loader"===n.title){t=n;break}}}(),t&&t.insertRule(o)}function a(o){var t=RegExp("[?&]".concat(o,"=([^&]*)")).exec(window.location.search);if(!t)return"";var n=decodeURIComponent(t[1].replace(/[+]/g," "));try{n=JSON.parse(n)}catch(o){}return n}this.init=function(){var t=a("loader_background_color"),n=a("loader_animation_colors"),r=document.getElementById("kasko-loader-wrapper");n&&o.setAnimationColors(n),t&&o.setBackdropColor(t),r&&r.classList.remove("hidden")},this.hide=function(){var o=document.getElementById("kasko-loader-wrapper");o&&o.classList.add("li-loaded")},this.setColors=function(t){o.setAnimationColors(t)},this.setAnimationColors=function(o){n("#kasko-loader{border-top-color:".concat(o[0],"!important;}")),n("#kasko-loader::before{border-top-color:".concat(o[1],"!important;}")),n("#kasko-loader::after{border-top-color:".concat(o[2],"!important;}"))},this.setBackdropColor=function(o){n("#kasko-loader-wrapper:not(.li-loaded){background:".concat(o,"!important;}")),n(".li-loaded .loader-section{background:".concat(o,"!important;}"))}}var loadingIndicator=new LoadingIndicator;window.LoadingIndicator=loadingIndicator,window.LoadingIndicator.init();</script> ';
|
|
10
|
+
var colors = config.colors || ['#ebbb2a', '#fff', '#a07c0f'];
|
|
11
|
+
colors.forEach(function (color, index) {
|
|
12
|
+
result = result.replace("\"@color".concat(index + 1, "\""), color);
|
|
14
13
|
});
|
|
15
|
-
|
|
16
|
-
result = result.replace(/\"@overlaycolor\"/g, config.overlayColor);
|
|
14
|
+
result = result.replace(/"@overlaycolor"/g, config.overlayColor || '#222');
|
|
17
15
|
return result;
|
|
18
|
-
}
|
|
16
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* This function is used by gulp to replace LESS variables
|
|
5
|
+
* with actual values.
|
|
6
|
+
*/
|
|
7
|
+
module.exports = function () {
|
|
8
|
+
var config = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
9
|
+
var result = '<style title="li-loader">@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(360deg)}}.hidden{display:none}#kasko-loader-wrapper{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1500}#kasko-loader-wrapper svg{display:block;position:relative;left:50%;top:50%;width:150px;height:150px;margin:-75px 0 0 -75px;z-index:1501;animation:spin 1s linear infinite}#kasko-loader-wrapper:not(.li-loaded){background:"@overlaycolor";opacity:1}.li-loaded svg{opacity:0;transition:all .3s ease-out}#kasko-loader-wrapper.li-loaded{visibility:hidden}</style> <div id="kasko-loader-wrapper" class="hidden"> <!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --> <svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient x1="8.042%" y1="0%" x2="65.682%" y2="23.865%" id="a"> <stop stop-color="#fff" stop-opacity="0" offset="0%"/> <stop stop-color="#fff" stop-opacity=".631" offset="63.146%"/> <stop stop-color="#fff" offset="100%"/> </linearGradient> </defs> <g fill="none" fill-rule="evenodd"> <g transform="translate(1 1)"> <path d="M36 18c0-9.94-8.06-18-18-18" id="Oval-2" stroke="url(#a)" stroke-width="2"></path> <circle fill="#fff" cx="36" cy="18" r="1"></circle> </g> </g> </svg> </div> <script>"use strict";function LoadingIndicator(){var o=this,t=null;function n(o){t||function(){for(var o=0;o<document.styleSheets.length;o+=1){var n=document.styleSheets.item(o);if("li-loader"===n.title){t=n;break}}}(),t&&t.insertRule(o)}function a(o){var t=RegExp("[?&]".concat(o,"=([^&]*)")).exec(window.location.search);if(!t)return"";var n=decodeURIComponent(t[1].replace(/[+]/g," "));try{n=JSON.parse(n)}catch(o){}return n}this.init=function(){var t=a("loader_background_color"),n=a("loader_animation_colors"),r=document.getElementById("kasko-loader-wrapper");if(n){var e="string"==typeof n?n:n[0];o.setAnimationColors(e)}t&&o.setBackdropColor(t),r&&r.classList.remove("hidden")},this.hide=function(){var o=document.getElementById("kasko-loader-wrapper");o&&o.classList.add("li-loaded")},this.setAnimationColors=function(o){n("#kasko-loader-wrapper svg stop{stop-color:".concat(o,"!important;}")),n("#kasko-loader-wrapper svg circle{fill:".concat(o,"!important;}"))},this.setBackdropColor=function(o){n("#kasko-loader-wrapper:not(.li-loaded){background:".concat(o,"!important;}"))}}var loadingIndicator=new LoadingIndicator;window.LoadingIndicator=loadingIndicator,window.LoadingIndicator.init();</script> ';
|
|
10
|
+
result = result.replace(/"@overlaycolor"/g, config.overlayColor || '#222');
|
|
11
|
+
return result;
|
|
12
|
+
};
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kasko/fe-loading-indicator",
|
|
3
3
|
"shortname": "fe-loading-indicator",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"description": "Kasko frontend loading indicator",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"main": "index.js",
|
|
@@ -15,16 +15,29 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
18
|
+
"@babel/core": "^7.5.5",
|
|
19
|
+
"@babel/preset-env": "^7.5.5",
|
|
20
|
+
"axios": "^0.19.0",
|
|
21
|
+
"del": "^5.0.0",
|
|
22
|
+
"eslint": "^6.1.0",
|
|
23
|
+
"eslint-config-kasko-base": "^1.1.1",
|
|
24
|
+
"gulp": "^4.0.2",
|
|
25
|
+
"gulp-babel": "^8.0.0",
|
|
20
26
|
"gulp-csso": "^3.0.0",
|
|
21
|
-
"gulp-less": "^
|
|
22
|
-
"gulp-minify": "^
|
|
23
|
-
"gulp-replace": "^0.
|
|
24
|
-
"run-sequence": "^2.2.0"
|
|
27
|
+
"gulp-less": "^4.0.1",
|
|
28
|
+
"gulp-minify": "^3.1.0",
|
|
29
|
+
"gulp-replace": "^1.0.0"
|
|
25
30
|
},
|
|
26
31
|
"scripts": {
|
|
27
32
|
"build": "gulp",
|
|
28
|
-
"test": "
|
|
29
|
-
|
|
33
|
+
"test": "yarn lint",
|
|
34
|
+
"lint": "yarn lint:src && yarn lint:other",
|
|
35
|
+
"lint:src": "eslint src/ --env browser",
|
|
36
|
+
"lint:other": "eslint . --ignore-pattern src --ignore-pattern dist --ignore-pattern index.js --env node"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist/*",
|
|
40
|
+
"index.js",
|
|
41
|
+
"README.md"
|
|
42
|
+
]
|
|
30
43
|
}
|
package/src/loader.html
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<link rel="stylesheet" href="loader.css">
|
|
2
|
-
<div id="kasko-loader-wrapper" class="hidden">
|
|
3
|
-
<div id="kasko-loader"></div>
|
|
4
|
-
<div class="loader-section section-left"></div>
|
|
5
|
-
<div class="loader-section section-right"></div>
|
|
6
|
-
</div>
|
|
7
|
-
<script href="loader.js"></script>
|
package/src/loader.js
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
function LoadingIndicator() {
|
|
2
|
-
this.init = function () {
|
|
3
|
-
var elementById = document.getElementById('kasko-loader-wrapper');
|
|
4
|
-
|
|
5
|
-
if (elementById) {
|
|
6
|
-
elementById.classList.remove('hidden');
|
|
7
|
-
}
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
this.hide = function () {
|
|
11
|
-
const elementById = document.getElementById('kasko-loader-wrapper');
|
|
12
|
-
|
|
13
|
-
if (elementById) {
|
|
14
|
-
elementById.classList.add('li-loaded');
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
this.setColors = function (colors) {
|
|
19
|
-
var styleSheet;
|
|
20
|
-
|
|
21
|
-
for (var i = 0; i < document.styleSheets.length; i++) {
|
|
22
|
-
var styleSheetItem = document.styleSheets.item(i);
|
|
23
|
-
|
|
24
|
-
if (styleSheetItem.title === 'li-loader') {
|
|
25
|
-
styleSheet = styleSheetItem;
|
|
26
|
-
break;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
if (styleSheet) {
|
|
31
|
-
styleSheet.insertRule('#loader { border-top-color:' + colors[0] + '!important;}');
|
|
32
|
-
styleSheet.insertRule('#loader::before { border-top-color:' + colors[1] + '!important;}');
|
|
33
|
-
styleSheet.insertRule('#loader::after { border-top-color:' + colors[2] + '!important;}');
|
|
34
|
-
}
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
const loadingIndicator = new LoadingIndicator();
|
|
39
|
-
window.LoadingIndicator = loadingIndicator;
|
|
40
|
-
window.LoadingIndicator.init();
|
package/src/loader.less
DELETED
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
@keyframes spinner-loader {
|
|
2
|
-
0% {
|
|
3
|
-
transform: rotate(0deg);
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
100% {
|
|
7
|
-
transform: rotate(360deg);
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.hidden {
|
|
12
|
-
display: none;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
#kasko-loader-wrapper {
|
|
16
|
-
position: fixed;
|
|
17
|
-
top: 0;
|
|
18
|
-
left: 0;
|
|
19
|
-
width: 100%;
|
|
20
|
-
height: 100%;
|
|
21
|
-
z-index: 1500;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
#kasko-loader-wrapper:not(.li-loaded) {
|
|
25
|
-
background: "@overlaycolor";
|
|
26
|
-
opacity: 1;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
#kasko-loader {
|
|
30
|
-
display: block;
|
|
31
|
-
position: relative;
|
|
32
|
-
left: 50%;
|
|
33
|
-
top: 50%;
|
|
34
|
-
width: 150px;
|
|
35
|
-
height: 150px;
|
|
36
|
-
margin: -75px 0 0 -75px;
|
|
37
|
-
border-radius: 50%;
|
|
38
|
-
border: 3px solid transparent;
|
|
39
|
-
border-top-color: "@color1";
|
|
40
|
-
animation: spin 2s linear infinite;
|
|
41
|
-
z-index: 1501;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
#kasko-loader::before {
|
|
45
|
-
content: "";
|
|
46
|
-
position: absolute;
|
|
47
|
-
top: 5px;
|
|
48
|
-
left: 5px;
|
|
49
|
-
right: 5px;
|
|
50
|
-
bottom: 5px;
|
|
51
|
-
border-radius: 50%;
|
|
52
|
-
border: 3px solid transparent;
|
|
53
|
-
border-top-color: "@color2";
|
|
54
|
-
animation: spin 3s linear infinite;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
#kasko-loader::after {
|
|
58
|
-
content: "";
|
|
59
|
-
position: absolute;
|
|
60
|
-
top: 15px;
|
|
61
|
-
left: 15px;
|
|
62
|
-
right: 15px;
|
|
63
|
-
bottom: 15px;
|
|
64
|
-
border-radius: 50%;
|
|
65
|
-
border: 3px solid transparent;
|
|
66
|
-
border-top-color: "@color3";
|
|
67
|
-
animation: spin 1.5s linear infinite;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
@keyframes spin {
|
|
71
|
-
0% {
|
|
72
|
-
transform: rotate(0deg);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
100% {
|
|
76
|
-
transform: rotate(360deg);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
#kasko-loader-wrapper .loader-section {
|
|
81
|
-
position: fixed;
|
|
82
|
-
top: 0;
|
|
83
|
-
width: 50%;
|
|
84
|
-
height: 100%;
|
|
85
|
-
z-index: 1500;
|
|
86
|
-
transform: translateX(0);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.li-loaded .loader-section {
|
|
90
|
-
background: "@overlaycolor";
|
|
91
|
-
opacity: .9;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
#kasko-loader-wrapper .loader-section.section-left {
|
|
95
|
-
left: 0;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
#kasko-loader-wrapper .loader-section.section-right {
|
|
99
|
-
right: 0;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
/* Loaded */
|
|
103
|
-
|
|
104
|
-
#kasko-loader-wrapper.li-loaded .loader-section.section-left {
|
|
105
|
-
transform: translateX(-100%);
|
|
106
|
-
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
#kasko-loader-wrapper.li-loaded .loader-section.section-right {
|
|
110
|
-
transform: translateX(100%);
|
|
111
|
-
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.li-loaded #kasko-loader {
|
|
115
|
-
opacity: 0;
|
|
116
|
-
transition: all 0.3s ease-out;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
#kasko-loader-wrapper.li-loaded {
|
|
120
|
-
visibility: hidden;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.spinner-loader:not(:requigray) {
|
|
124
|
-
animation: spinner-loader 1500ms infinite linear;
|
|
125
|
-
border-radius: 0.5em;
|
|
126
|
-
box-shadow: #025983 1.5em 0 0 0, #025983 1.1em 1.1em 0 0, #025983 0 1.5em 0 0, #025983 -1.1em 1.1em 0 0, #025983 -1.5em 0 0 0, #025983 -1.1em -1.1em 0 0, #025983 0 -1.5em 0 0, #025983 1.1em -1.1em 0 0;
|
|
127
|
-
display: inline-block;
|
|
128
|
-
font-size: 10px;
|
|
129
|
-
width: 1em;
|
|
130
|
-
height: 1em;
|
|
131
|
-
margin: 1.5em;
|
|
132
|
-
overflow: hidden;
|
|
133
|
-
text-indent: 100%;
|
|
134
|
-
}
|