Skip to content

Commit

Permalink
Hiding user-selections for some bits of interface (thanks @benpbarnett)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Archibald committed Jun 23, 2011
1 parent 0ba1213 commit 6a49002
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions www/assets/3/style/base.css
Expand Up @@ -183,6 +183,11 @@ body {
.canvas-view {
text-align: center;
display: table-row;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.canvas-cell {
display: table-cell;
Expand Down Expand Up @@ -325,6 +330,11 @@ body {
.toolbar-container {
display: table-row;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.toolbar {
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion www/assets/3/style/mainmin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6a49002

Please sign in to comment.