Browse Source

Disabled text selection on various components.

pull/18/head
Simon Eisenmann 12 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;
bottom:0px; bottom:0px;
right:0px; right:0px;
boder-top:1px solid $bordercolor; 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 { #audiovideo.fullscreen {
top:0px !important; top:0px !important;

6
src/styles/components/_usability.scss

@ -34,6 +34,12 @@
-ms-transition: right 200ms ease-in-out; -ms-transition: right 200ms ease-in-out;
-o-transition: right 200ms ease-in-out; -o-transition: right 200ms ease-in-out;
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 { .withChat #help, .withBuddylist #help {
right:260px; right:260px;

5
src/styles/global/_base.scss

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

5
src/styles/global/_overlaybar.scss

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

Loading…
Cancel
Save