diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-05-25 08:32:11 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-05-25 08:32:11 +0000 |
commit | ac7606430d1bb5e77cfa3df38333d03e85c69894 (patch) | |
tree | fbbc7434fc9c6444e00220f34841522de1328f4b /WebContent/VAADIN/themes/reindeer/table/table.css | |
parent | d670a3f177a5ee3287b14744aad18043747cc05d (diff) | |
download | vaadin-framework-ac7606430d1bb5e77cfa3df38333d03e85c69894.tar.gz vaadin-framework-ac7606430d1bb5e77cfa3df38333d03e85c69894.zip |
Fixes #4571: Icon for Table Footer sample
Additional style fixes as well for table footers.
svn changeset:13344/svn branch:6.4
Diffstat (limited to 'WebContent/VAADIN/themes/reindeer/table/table.css')
-rw-r--r-- | WebContent/VAADIN/themes/reindeer/table/table.css | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/WebContent/VAADIN/themes/reindeer/table/table.css b/WebContent/VAADIN/themes/reindeer/table/table.css index fc9db768df..3a43a0fb49 100644 --- a/WebContent/VAADIN/themes/reindeer/table/table.css +++ b/WebContent/VAADIN/themes/reindeer/table/table.css @@ -9,7 +9,9 @@ /* Default & white style */ .v-table-header-wrap, -.white .v-table-header-wrap { +.white .v-table-header-wrap, +.v-table-footer-wrap, +.white .v-table-footer-wrap { border-color: #c2c3c4; background: transparent repeat-x; background-image: url(img/header-bg-light.png); /** sprite-ref: verticals; sprite-alignment: repeat */ @@ -18,24 +20,34 @@ font-size: 10px; font-weight: bold; color: #222; - text-shadow: #fff 0 1px 0; + text-shadow: #f3f5f8 0 1px 0; line-height: normal; } .v-table-footer-wrap, -.white .v-table-footer-wrap{ +.white .v-table-footer-wrap { + text-transform: none; + font-size: 12px; + font-weight: normal; +} + +.v-table-footer td, +.white .v-table-footer td { border-color: #c2c3c4; - background: transparent repeat-x; - background-image: url(img/header-bg-light.png); - height: 20px; } -.v-table-header { - height: 20px; +.v-table-footer td:last-child { + border-right-color: transparent; +} + +.v-table-footer-container { + padding-right: 7px; } + +.v-table-header, .v-table-footer, .v-table-footer table { - height: 20px; + height: 20px; } .v-table-caption-container { |