CSS/pagination: avoid text-selection

Clicking fast through pagination resulted in irritating text
selections and therefore uncomfortable behaviour. Should be
fixed now.
This commit is contained in:
Thomas Gelf 2014-06-12 08:07:04 +00:00
parent 7d2ee41f42
commit dfcf3d28e6
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,12 @@ ul.pagination {
font-size: 0.68em;
padding: 0;
display: inline;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#layout.twocols u.pagination {