diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-07 04:26:49 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-07 04:26:49 -0600 |
commit | d4fce99f8149f352f5bba9deced0c98198d5c4d9 (patch) | |
tree | 01937a285ea6afef56f9f652fe8c334ad3ad51d4 /css/page.css | |
parent | f7b36706f5a63958e2fdc4ca637297e93a580be4 (diff) | |
download | pathery-d4fce99f8149f352f5bba9deced0c98198d5c4d9.tar.xz |
Changed pointer on left/right arrows in score page, and made them unselectable (via new global '.unselectable' class, which you can use elsewhere if you want)
Diffstat (limited to 'css/page.css')
-rw-r--r-- | css/page.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/css/page.css b/css/page.css index 46563d2..ec0f1c9 100644 --- a/css/page.css +++ b/css/page.css @@ -507,5 +507,14 @@ table.score th { background-color:#356;
cursor:default;
}
+.unselectable
+{
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
|