Browse Source

Better solution to prevent ID wrapping. Also no longer text-selectable. Much cleaner.

pull/40/head
fatchan 8 years ago
committed by czaks
parent
commit
c9ef21bff9
  1. 7
      stylesheets/style.css

7
stylesheets/style.css

@ -912,7 +912,12 @@ pre {
.poster_id { .poster_id {
cursor: pointer; cursor: pointer;
white-space:nowrap; display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
} }
.poster_id:hover { .poster_id:hover {
color: #800000!important; color: #800000!important;

Loading…
Cancel
Save