diff --git a/css/style.css b/css/style.css index 28ff55ece0..1737b9d41b 100644 --- a/css/style.css +++ b/css/style.css @@ -19,6 +19,23 @@ a { a:hover { text-decoration: none; } +input[type="number"]::-webkit-inner-spin-button { + -webkit-appearance: none; + + display: block; + width: 15px; + + background-image: url('../images/arrows.png'); + background-repeat: no-repeat; + + border-left: 1px solid silver; +} +input[type=number]::-webkit-inner-spin-button:before { + content: ""; +} +input[type=number]::-webkit-inner-spin-button:after { + content: ""; +} .clear-both { clear: both; } diff --git a/images/arrows.png b/images/arrows.png new file mode 100644 index 0000000000..382bf3d718 Binary files /dev/null and b/images/arrows.png differ