0
Declined
Disable double-click selection (CSS -*-user-select: none) on most non-text items.
It'd be nice to make it so double-clicking (happens a lot when removing items from feeds quickly) didn't select stuff. This can be done with CSS:
.no_selection {
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
}
.no_selection {
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
}
Customer support service by UserEcho
Please don't arbitrarily disable text selection. I'm amazed browsers even allow this.
At this point, we're going to pass on this idea. We do appreciate the suggestion, though, and we'd be happy to reconsider if there were more demand in the future.