Browse Source

No text selection for Firefox

Tobias Reich 11 years ago
parent
commit
b24f120955
3 changed files with 8 additions and 7 deletions
  1. 1 0
      assets/css/modules/content.css
  2. 4 4
      assets/css/modules/infobox.css
  3. 3 3
      assets/css/modules/misc.css

+ 1 - 0
assets/css/modules/content.css

@@ -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;

+ 4 - 4
assets/css/modules/infobox.css

@@ -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;

+ 3 - 3
assets/css/modules/misc.css

@@ -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;