Added autoprefixer + csslint

This commit is contained in:
RainLoop Team 2014-08-28 19:27:30 +04:00
parent 5009546a91
commit 39255ae061
30 changed files with 218 additions and 1038 deletions

View file

@ -1,24 +1,16 @@
.g-ui-user-select-none {
-webkit-user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
webkit-touch-callout: none;
user-select: none;
standard-user-select: none;
touch-callout: none;
}
.g-ui-user-select-allow {
-webkit-user-select: inherit;
-webkit-touch-callout: inherit;
-khtml-user-select: inherit;
-moz-user-select: inherit;
-ms-user-select: inherit;
-o-user-select: inherit;
webkit-touch-callout: inherit;
user-select: inherit;
standard-user-select: inherit;
touch-callout: inherit;
}
.g-ui-clearfix {
@ -145,30 +137,30 @@ html.rgba .g-ui-resizable-delimiter-highlight {
.success {
color: green;
.transition(opacity 0.5s linear);
.opacity(0);
transition: opacity 0.5s linear;
opacity: 0;
}
.error {
color: red;
.transition(opacity 0.5s linear);
.opacity(0);
transition: opacity 0.5s linear;
opacity: 0;
}
.visible {
.opacity(100);
opacity: 1;
}
}
.settings-saved-trigger-input {
&.success {
border-color: green !important;
.transition(border-color 0.5s linear);
transition: border-color 0.5s linear;
}
&.error {
border-color: red !important;
.transition(border-color 0.5s linear);
transition: border-color 0.5s linear;
}
}
@ -194,36 +186,22 @@ html.cssanimations {
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.e-spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.e-spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0.0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
} 40% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
0%, 80%, 100% { transform: scale(0.0); }
40% { transform: scale(1.0); }
}