mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(backdrop): use sass vars
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
background-color: $loading-backdrop-bg-color;
|
||||
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
@@ -20,5 +20,5 @@
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@include transition(0.1s opacity linear);
|
||||
@include transition($loading-backdrop-fadein-duration opacity linear);
|
||||
}
|
||||
|
||||
@@ -625,8 +625,8 @@ $loading-padding: 20px !default;
|
||||
$loading-border-radius: 5px !default;
|
||||
$loading-font-size: 15px !default;
|
||||
|
||||
$loading-backdrop-fadein-duration:0.3s !default;
|
||||
$loading-backdrop-bg-color: rgba(0,0,0,0.7) !default;
|
||||
$loading-backdrop-fadein-duration:0.1s !default;
|
||||
$loading-backdrop-bg-color: rgba(0,0,0,0.4) !default;
|
||||
|
||||
|
||||
// Badges
|
||||
|
||||
Reference in New Issue
Block a user