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:
parent
7d2ee41f42
commit
dfcf3d28e6
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue