Browse Source

another trial

pull/18/head
KodeStar 7 years ago
parent
commit
1d390d7966
  1. 16
      public/css/app.css
  2. 2
      public/mix-manifest.json
  3. 30
      resources/assets/sass/_app.scss

16
public/css/app.css

@ -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;

2
public/mix-manifest.json

@ -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"
}

30
resources/assets/sass/_app.scss

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

Loading…
Cancel
Save