Browse Source

Merge branch 'safari_fix' into 'staging'

Fix input field selection on Safari

See merge request !18
tags/v0.1.2
Big Bad Waffle 7 years ago
parent
commit
16fbd4a8f6
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      src/client/css/ui.less

+ 9
- 1
src/client/css/ui.less View File

@@ -1,6 +1,14 @@
@import "colors.less";

[class^="ui"] {
input, textarea {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}

.el {
height: 35px;
text-align: center;
@@ -30,4 +38,4 @@
.spacer-h {
width: 100%;
}
}
}

Loading…
Cancel
Save