Changeset 5103

Show
Ignore:
Timestamp:
07/14/08 13:39:21 (6 weeks ago)
Author:
jouni.koivuviita@…
Message:

Fixes #1942: DateField? popup button hidden in Tables in editable mode

Location:
trunk/WebContent/ITMILL/themes/default
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebContent/ITMILL/themes/default/styles.css

    r5073 r5103  
    16741674 
    16751675/* Fix textfield size to correspond label size inside table */ 
    1676 .i-table-cell-content .i-textfield { 
     1676.i-table-cell-content .i-textfield, 
     1677.i-table-cell-content .i-datefield { 
    16771678        height: auto; 
    16781679        margin: -2px 0 -3px -3px; 
    16791680        width: 97%; /* approximate */ 
     1681} 
     1682/* ...but not for datefield textarea */ 
     1683.i-table-cell-content .i-datefield .i-textfield { 
     1684        width: auto; 
     1685        margin: 0; 
     1686} 
     1687/* datefield button is too high for table cell */ 
     1688.i-table-cell-content .i-datefield-button { 
     1689        height: 20px; 
    16801690} 
    16811691 
  • trunk/WebContent/ITMILL/themes/default/table/table.css

    r4824 r5103  
    113113 
    114114/* Fix textfield size to correspond label size inside table */ 
    115 .i-table-cell-content .i-textfield { 
     115.i-table-cell-content .i-textfield, 
     116.i-table-cell-content .i-datefield { 
    116117        height: auto; 
    117118        margin: -2px 0 -3px -3px; 
    118119        width: 97%; /* approximate */ 
     120} 
     121/* ...but not for datefield textarea */ 
     122.i-table-cell-content .i-datefield .i-textfield { 
     123        width: auto; 
     124        margin: 0; 
     125} 
     126/* datefield button is too high for table cell */ 
     127.i-table-cell-content .i-datefield-button { 
     128        height: 20px; 
    119129} 
    120130