Skip to content

Commit 1d390d7

Browse files
KodeStarKodeStar
authored andcommitted
another trial
1 parent 116ff2d commit 1d390d7

File tree

3 files changed

+38
-14
lines changed

3 files changed

+38
-14
lines changed

public/css/app.css

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ div.create .input select {
817817
/* Hide default HTML checkbox */
818818

819819
.switch input {
820-
visibility: hidden;
820+
display: none;
821821
}
822822

823823
/* The slider */
@@ -877,11 +877,25 @@ input:checked + .slider:before {
877877
}
878878
}
879879

880+
@keyframes autofill {
881+
to {
882+
background: #f5f5f5;
883+
color: #fff;
884+
}
885+
}
886+
880887
input:-webkit-autofill {
881888
-webkit-animation-name: autofill;
882889
-webkit-animation-fill-mode: both;
883890
}
884891

892+
input:autofill {
893+
-webkit-animation-name: autofill;
894+
animation-name: autofill;
895+
-webkit-animation-fill-mode: both;
896+
animation-fill-mode: both;
897+
}
898+
885899
button.link {
886900
border: none;
887901
-webkit-appearance: none;

public/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"/css/app.css": "/css/app.css?id=8ed1d9924e3be54ea4e4",
2+
"/css/app.css": "/css/app.css?id=4f5b9f5ba0f1f57405c8",
33
"/js/app.js": "/js/app.js?id=559585a774e3f088503a"
44
}

resources/assets/sass/_app.scss

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ div.create {
466466
}
467467

468468
/* Hide default HTML checkbox */
469-
.switch input {visibility:hidden;}
469+
.switch input {display:none;}
470470

471471
/* The slider */
472472
.slider {
@@ -517,17 +517,27 @@ div.create {
517517
}
518518

519519
@-webkit-keyframes autofill {
520-
to {
521-
background:#f5f5f5;
522-
color:#fff;
523-
}
524-
}
525-
526-
input:-webkit-autofill {
527-
-webkit-animation-name: autofill;
528-
-webkit-animation-fill-mode: both;
529-
}
530-
520+
to {
521+
background:#f5f5f5;
522+
color:#fff;
523+
}
524+
}
525+
@keyframes autofill {
526+
to {
527+
background:#f5f5f5;
528+
color:#fff;
529+
}
530+
}
531+
532+
input:-webkit-autofill {
533+
-webkit-animation-name: autofill;
534+
-webkit-animation-fill-mode: both;
535+
}
536+
input:autofill {
537+
animation-name: autofill;
538+
animation-fill-mode: both;
539+
}
540+
531541
button.link {
532542
border: none;
533543
appearance: none;

0 commit comments

Comments
 (0)