diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-12-21 08:53:23 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-12-21 08:53:23 +0000 |
commit | ceafd93204f9c18ab4cd02129f3d09e0cbb8356d (patch) | |
tree | 33b6f78604cbf168e5e26b4169a47c21a44f48a3 /WebContent/VAADIN/themes/liferay | |
parent | 92b9df06809545a342f684fe76a50a5792356fe4 (diff) | |
download | vaadin-framework-ceafd93204f9c18ab4cd02129f3d09e0cbb8356d.tar.gz vaadin-framework-ceafd93204f9c18ab4cd02129f3d09e0cbb8356d.zip |
#6086 Text selection does not work in link Buttons
svn changeset:16592/svn branch:6.5
Diffstat (limited to 'WebContent/VAADIN/themes/liferay')
-rw-r--r-- | WebContent/VAADIN/themes/liferay/styles.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/liferay/styles.css b/WebContent/VAADIN/themes/liferay/styles.css index 6beec279c0..3bf5638607 100644 --- a/WebContent/VAADIN/themes/liferay/styles.css +++ b/WebContent/VAADIN/themes/liferay/styles.css @@ -106,7 +106,11 @@ background: transparent; padding: 0; color: inherit; - } + -khtml-user-select: text; + -moz-user-select: text; + -ie-user-select: text; + user-select: text; +} /* Inset Safari focus outline a bit */ .v-sa .v-button-link:focus{ |