Browse Source

Disabled text selection on various components.

pull/18/head
Simon Eisenmann 11 years ago
parent
commit
67fb864492
  1. 5
      src/styles/components/_audiovideo.scss
  2. 6
      src/styles/components/_usability.scss
  3. 5
      src/styles/global/_base.scss
  4. 5
      src/styles/global/_overlaybar.scss

5
src/styles/components/_audiovideo.scss

@ -25,6 +25,11 @@ top:44px; @@ -25,6 +25,11 @@ top:44px;
bottom:0px;
right:0px;
boder-top:1px solid $bordercolor;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
#audiovideo.fullscreen {
top:0px !important;

6
src/styles/components/_usability.scss

@ -34,6 +34,12 @@ @@ -34,6 +34,12 @@
-ms-transition: right 200ms ease-in-out;
-o-transition: right 200ms ease-in-out;
transition: right 200ms ease-in-out;
boder-top:1px solid $bordercolor;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
.withChat #help, .withBuddylist #help {
right:260px;

5
src/styles/global/_base.scss

@ -114,6 +114,11 @@ z-index:0; @@ -114,6 +114,11 @@ z-index:0;
bottom:0px;
left:0px;
right:0px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
.welcome {
color:#aaa;

5
src/styles/global/_overlaybar.scss

@ -9,6 +9,11 @@ @@ -9,6 +9,11 @@
input[type="radio"], input[type="checkbox"] {
margin-top:2px;
}
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
.overlaybar:hover {

Loading…
Cancel
Save