Skip to content

Commit

Permalink
Webclient fix: toolbar is not selectable (#301).
Browse files Browse the repository at this point in the history
The canvas is not selectable as well.
This should avoid unwanted behavoir when dragging beyond the canvas.

See ticket 301.
  • Loading branch information
jri committed Sep 21, 2012
1 parent 9bb9ec2 commit 6be786b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions modules/dm4-webclient/src/main/resources/web/css/webclient.css
Expand Up @@ -29,6 +29,11 @@ body {
margin-left: 3em;
}

.dm-toolbar {
-moz-user-select: none;
-webkit-user-select: none;
}

/*** Split Panel ***/

#split-panel {
Expand All @@ -40,6 +45,11 @@ body {
vertical-align: top;
}

#split-panel > tbody > tr > td:first-child {
-moz-user-select: none;
-webkit-user-select: none;
}

/*** Canvas ***/

#canvas {
Expand Down

0 comments on commit 6be786b

Please sign in to comment.