No text selection for Firefox

This commit is contained in:
Tobias Reich 2014-02-08 21:43:37 +01:00
parent 1e34ce4d09
commit b24f120955
3 changed files with 8 additions and 7 deletions

View File

@ -4,6 +4,7 @@
* @copyright 2014 by Tobias Reich * @copyright 2014 by Tobias Reich
*/ */
/* Gradient ------------------------------------------------*/
#content::before { #content::before {
content: ""; content: "";
position: absolute; position: absolute;

View File

@ -27,10 +27,6 @@
-moz-transform: translateX(320px); -moz-transform: translateX(320px);
transform: translateX(320px); transform: translateX(320px);
-webkit-user-select: text;
-moz-user-select: text;
user-select: text;
-webkit-transition: -webkit-transform .5s cubic-bezier(.225,.5,.165,1); -webkit-transition: -webkit-transform .5s cubic-bezier(.225,.5,.165,1);
-moz-transition: -moz-transform .5s cubic-bezier(.225,.5,.165,1); -moz-transition: -moz-transform .5s cubic-bezier(.225,.5,.165,1);
transition: transform .5s cubic-bezier(.225,.5,.165,1); transition: transform .5s cubic-bezier(.225,.5,.165,1);
@ -121,6 +117,10 @@
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
line-height: 19px; line-height: 19px;
-webkit-user-select: text;
-moz-user-select: text;
user-select: text;
} }
#infobox table tr td:first-child { #infobox table tr td:first-child {
width: 110px; width: 110px;

View File

@ -7,9 +7,6 @@
html, html,
body { body {
min-height: 100%; min-height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
} }
body { body {
background-color: #222; background-color: #222;
@ -29,6 +26,9 @@ body.view {
top:50%; top:50%;
} }
* { * {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-transition: color .3s, opacity .3s ease-out, -webkit-transform .3s ease-out, box-shadow .3s; -webkit-transition: color .3s, opacity .3s ease-out, -webkit-transform .3s ease-out, box-shadow .3s;
-moz-transition: opacity .3s ease-out, -moz-transform .3s ease-out, box-shadow .3s; -moz-transition: opacity .3s ease-out, -moz-transform .3s ease-out, box-shadow .3s;
transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s; transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;