Prevent text selection/highlighting when clicking on the menu or dragging postboxes

git-svn-id: https://develop.svn.wordpress.org/trunk@9689 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2008-11-14 19:32:13 +00:00
parent 44b2293ae7
commit 98a808f739
1 changed files with 17 additions and 1 deletions

View File

@ -857,7 +857,12 @@ a#view-site-link {
height: 46px;
}
#wphead a, #adminmenu a, #sidemenu a, #taglist a, #catlist a, #show-settings a {
#wphead a,
#adminmenu a,
#sidemenu a,
#taglist a,
#catlist a,
#show-settings a {
text-decoration: none;
}
@ -898,6 +903,13 @@ ul#adminmenu li.write-new-button a {
}
/* side admin menu */
#adminmenu * {
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}
#adminmenu .wp-submenu {
display: none;
list-style: none;
@ -1622,6 +1634,10 @@ table.form-table td .updated {
.ui-sortable .postbox h3 {
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
}
.ui-sortable .postbox .hndle span {