PluginProbe
WP Ultimate Post Grid / 3.3.0
WP Ultimate Post Grid v3.3.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / assets / css / admin / shared / loader.scss

loader.scss in WP Ultimate Post Grid 3.3.0, at assets/css/admin/shared/loader.scss

17 lines 426 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wpupg-admin-loader {
2 display: inline-block;
3 width: 10px;
4 height: 10px;
5 border: 2px solid rgba(200, 200, 200, 0.3);
6 border-radius: 50%;
7 border-top-color: #444;
8 animation: spin 1s ease-in-out infinite;
9 -webkit-animation: spin 1s ease-in-out infinite;
10 }
11
12 @keyframes spin {
13 to { -webkit-transform: rotate(360deg); }
14 }
15 @-webkit-keyframes spin {
16 to { -webkit-transform: rotate(360deg); }
17 }