mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-01-17 21:58:27 +01:00
🙈 ボタンの背景色を白にしたときにスタイルが適用されないバグを修正
This commit is contained in:
parent
993e9aa17d
commit
e427793257
@ -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
6
css/nes.min.css
vendored
File diff suppressed because one or more lines are too long
@ -14,3 +14,10 @@ body {
|
||||
color: $base-color;
|
||||
background-color: $background-color;
|
||||
}
|
||||
|
||||
button,
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user