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