Browse
For agents
About
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
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.7, at src/admin/loading.css
23 lines
422 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
z-index
:
;
3
animation
:
wsrw-spinner-rotation
0.8
s
linear
infinite
;
4
background-image
:
url
(
"
../admin/images/spinner.svg
"
)
;
5
background-repeat
:
no-repeat
;
6
background-size
:
16
px
16
px
;
7
display
:
none
;
8
height
:
16
px
;
9
margin
:
0
10
px
;
10
position
:
absolute
;
11
width
:
16
px
;
12
z-index
:
9999
;
13
}
14
15
@
keyframes
wsrw-spinner-rotation
{
16
from
{
17
transform
:
rotate
(
0
deg
)
;
18
}
19
to
{
20
transform
:
rotate
(
360
deg
)
;
21
}
22
}
23