diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-05-04 13:17:58 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2010-05-04 13:17:58 +0000 |
commit | b9d97b16fa108da637443242c35921aa163aa211 (patch) | |
tree | ab59e0f2a6beb6d1e184e101cf9bd87bbdbdceb1 /WebContent/VAADIN/themes/runo/datefield | |
parent | 2924b070b44a3f140dca181204187c31d5ac8739 (diff) | |
download | vaadin-framework-b9d97b16fa108da637443242c35921aa163aa211.tar.gz vaadin-framework-b9d97b16fa108da637443242c35921aa163aa211.zip |
Dozens of enhancements and fixes to Runo theme, containing new sub-styles for several components such as buttons, tables, accordions, windows, layouts, splitpanels and others.
svn changeset:13024/svn branch:6.4
Diffstat (limited to 'WebContent/VAADIN/themes/runo/datefield')
-rw-r--r-- | WebContent/VAADIN/themes/runo/datefield/datefield.css | 40 |
1 files changed, 25 insertions, 15 deletions
diff --git a/WebContent/VAADIN/themes/runo/datefield/datefield.css b/WebContent/VAADIN/themes/runo/datefield/datefield.css index e845901273..290784d97d 100644 --- a/WebContent/VAADIN/themes/runo/datefield/datefield.css +++ b/WebContent/VAADIN/themes/runo/datefield/datefield.css @@ -1,3 +1,7 @@ +.v-datefield input.v-textfield, +.v-datefield input.v-textfield[type=text] { + height: 18px; +} .v-datefield-button { font-size:13px;
width: 22px;
@@ -14,14 +18,19 @@ font-size: 12px;
background: #f6f7f7;
border: 1px solid #b6bbbc;
- padding: 6px;
+ padding: 2px 6px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px;
}
.v-datefield-calendarpanel {
- width: 19em;
- font-size: 12px;
+ width: 230px;
}
.v-datefield-popup .v-datefield-calendarpanel {
- width: 16em;
+ width: 200px;
+} +.v-datefield-year .v-datefield-calendarpanel { + width: 100px; }
.v-datefield-calendarpanel td {
text-align: right;
@@ -30,19 +39,19 @@ display: block;
}
.v-datefield-calendarpanel-header {
- height: 30px;
-}
-.v-datefield-calendarpanel-header,
-.v-datefield-calendarpanel strong {
+ height: 30px; font-size: 13px;
}
-.v-datefield-popup .v-datefield-calendarpanel-header,
-.v-datefield-popup .v-datefield-calendarpanel strong {
- font-size: 12px;
-}
-.v-datefield-calendarpanel-month {
+td.v-datefield-calendarpanel-month {
font-weight: bold;
- text-shadow: #ffffff 2px 2px 0;
+ text-shadow: 0 1px 0 #fff; + width: 150px;
+} +.v-datefield-calendarpanel-prevyear, +.v-datefield-calendarpanel-nextyear, +.v-datefield-calendarpanel-prevmonth, +.v-datefield-calendarpanel-nextmonth { + width: 16px; }
/* Year buttons */
.v-datefield-calendarpanel .v-button-prevyear,
@@ -85,7 +94,8 @@ .v-datefield-calendarpanel strong {
color: #ee5311;
display: block;
- width: 20px;
+ width: 20px; + font-size: 12px;
}
.v-datefield-calendarpanel-day,
.v-datefield-calendarpanel-weeknumber, |