1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-01-17 21:58:27 +01:00

🙈 ボタンの背景色を白にしたときにスタイルが適用されないバグを修正

This commit is contained in:
BcRikko 2018-11-25 20:22:10 +09:00
parent 993e9aa17d
commit e427793257
5 changed files with 18 additions and 5 deletions

View File

@ -356,6 +356,13 @@ body {
background-color: #fff;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: none;
}
.btn {
position: relative;
display: inline-block;

File diff suppressed because one or more lines are too long

6
css/nes.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -14,3 +14,10 @@ body {
color: $base-color;
background-color: $background-color;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: none;
}

View File

@ -26,7 +26,6 @@
cursor: pointer;
user-select: none;
// FIXME: Chromeでwhite, #fff, #ffffffを指定したときボタンのbackground-colorが正しく反映されない
@include btn-style($base-color, #fff, #e7e7e7, #adafbc);
&::before,