summaryrefslogtreecommitdiffstats
path: root/WebContent
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2009-03-31 09:10:43 +0000
committerArtur Signell <artur.signell@itmill.com>2009-03-31 09:10:43 +0000
commita5eecfa4f802061110b9941237b65f8a84ba3edd (patch)
tree37360873710938017e106a7091fba07a017969d9 /WebContent
parent5a29c5b3faf7285c888d95c518b7c20ed46ee739 (diff)
downloadvaadin-framework-a5eecfa4f802061110b9941237b65f8a84ba3edd.tar.gz
vaadin-framework-a5eecfa4f802061110b9941237b65f8a84ba3edd.zip
Merged fix for #2747: Wrapping link-style Button text inside Table breaks the height calculation of Table
http://dev.itmill.com/ticket/2747 svn changeset:7243/svn branch:6.0
Diffstat (limited to 'WebContent')
-rw-r--r--WebContent/ITMILL/themes/tests-tickets/styles.css14
1 files changed, 12 insertions, 2 deletions
diff --git a/WebContent/ITMILL/themes/tests-tickets/styles.css b/WebContent/ITMILL/themes/tests-tickets/styles.css
index 0cdad264dd..225bbd6d1d 100644
--- a/WebContent/ITMILL/themes/tests-tickets/styles.css
+++ b/WebContent/ITMILL/themes/tests-tickets/styles.css
@@ -1,5 +1,7 @@
@import url(../default/styles.css);
+/* DO NOT ADD GENERIC RULES LIKE .i-table IN THIS FILE */
+
/*****************************************************************************/
/* Ticket 1904 */
/*****************************************************************************/
@@ -442,10 +444,12 @@ padding:2px;
.i-table-row:hover, .i-table-row-odd:hover {
background: #c8def9;
}
+/*
.i-table-header-wrap {
background: #d4e7fe url(img/table/column_header_bg.png) top left repeat-x;
height: 25px;
}
+*/
.i-table-header-cell:hover,
.i-table-header-cell-asc:hover,
.i-table-header-cell-desc:hover {
@@ -456,7 +460,7 @@ padding:2px;
border-right: 1px solid #e3e7f0;
margin: 0;
padding: 2px 2px 2px 3px;
- height: 20px;
+/* height: 20px;*/
}
.i-table-header-cell-asc .i-table-caption-container {
background: url(img/table/order_asc.png) right 50% no-repeat;
@@ -1266,4 +1270,10 @@ padding:2px;
/* #2434 */
.i-table-bordered .i-table-body td {
border-bottom: 1px solid red;
-} \ No newline at end of file
+}
+
+/* #2747 */
+.i-button-nowraplink span {
+ white-space: normal;
+}
+