diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-01-30 10:12:02 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-01-30 10:12:02 +0000 |
commit | cf95790ae6d345b7ccbf8caef8828c37827c96f1 (patch) | |
tree | 03ac691165218c775732981376b5135c92b6dbd3 /WebContent | |
parent | 179694408deb84f107b1ce03dd82cde8a314ce60 (diff) | |
download | vaadin-framework-cf95790ae6d345b7ccbf8caef8828c37827c96f1.tar.gz vaadin-framework-cf95790ae6d345b7ccbf8caef8828c37827c96f1.zip |
Fixes #2522: Fix icon alignment in all components
Also one fix for IPopupView: NPE in ApplicationConnection after ComponentDetail etc. refactoring.
svn changeset:6683/svn branch:trunk
Diffstat (limited to 'WebContent')
5 files changed, 22 insertions, 2 deletions
diff --git a/WebContent/ITMILL/themes/default/caption/caption.css b/WebContent/ITMILL/themes/default/caption/caption.css index bd143606cb..bec8935bc8 100644 --- a/WebContent/ITMILL/themes/default/caption/caption.css +++ b/WebContent/ITMILL/themes/default/caption/caption.css @@ -34,6 +34,7 @@ .i-caption .i-captiontext { float: left; overflow: hidden; + vertical-align: middle; } .i-caption .i-required-field-indicator { diff --git a/WebContent/ITMILL/themes/default/common/common.css b/WebContent/ITMILL/themes/default/common/common.css index df9fc479f3..bba10f41c0 100644 --- a/WebContent/ITMILL/themes/default/common/common.css +++ b/WebContent/ITMILL/themes/default/common/common.css @@ -90,6 +90,10 @@ filter: Alpha(opacity = 30); } +.i-disabled * { + cursor: pointer; +} + * html .i-disabled { zoom: 1; } diff --git a/WebContent/ITMILL/themes/default/link/link.css b/WebContent/ITMILL/themes/default/link/link.css index 43a97d5f3f..82be37c876 100644 --- a/WebContent/ITMILL/themes/default/link/link.css +++ b/WebContent/ITMILL/themes/default/link/link.css @@ -12,10 +12,11 @@ .i-link span { text-decoration: underline; + vertical-align: middle; } .i-disabled a { - cursor: default; + cursor: pointer; } .i-link img { diff --git a/WebContent/ITMILL/themes/default/select/select.css b/WebContent/ITMILL/themes/default/select/select.css index 596fe25366..52c000998d 100644 --- a/WebContent/ITMILL/themes/default/select/select.css +++ b/WebContent/ITMILL/themes/default/select/select.css @@ -152,6 +152,10 @@ vertical-align: middle; } +.i-filterselect-suggestmenu .gwt-MenuItem span { + vertical-align: middle; +} + .i-filterselect-suggestmenu .gwt-MenuItem-selected { background: #5daee8; color: #fff; diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index d1b43d4fe9..1dd4971cb9 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -170,6 +170,7 @@ .i-caption .i-captiontext { float: left; overflow: hidden; + vertical-align: middle; } .i-caption .i-required-field-indicator { @@ -269,6 +270,10 @@ filter: Alpha(opacity = 30); } +.i-disabled * { + cursor: pointer; +} + * html .i-disabled { zoom: 1; } @@ -844,10 +849,11 @@ input.i-modified, .i-link span { text-decoration: underline; + vertical-align: middle; } .i-disabled a { - cursor: default; + cursor: pointer; } .i-link img { @@ -1405,6 +1411,10 @@ input.i-modified, vertical-align: middle; } +.i-filterselect-suggestmenu .gwt-MenuItem span { + vertical-align: middle; +} + .i-filterselect-suggestmenu .gwt-MenuItem-selected { background: #5daee8; color: #fff; |