diff options
author | Marc Englund <marc.englund@itmill.com> | 2008-11-28 08:47:02 +0000 |
---|---|---|
committer | Marc Englund <marc.englund@itmill.com> | 2008-11-28 08:47:02 +0000 |
commit | 3757faf4fd71cb346144fe69355faa601789ec54 (patch) | |
tree | fa6d27dc767532b377e5b11f40578c020acfbbc7 | |
parent | accad0950aa808f79b7149c8936e3f604b81ea5b (diff) | |
download | vaadin-framework-3757faf4fd71cb346144fe69355faa601789ec54.tar.gz vaadin-framework-3757faf4fd71cb346144fe69355faa601789ec54.zip |
Table w/o header was missing border-top. Fixed.
svn changeset:6031/svn branch:trunk
-rw-r--r-- | WebContent/ITMILL/themes/default/styles.css | 2 | ||||
-rw-r--r-- | WebContent/ITMILL/themes/default/table/table.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index 8aa816ae10..72fcedeaf1 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -1675,6 +1675,7 @@ input.i-modified, height: 36px; background: #e7edf3 url(table/img/header-bg.png) repeat-x; border: 1px solid #b6bbbc; + border-bottom: none; overflow: hidden; } @@ -1735,7 +1736,6 @@ input.i-modified, .i-table-body { background: #fff; border: 1px solid #b6bbbc; - border-top: none; } .i-table-row-spacer { diff --git a/WebContent/ITMILL/themes/default/table/table.css b/WebContent/ITMILL/themes/default/table/table.css index ace79261db..5f58c77a23 100644 --- a/WebContent/ITMILL/themes/default/table/table.css +++ b/WebContent/ITMILL/themes/default/table/table.css @@ -13,6 +13,7 @@ height: 36px; background: #e7edf3 url(img/header-bg.png) repeat-x; border: 1px solid #b6bbbc; + border-bottom: none; overflow: hidden; } @@ -73,7 +74,6 @@ .i-table-body { background: #fff; border: 1px solid #b6bbbc; - border-top: none; } .i-table-row-spacer { |