mirror of
git://develop.git.wordpress.org/
synced 2025-01-18 21:28:02 +01:00
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;
|
||||
}
|
||||
|
||||
#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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user