another trial

This commit is contained in:
KodeStar 2018-02-07 22:24:43 +00:00
parent 116ff2dd46
commit 1d390d7966
3 changed files with 38 additions and 14 deletions

16
public/css/app.css vendored
View file

@ -817,7 +817,7 @@ div.create .input select {
/* Hide default HTML checkbox */
.switch input {
visibility: hidden;
display: none;
}
/* The slider */
@ -877,11 +877,25 @@ input:checked + .slider:before {
}
}
@keyframes autofill {
to {
background: #f5f5f5;
color: #fff;
}
}
input:-webkit-autofill {
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
input:autofill {
-webkit-animation-name: autofill;
animation-name: autofill;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
button.link {
border: none;
-webkit-appearance: none;

View file

@ -1,4 +1,4 @@
{
"/css/app.css": "/css/app.css?id=8ed1d9924e3be54ea4e4",
"/css/app.css": "/css/app.css?id=4f5b9f5ba0f1f57405c8",
"/js/app.js": "/js/app.js?id=559585a774e3f088503a"
}

View file

@ -466,7 +466,7 @@ div.create {
}
/* Hide default HTML checkbox */
.switch input {visibility:hidden;}
.switch input {display:none;}
/* The slider */
.slider {
@ -517,17 +517,27 @@ div.create {
}
@-webkit-keyframes autofill {
to {
background:#f5f5f5;
color:#fff;
}
}
input:-webkit-autofill {
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
to {
background:#f5f5f5;
color:#fff;
}
}
@keyframes autofill {
to {
background:#f5f5f5;
color:#fff;
}
}
input:-webkit-autofill {
-webkit-animation-name: autofill;
-webkit-animation-fill-mode: both;
}
input:autofill {
animation-name: autofill;
animation-fill-mode: both;
}
button.link {
border: none;
appearance: none;