Changeset 5275 for branches

Show
Ignore:
Timestamp:
08/27/08 09:50:57 (5 months ago)
Author:
magi@…
Message:

Undo mass merge [4199] in 5.2 branch because of some possibly invalid merges.

Location:
branches/5.2
Files:
3 removed
56 modified

Legend:

Unmodified
Added
Removed
  • branches/5.2/WebContent/ITMILL/themes/default/button/button.css

    r5199 r5275  
    1919} 
    2020 
    21 /* fixes streched buttons in IE6 */ 
    22 * html .i-button { 
    23         width: 1px; 
    24         overflow: visible; 
    25         padding-left: 10px; 
    26         padding-right: 10px; 
    27 } 
    28 /* fixes streched buttons in IE7 */ 
    29 *+html .i-button { 
    30         overflow: visible; 
    31         padding-left: 10px; 
    32         padding-right: 10px; 
    33         width: expression(this.offsetWidth + "px"); 
    34 } 
    35  
    36          
    37 /* Error indicator on checkbox fix for IE6 */ 
    38 * html .i-checkbox * { display: block; float: left;} 
    39 * html .i-checkbox .i-errorindicator {padding-right:4px;} 
    40  
    41 /* Error indicator on checkbox fix for IE7 */ 
    42 *+ html .i-checkbox * { display: block; float: left;} 
    43 *+ html .i-checkbox .i-errorindicator {padding-right:7px;} 
    44  
    45 /* Error indicator on button fix for IE7 */ 
    46 *+ html button .i-errorindicator { display:inline; padding-right:5px; } 
    47  
    48 /* Error indicator on button fix for IE6 */ 
    49 * html button .i-errorindicator { display:inline; padding-right:5px;} 
    50  
    51  
    52 /* Disabled by default 
    5321.i-checkbox-error { 
    5422        background:transparent; 
    5523        background-color: #FFE0E0; 
    5624} 
    57 */ 
    58  
    59 /* Disabled by default 
    60 .i-checkbox-required { 
    61         background:transparent; 
    62         background-color: #FFE0E0; 
    63 } 
    64 */ 
    65  
    66 .i-checkbox *, .i-button * { 
    67         float: left; 
    68 } 
    69  
    70 .i-checkbox:after, .i-button:after { 
    71         content: "."; 
    72         display: block; 
    73         height: 0; 
    74     clear: both; 
    75     visibility: hidden; 
    76 } 
    77                  
    78 .i-checkbox, .i-button { 
    79         display: inline-block; 
    80 } 
    81  
    82 /* Hides from IE-mac \*/ 
    83 * html .i-caption, * html .i-orderedlayout-wrap { height: 1%; } 
    84 .i-caption, .i-orderedlayout-wrap { display: block; } 
    85 /* End hide from IE-mac */ 
  • branches/5.2/WebContent/ITMILL/themes/default/datefield/datefield.css

    r5199 r5275  
    183183        background: #ff9999; 
    184184} 
    185  
    186 /* IE somehow loses generic i-disabled alpha. See #1960 */ 
    187 * html .i-disabled .i-datefield-button, 
    188 * html .i-disabled .i-datefield-textfield { 
    189         filter: alpha(opacity=30); 
    190 } 
    191 *+ html .i-disabled .i-datefield-button, 
    192 *+ html .i-disabled .i-datefield-textfield { 
    193         filter: alpha(opacity=30); 
    194 } 
    195  
  • branches/5.2/WebContent/ITMILL/themes/default/gridlayout/gridlayout.css

    r5199 r5275  
    2424} 
    2525 
    26 /* spacing value used by css detector */ 
    27 .i-gridlayout-spacing-element { 
    28         padding-left:8px; 
    29 } 
    30  
    3126.i-gridlayout-spacing .i-gridlayout-cell { 
    3227        padding-left: 8px; 
  • branches/5.2/WebContent/ITMILL/themes/default/panel/panel.css

    r5199 r5275  
    1111} 
    1212 
    13 .i-panel { 
    14         background: transparent url(img/top-left.png) no-repeat; 
    15 } 
    1613.i-panel:before { 
    1714        display: block; 
     
    4542        border-top: none; 
    4643        background: #fff; 
    47         overflow:hidden; 
    4844} 
    4945 
     
    6056        width: 9px; 
    6157        height: 9px; 
     58        background: transparent url(img/top-left.png) no-repeat; 
    6259        margin: -15px 0 5px -19px; 
    6360} 
     
    9794/* Light panel style */ 
    9895 
    99 .i-panel-light { 
    100         background: transparent; 
    101 } 
    10296.i-panel-light:before { 
    10397        display: none; 
  • branches/5.2/WebContent/ITMILL/themes/default/styles.css

    r5199 r5275  
    5050} 
    5151 
    52 /* fixes streched buttons in IE6 */ 
    53 * html .i-button { 
    54         width: 1px; 
    55         overflow: visible; 
    56         padding-left: 10px; 
    57         padding-right: 10px; 
    58 } 
    59 /* fixes streched buttons in IE7 */ 
    60 *+html .i-button { 
    61         overflow: visible; 
    62         padding-left: 10px; 
    63         padding-right: 10px; 
    64         width: expression(this.offsetWidth + "px"); 
    65 } 
    66  
    67          
    68 /* Error indicator on checkbox fix for IE6 */ 
    69 * html .i-checkbox * { display: block; float: left;} 
    70 * html .i-checkbox .i-errorindicator {padding-right:4px;} 
    71  
    72 /* Error indicator on checkbox fix for IE7 */ 
    73 *+ html .i-checkbox * { display: block; float: left;} 
    74 *+ html .i-checkbox .i-errorindicator {padding-right:7px;} 
    75  
    76 /* Error indicator on button fix for IE7 */ 
    77 *+ html button .i-errorindicator { display:inline; padding-right:5px; } 
    78  
    79 /* Error indicator on button fix for IE6 */ 
    80 * html button .i-errorindicator { display:inline; padding-right:5px;} 
    81  
    82  
    83 /* Disabled by default 
    8452.i-checkbox-error { 
    8553        background:transparent; 
    8654        background-color: #FFE0E0; 
    8755} 
    88 */ 
    89  
    90 /* Disabled by default 
    91 .i-checkbox-required { 
    92         background:transparent; 
    93         background-color: #FFE0E0; 
    94 } 
    95 */ 
    96  
    97 .i-checkbox *, .i-button * { 
    98         float: left; 
    99 } 
    100  
    101 .i-checkbox:after, .i-button:after { 
    102         content: "."; 
    103         display: block; 
    104         height: 0; 
    105     clear: both; 
    106     visibility: hidden; 
    107 } 
    108                  
    109 .i-checkbox, .i-button { 
    110         display: inline-block; 
    111 } 
    112  
    113 /* Hides from IE-mac \*/ 
    114 * html .i-caption, * html .i-orderedlayout-wrap { height: 1%; } 
    115 .i-caption, .i-orderedlayout-wrap { display: block; } 
    116 /* End hide from IE-mac */ 
    11756/* Provide some extra whitespace for wrapped elements 
    11857   (these elements usually need the extra space, since  
     
    516455        background: #ff9999; 
    517456} 
    518  
    519 /* IE somehow loses generic i-disabled alpha. See #1960 */ 
    520 * html .i-disabled .i-datefield-button, 
    521 * html .i-disabled .i-datefield-textfield { 
    522         filter: alpha(opacity=30); 
    523 } 
    524 *+ html .i-disabled .i-datefield-button, 
    525 *+ html .i-disabled .i-datefield-textfield { 
    526         filter: alpha(opacity=30); 
    527 } 
    528  
    529457.i-expandlayout-lo-table { 
    530458        margin:0; 
     
    645573        margin:0; 
    646574        padding:0; 
    647 } 
    648  
    649 /* spacing value used by css detector */ 
    650 .i-gridlayout-spacing-element { 
    651         padding-left:8px; 
    652575} 
    653576 
     
    748671} 
    749672 
    750 .i-panel { 
    751         background: transparent url(panel/img/top-left.png) no-repeat; 
    752 } 
    753673.i-panel:before { 
    754674        display: block; 
     
    782702        border-top: none; 
    783703        background: #fff; 
    784         overflow:hidden; 
    785704} 
    786705 
     
    797716        width: 9px; 
    798717        height: 9px; 
     718        background: transparent url(panel/img/top-left.png) no-repeat; 
    799719        margin: -15px 0 5px -19px; 
    800720} 
     
    834754/* Light panel style */ 
    835755 
    836 .i-panel-light { 
    837         background: transparent; 
    838 } 
    839756.i-panel-light:before { 
    840757        display: none; 
     
    14981415 
    14991416/* Fix textfield size to correspond label size inside table */ 
    1500 .i-table-cell-content .i-textfield, 
    1501 .i-table-cell-content .i-datefield { 
     1417.i-table-cell-content .i-textfield { 
    15021418        height: auto; 
    15031419        margin: -2px 0 -3px -3px; 
    15041420        width: 97%; /* approximate */ 
    1505 } 
    1506 /* ...but not for datefield textarea */ 
    1507 .i-table-cell-content .i-datefield .i-textfield { 
    1508         width: auto; 
    1509         margin: 0; 
    1510 } 
    1511 /* datefield button is too high for table cell */ 
    1512 .i-table-cell-content .i-datefield-button { 
    1513         height: 20px; 
    15141421} 
    15151422 
     
    16041511} 
    16051512 
     1513 
    16061514.i-tabsheet-tabs { 
    16071515        empty-cells: hide; 
    16081516        border-collapse: collapse; 
    1609         margin:0; 
    1610         padding:0; 
    1611         border:0; 
    1612         height: 48px; 
     1517        height: 38px; 
    16131518        background: transparent url(tabsheet/img/tabs-bg.png) repeat-x bottom left; 
    16141519        width: 100%; 
    16151520        overflow:hidden; 
    1616 } 
    1617  
    1618 .i-tabsheet-tabs td { 
    1619         margin:0; 
    1620         padding:0; 
    1621         vertical-align: bottom; 
    1622 } 
    1623  
    1624 .i-tabsheet-spacertd { 
    1625         width: 100%; 
    1626 } 
    1627 .i-tabsheet-spacertd div { 
    1628         height: 37px; 
    1629         border: 1px solid #b6bbbc; 
    1630         background: transparent url(tabsheet/img/tab-bg.png); 
    16311521} 
    16321522 
     
    16881578} 
    16891579 
    1690  
    1691  
    1692 .i-tabsheet-tabitem { 
     1580.i-tabsheet-tabs .gwt-TabBarFirst { 
     1581        display: none; 
     1582} 
     1583 
     1584.i-tabsheet-tabs .gwt-TabBarRest { 
     1585        border: 1px solid #b6bbbc; 
     1586        background: #f8f9f9 url(tabsheet/img/tab-bg.png); 
     1587        height: 37px; 
     1588} 
     1589 
     1590.i-tabsheet-tabs .gwt-TabBarItem { 
    16931591        border: 1px solid #b6bbbc; 
    16941592        border-right: none; 
    1695         height: 37px; 
    1696         padding: 0; 
     1593        height: 20px; 
     1594        padding: 9px 15px 8px 15px; 
    16971595        margin-top: 9px; 
    16981596        color: #777f85; 
    16991597        font-size: 15px; 
    1700         line-height: 18px; 
     1598        line-height: 15px; 
    17011599        background: #f8f9f9 url(tabsheet/img/tab-bg.png); 
    17021600        cursor: pointer; 
    17031601} 
    17041602 
    1705 .i-tabsheet-tabitem .i-caption { 
    1706         height: 20px; 
    1707         padding: 9px 15px 8px 15px; 
    1708 } 
    1709  
    1710 .i-tabsheet-tabitem-selected { 
     1603.i-tabsheet-tabs .gwt-TabBarItem-selected { 
    17111604        border: none; 
    17121605        background: transparent url(panel/img/top-left.png) no-repeat; 
     
    17181611} 
    17191612 
    1720 .i-tabsheet-tabitem:hover { 
     1613.i-tabsheet-tabs .gwt-TabBarItem:hover { 
    17211614        color: #4b5257; 
    17221615} 
    17231616 
    1724 .i-tabsheet-tabitem-selected:hover { 
     1617.i-tabsheet-tabs .gwt-TabBarItem-selected:hover { 
    17251618        color: #ee5311; 
    17261619} 
    17271620 
    1728 .i-tabsheet-tabitem-selected .i-caption { 
     1621.i-tabsheet-tabs .gwt-TabBarItem-selected .i-caption { 
    17291622        background: transparent url(panel/img/top-right.png) repeat-x right top; 
    17301623        margin: 0 -1px 0 9px; 
    17311624        height: 18px; 
    1732         padding: 16px 16px 14px 7px 
     1625        padding: 16px 16px 0 7px 
    17331626} 
    17341627 
     
    17631656/* Progress indication */ 
    17641657 
    1765 .i-tabsheet-loading .i-tabsheet-tabs .i-tabsheet-tabitem-selected span { 
     1658.i-tabsheet-loading .i-tabsheet-tabs .gwt-TabBarItem-selected span{ 
    17661659        background: transparent url(common/img/ajax-loader.gif) no-repeat; 
    17671660        display: block; 
     
    17891682} 
    17901683 
    1791 * html .i-tabsheet-tabs .i-tabsheet-tabitem-selected { 
     1684* html .i-tabsheet-tabs .gwt-TabBarItem-selected { 
    17921685        border: 1px solid #babfc0; 
    17931686        border-bottom: none; 
     
    17991692        color: #ee5311; 
    18001693} 
    1801 *+html .i-tabsheet-tabs .i-tabsheet-tabitem-selected { 
     1694*+html .i-tabsheet-tabs .gwt-TabBarItem-selected { 
    18021695        border: 1px solid #babfc0; 
    18031696        border-bottom: none; 
     
    18101703} 
    18111704 
    1812 * html .i-tabsheet-tabs .i-tabsheet-tabitem-selected .i-caption { 
     1705* html .i-tabsheet-tabs .gwt-TabBarItem-selected .i-caption { 
    18131706        background: transparent; 
    18141707        padding: 0; 
    18151708        margin: 0; 
    18161709} 
    1817 *+html .i-tabsheet-tabs .i-tabsheet-tabitem-selected .i-caption { 
     1710*+html .i-tabsheet-tabs .gwt-TabBarItem-selected .i-caption { 
    18181711        background: transparent; 
    18191712        padding: 0; 
  • branches/5.2/WebContent/ITMILL/themes/default/table/table.css

    r5199 r5275  
    113113 
    114114/* Fix textfield size to correspond label size inside table */ 
    115 .i-table-cell-content .i-textfield, 
    116 .i-table-cell-content .i-datefield { 
     115.i-table-cell-content .i-textfield { 
    117116        height: auto; 
    118117        margin: -2px 0 -3px -3px; 
    119118        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; 
    129119} 
    130120 
  • branches/5.2/WebContent/ITMILL/themes/default/tabsheet/tabsheet.css

    r5199 r5275  
    66} 
    77 
     8 
    89.i-tabsheet-tabs { 
    910        empty-cells: hide; 
    1011        border-collapse: collapse; 
    11         margin:0; 
    12         padding:0; 
    13         border:0; 
    14         height: 48px; 
     12        height: 38px; 
    1513        background: transparent url(img/tabs-bg.png) repeat-x bottom left; 
    1614        width: 100%; 
    1715        overflow:hidden; 
    18 } 
    19  
    20 .i-tabsheet-tabs td { 
    21         margin:0; 
    22         padding:0; 
    23         vertical-align: bottom; 
    24 } 
    25  
    26 .i-tabsheet-spacertd { 
    27         width: 100%; 
    28 } 
    29 .i-tabsheet-spacertd div { 
    30         height: 37px; 
    31         border: 1px solid #b6bbbc; 
    32         background: transparent url(img/tab-bg.png); 
    3316} 
    3417 
     
    9073} 
    9174 
    92  
    93  
    94 .i-tabsheet-tabitem { 
     75.i-tabsheet-tabs .gwt-TabBarFirst { 
     76        display: none; 
     77} 
     78 
     79.i-tabsheet-tabs .gwt-TabBarRest { 
     80        border: 1px solid #b6bbbc; 
     81        background: #f8f9f9 url(img/tab-bg.png); 
     82        height: 37px; 
     83} 
     84 
     85.i-tabsheet-tabs .gwt-TabBarItem { 
    9586        border: 1px solid #b6bbbc; 
    9687        border-right: none; 
    97         height: 37px; 
    98         padding: 0; 
     88        height: 20px; 
     89        padding: 9px 15px 8px 15px; 
    9990        margin-top: 9px; 
    10091        color: #777f85; 
    10192        font-size: 15px; 
    102         line-height: 18px; 
     93        line-height: 15px; 
    10394        background: #f8f9f9 url(img/tab-bg.png); 
    10495        cursor: pointer; 
    10596} 
    10697 
    107 .i-tabsheet-tabitem .i-caption { 
    108         height: 20px; 
    109         padding: 9px 15px 8px 15px; 
    110 } 
    111  
    112 .i-tabsheet-tabitem-selected { 
     98.i-tabsheet-tabs .gwt-TabBarItem-selected { 
    11399        border: none; 
    114100        background: transparent url(../panel/img/top-left.png) no-repeat; 
     
    120106} 
    121107 
    122 .i-tabsheet-tabitem:hover { 
     108.i-tabsheet-tabs .gwt-TabBarItem:hover { 
    123109        color: #4b5257; 
    124110} 
    125111 
    126 .i-tabsheet-tabitem-selected:hover { 
    127         color: #ee5311; 
    128 } 
    129  
    130 .i-tabsheet-tabitem-selected .i-caption { 
     112.i-tabsheet-tabs .gwt-TabBarItem-selected:hover { 
     113        color: #ee5311; 
     114} 
     115 
     116.i-tabsheet-tabs .gwt-TabBarItem-selected .i-caption { 
    131117        background: transparent url(../panel/img/top-right.png) repeat-x right top; 
    132118        margin: 0 -1px 0 9px; 
    133119        height: 18px; 
    134         padding: 16px 16px 14px 7px 
     120        padding: 16px 16px 0 7px 
    135121} 
    136122 
     
    165151/* Progress indication */ 
    166152 
    167 .i-tabsheet-loading .i-tabsheet-tabs .i-tabsheet-tabitem-selected span { 
     153.i-tabsheet-loading .i-tabsheet-tabs .gwt-TabBarItem-selected span{ 
    168154        background: transparent url(../common/img/ajax-loader.gif) no-repeat; 
    169155        display: block; 
     
    191177} 
    192178 
    193 * html .i-tabsheet-tabs .i-tabsheet-tabitem-selected { 
     179* html .i-tabsheet-tabs .gwt-TabBarItem-selected { 
    194180        border: 1px solid #babfc0; 
    195181        border-bottom: none; 
     
    201187        color: #ee5311; 
    202188} 
    203 *+html .i-tabsheet-tabs .i-tabsheet-tabitem-selected { 
     189*+html .i-tabsheet-tabs .gwt-TabBarItem-selected { 
    204190        border: 1px solid #babfc0; 
    205191        border-bottom: none; 
     
    212198} 
    213199 
    214 * html .i-tabsheet-tabs .i-tabsheet-tabitem-selected .i-caption { 
     200* html .i-tabshee