@itfin/components 1.3.2 → 1.3.3
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
CHANGED
|
@@ -68,7 +68,6 @@
|
|
|
68
68
|
margin-top: -16px;
|
|
69
69
|
margin-left: -16px;
|
|
70
70
|
}
|
|
71
|
-
|
|
72
71
|
&-icon {
|
|
73
72
|
@extend .itf-spinner;
|
|
74
73
|
|
|
@@ -81,6 +80,11 @@
|
|
|
81
80
|
height: 32px;
|
|
82
81
|
width: 32px;
|
|
83
82
|
}
|
|
83
|
+
|
|
84
|
+
&-text {
|
|
85
|
+
padding: 0 !important;
|
|
86
|
+
background-color: transparent !important;
|
|
87
|
+
}
|
|
84
88
|
}
|
|
85
89
|
}
|
|
86
90
|
|
|
@@ -9,7 +9,7 @@ export default {
|
|
|
9
9
|
loader = elem('div', 'itf-loading itf-loading-default');
|
|
10
10
|
const message = elem('div', 'itf-loading-message text-center');
|
|
11
11
|
const icon = elem('span', 'itf-loading-icon');
|
|
12
|
-
const loadingText = elem('span');
|
|
12
|
+
const loadingText = elem('span', 'itf-loading-text');
|
|
13
13
|
message.appendChild(icon);
|
|
14
14
|
message.appendChild(loadingText);
|
|
15
15
|
loader.appendChild(message);
|