Oh derpina

This commit is contained in:
Max Lynch
2013-10-04 20:57:23 -05:00
parent 0f9c8c92fd
commit a8f7793a1c
3 changed files with 4 additions and 37 deletions

14
dist/ionic-ios7.css vendored
View File

@ -1498,19 +1498,9 @@ address {
width: 100%; width: 100%;
min-height: 100%; min-height: 100%;
overflow: hidden; overflow: hidden;
background-color: white; background-color: white; }
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
transition: -webkit-transform 0.25s, opacity 0.25s;
-webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1);
transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1); }
.modal.active { .modal.active {
opacity: 1; height: 100%; }
height: 100%;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.list { .list {
margin-bottom: 20px; margin-bottom: 20px;

14
dist/ionic.css vendored
View File

@ -1556,19 +1556,9 @@ address {
width: 100%; width: 100%;
min-height: 100%; min-height: 100%;
overflow: hidden; overflow: hidden;
background-color: white; background-color: white; }
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
transition: -webkit-transform 0.25s, opacity 0.25s;
-webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1);
transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1); }
.modal.active { .modal.active {
opacity: 1; height: 100%; }
height: 100%;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.list { .list {
margin-bottom: 20px; margin-bottom: 20px;

View File

@ -16,23 +16,10 @@
background-color: $modal-bg-color; background-color: $modal-bg-color;
// Start hidden
opacity: 0;
// Start it down low
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
transition: -webkit-transform 0.25s, opacity 0.25s;
-webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1);
transition-timing-function: cubic-bezier(0.1, 0.7, 0.1, 1);
// Active modal // Active modal
&.active { &.active {
opacity: 1;
height: 100%; height: 100%;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
} }
} }