Dev: Refactoring

This commit is contained in:
surunzi
2016-05-28 21:53:09 +08:00
parent 4500dedc90
commit 2cae2dccbc
22 changed files with 296 additions and 179 deletions

View File

@@ -1,34 +1,24 @@
@import "../style/variable";
@import "../style/mixin";
.dev-tools {
position: absolute;
width: 100%;
height: 100%;
bottom: 0;
left: 0;
padding-top: 50px !important;
@include absolute();
padding-top: 55px !important;
background: #fff;
z-index: 500;
display: none;
opacity: 0;
transition: opacity .3s;
transform: translateZ(0);
transition: opacity $anim-duration;
.tools {
@include overflow-auto();
height: 100%;
width: 100%;
position: relative;
overflow: auto;
-webkit-overflow-scrolling: touch;
.tool {
transform: translateZ(0);
position: absolute;
@include absolute();
overflow: hidden;
display: none;
left: 0;
top: 0;
background: $gray-light;
width: 100%;
height: 100%;
background: #f8f9fa;
}
}
}