PluginProbe
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More / 1.0.7
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More v1.0.7
trunk 1.0.0 1.0.1 1.0.10 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9
search-replace-wpcode / src / admin / loading.css

loading.css in Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More 1.0.7, at src/admin/loading.css

23 lines 422 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wsrw-loading-spinner {
2 z-index: ;
3 animation: wsrw-spinner-rotation 0.8s linear infinite;
4 background-image: url("../admin/images/spinner.svg");
5 background-repeat: no-repeat;
6 background-size: 16px 16px;
7 display: none;
8 height: 16px;
9 margin: 0 10px;
10 position: absolute;
11 width: 16px;
12 z-index: 9999;
13 }
14
15 @keyframes wsrw-spinner-rotation {
16 from {
17 transform: rotate(0deg);
18 }
19 to {
20 transform: rotate(360deg);
21 }
22 }
23