Fix extra scrollbar buttons on textbox

main
Isaiah Odhner 2017-05-23 02:54:26 +00:00
parent 557923391b
commit 6fe7aaa0e4
2 changed files with 5 additions and 1 deletions

View File

@ -57,7 +57,6 @@
* It lags unusably when using tools * It lags unusably when using tools
* For some tools it only happens while dragging the mouse on the canvas * For some tools it only happens while dragging the mouse on the canvas
* Tool options flicker... *and lag*, when they're redrawn in quick succession * Tool options flicker... *and lag*, when they're redrawn in quick succession
* The TextBox `-webkit-scrollbar`s get extra buttons
* The TextBox contents move down and right when rasterizing * The TextBox contents move down and right when rasterizing
* Free-form select can leave behind inverty brush in multiplayer * Free-form select can leave behind inverty brush in multiplayer
* Multiplayer cursors that go outside the parent can cause the page to be scrollable * Multiplayer cursors that go outside the parent can cause the page to be scrollable

View File

@ -482,3 +482,8 @@
background: black; background: black;
} }
/* turn off double buttons */
::-webkit-scrollbar-button:start:increment,
::-webkit-scrollbar-button:end:decrement {
display: none;
}