PluginProbe
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More / 1.0.6
Search & Replace Everything by WPCode – Find and Replace Media, Text, Links, and More v1.0.6
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.6, at src/admin/loading.css

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