diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-07-11 21:45:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-11 21:45:57 +0200 |
commit | 1b12e7ad7bc414fc9f8dba1e830b1cfbcc55e27b (patch) | |
tree | 79fe680cd9640192132dce5e5044380e68faa02f /core | |
parent | 9e2d1caba2d9043c9ae0b6854878f4a94d05ee4b (diff) | |
parent | 6d5f7fd456991a4f72676a79da7ca8581d736aad (diff) | |
download | nextcloud-server-1b12e7ad7bc414fc9f8dba1e830b1cfbcc55e27b.tar.gz nextcloud-server-1b12e7ad7bc414fc9f8dba1e830b1cfbcc55e27b.zip |
Merge pull request #5657 from nextcloud/select-error-text
[Small] warning is now selecteable
Diffstat (limited to 'core')
-rw-r--r-- | core/css/guest.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index b3a1de6e32f..e65f0a5de01 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -462,6 +462,10 @@ form #selectDbType label.ui-state-active { text-align: left; border-radius: 3px; cursor: default; + -moz-user-select: text; + -webkit-user-select: text; + -ms-user-select: text; + user-select: text; } .warning { margin-top: 15px; |