mirror of https://github.com/akveo/blur-admin
fix(mobile): fix backgroud size
parent
333be7f516
commit
885f33c5c7
Binary file not shown.
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 223 KiB |
|
@ -25,6 +25,7 @@
|
||||||
<!-- endbuild -->
|
<!-- endbuild -->
|
||||||
</head>
|
</head>
|
||||||
<body ng-class="{'mobile' : $isMobile}">
|
<body ng-class="{'mobile' : $isMobile}">
|
||||||
|
<div class="body-bg"></div>
|
||||||
<main ng-if="$pageFinishedLoading" ng-class="{ 'menu-collapsed': $isMenuCollapsed }">
|
<main ng-if="$pageFinishedLoading" ng-class="{ 'menu-collapsed': $isMenuCollapsed }">
|
||||||
|
|
||||||
<sidebar></sidebar>
|
<sidebar></sidebar>
|
||||||
|
|
|
@ -36,6 +36,9 @@ a {
|
||||||
outline: 0 !important;
|
outline: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.body-bg{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.al-header {
|
.al-header {
|
||||||
display: block;
|
display: block;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
body.badmin-transparent {
|
body.badmin-transparent {
|
||||||
&.mobile{
|
&.mobile{
|
||||||
background-image: url($images-root + 'blur-bg-mobile.jpg');
|
background: none;
|
||||||
|
.body-bg{
|
||||||
|
display: block;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
@include main-background();
|
||||||
|
}
|
||||||
.panel-blur {
|
.panel-blur {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue