feat(css): add csslint ignore

This commit is contained in:
OldHawk
2017-06-18 02:20:29 +08:00
parent bcb6201678
commit ee866b356d
2 changed files with 5 additions and 2 deletions

View File

@@ -181,7 +181,7 @@
var e = $('.popup-overlay');
if (e.hasClass('popup-visible')) {
e.removeClass('popup-visible');
}else{
} else {
e.addClass('popup-visible');
}
};

View File

@@ -56,9 +56,10 @@
right: 0;
overflow: auto;
z-index: 10000;
//display:none;
transition: all 0.3s ease-out;
/* csslint ignore:start */
transform: translateX(101%) translateY(0);
/* csslint ignore:end */
@media (min-width: @screen-sm-min) {
min-width: 450px;
}
@@ -68,7 +69,9 @@
}
.popup-visible {
/* csslint ignore:start */
transform: translateX(0) translateY(0);
/* csslint ignore:end */
}
.bottom-control {