@@ -95,7 +95,7 @@ export default class MouseSelectionHandler {
* @private
*/
_handleMouseMove( domEventData ) {
- if ( !isButtonPressed( domEventData ) ) {
+ if ( !this._isSelecting || !isButtonPressed( domEventData ) ) {
this._tableSelection.stopSelection();
return;
@@ -12,6 +12,11 @@
.external-source td, .external-source th {
border: solid 1px hsl(0, 0%, 85%);
}
+
+ /* It should not create entire viewport scroll. */
+ pre {
+ overflow: auto;
+ }
</style>
<h3>A "content" test editor</h3>
@@ -26,7 +26,7 @@
& th {
min-width: 2em;
padding: .4em;
- border-color: hsl(0, 0%, 85%);
+ border-color: hsl(0, 0%, 75%);