Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
f7336639
Commit
f7336639
authored
Mar 31, 2018
by
Vipul Basapati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added loader css into a new file and added it into webpack
parent
cd89331d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
120 deletions
+1
-120
app.blade.php
resources/views/backend/layouts/app.blade.php
+0
-120
webpack.mix.js
webpack.mix.js
+1
-0
No files found.
resources/views/backend/layouts/app.blade.php
View file @
f7336639
...
...
@@ -40,126 +40,6 @@
'csrfToken'
=>
csrf_token
(),
]);
?>
</script>
<style
type=
"text/css"
>
.loading
{
position
:
fixed
;
z-index
:
999
;
height
:
2em
;
width
:
2em
;
overflow
:
show
;
margin
:
auto
;
top
:
0
;
left
:
0
;
bottom
:
0
;
right
:
0
;
}
/* Transparent Overlay */
.loading
:before
{
content
:
''
;
display
:
block
;
position
:
fixed
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
background-color
:
rgba
(
0
,
0
,
0
,
0.3
);
}
/* :not(:required) hides these rules from IE9 and below */
.loading
:not
(
:required
)
{
/* hide "loading..." text */
font
:
0
/
0
a
;
color
:
transparent
;
text-shadow
:
none
;
background-color
:
transparent
;
border
:
0
;
}
.loading
:not
(
:required
)
:after
{
content
:
''
;
display
:
block
;
font-size
:
10px
;
width
:
1em
;
height
:
1em
;
margin-top
:
-0.5em
;
-webkit-animation
:
spinner
1500ms
infinite
linear
;
-moz-animation
:
spinner
1500ms
infinite
linear
;
-ms-animation
:
spinner
1500ms
infinite
linear
;
-o-animation
:
spinner
1500ms
infinite
linear
;
animation
:
spinner
1500ms
infinite
linear
;
border-radius
:
0.5em
;
-webkit-box-shadow
:
rgba
(
0
,
0
,
0
,
0.75
)
1.5em
0
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
1.1em
1.1em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
0
1.5em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
-1.1em
1.1em
0
0
,
rgba
(
0
,
0
,
0
,
0.5
)
-1.5em
0
0
0
,
rgba
(
0
,
0
,
0
,
0.5
)
-1.1em
-1.1em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
0
-1.5em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
1.1em
-1.1em
0
0
;
box-shadow
:
rgba
(
0
,
0
,
0
,
0.75
)
1.5em
0
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
1.1em
1.1em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
0
1.5em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
-1.1em
1.1em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
-1.5em
0
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
-1.1em
-1.1em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
0
-1.5em
0
0
,
rgba
(
0
,
0
,
0
,
0.75
)
1.1em
-1.1em
0
0
;
}
/* Animation */
@-webkit-keyframes
spinner
{
0
%
{
-webkit-transform
:
rotate
(
0deg
);
-moz-transform
:
rotate
(
0deg
);
-ms-transform
:
rotate
(
0deg
);
-o-transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
}
100
%
{
-webkit-transform
:
rotate
(
360deg
);
-moz-transform
:
rotate
(
360deg
);
-ms-transform
:
rotate
(
360deg
);
-o-transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
}
}
@-moz-keyframes
spinner
{
0
%
{
-webkit-transform
:
rotate
(
0deg
);
-moz-transform
:
rotate
(
0deg
);
-ms-transform
:
rotate
(
0deg
);
-o-transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
}
100
%
{
-webkit-transform
:
rotate
(
360deg
);
-moz-transform
:
rotate
(
360deg
);
-ms-transform
:
rotate
(
360deg
);
-o-transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
}
}
@-o-keyframes
spinner
{
0
%
{
-webkit-transform
:
rotate
(
0deg
);
-moz-transform
:
rotate
(
0deg
);
-ms-transform
:
rotate
(
0deg
);
-o-transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
}
100
%
{
-webkit-transform
:
rotate
(
360deg
);
-moz-transform
:
rotate
(
360deg
);
-ms-transform
:
rotate
(
360deg
);
-o-transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
}
}
@keyframes
spinner
{
0
%
{
-webkit-transform
:
rotate
(
0deg
);
-moz-transform
:
rotate
(
0deg
);
-ms-transform
:
rotate
(
0deg
);
-o-transform
:
rotate
(
0deg
);
transform
:
rotate
(
0deg
);
}
100
%
{
-webkit-transform
:
rotate
(
360deg
);
-moz-transform
:
rotate
(
360deg
);
-ms-transform
:
rotate
(
360deg
);
-o-transform
:
rotate
(
360deg
);
transform
:
rotate
(
360deg
);
}
}
</style>
</head>
<body
class=
"skin-{{ config('backend.theme') }} {{ config('backend.layout') }}"
>
<div
class=
"loading"
style=
"display:none"
></div>
...
...
webpack.mix.js
View file @
f7336639
...
...
@@ -21,6 +21,7 @@ mix.sass('resources/assets/sass/frontend/app.scss', 'public/css/frontend.css')
'
public/js/select2/select2.css
'
,
'
public/css/bootstrap.min.css
'
,
'
public/css/custom-style.css
'
,
'
public/css/loader.css
'
,
'
public/css/bootstrap-datetimepicker.min.css
'
],
'
public/css/backend-custom.css
'
)
.
js
([
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment