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:
parent
44b2293ae7
commit
98a808f739
|
@ -857,7 +857,12 @@ a#view-site-link {
|
||||||
height: 46px;
|
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;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -898,6 +903,13 @@ ul#adminmenu li.write-new-button a {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* side admin menu */
|
/* side admin menu */
|
||||||
|
#adminmenu * {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
#adminmenu .wp-submenu {
|
#adminmenu .wp-submenu {
|
||||||
display: none;
|
display: none;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
@ -1622,6 +1634,10 @@ table.form-table td .updated {
|
||||||
|
|
||||||
.ui-sortable .postbox h3 {
|
.ui-sortable .postbox h3 {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-khtml-user-select: none;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ui-sortable .postbox .hndle span {
|
.ui-sortable .postbox .hndle span {
|
||||||
|
|
Loading…
Reference in New Issue