Changeset 1081

Show
Ignore:
Timestamp:
05/13/2008 05:43:21 PM (2 years ago)
Author:
DarTar
Message:

Porting CSS from 1.1.6.4, refs #575

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/css/wikka.css

    r1080 r1081  
    594594} 
    595595 
     596/* sort order information in sortable lists and tables*/ 
     597.sortorder { 
     598        font-size: 70%; 
     599        text-transform: uppercase;       
     600        letter-spacing: 1px; 
     601} 
     602 
     603/* debug messages */ 
     604.debug { 
     605        color: #AAA; 
     606        font-size: 70%; 
     607        text-transform: uppercase;       
     608        letter-spacing: 1px; 
     609} 
     610 
     611/* Tables */ 
     612table.data { 
     613        border: 2px solid #CCC; 
     614        border-collapse: collapse; 
     615        border-spacing: 0; 
     616} 
     617 
     618table.data caption { 
     619        border: 1px solid #CCC; 
     620        font-size: 95%; 
     621        color: #666; 
     622        margin:5px 0; 
     623        padding:2px; 
     624} 
     625 
     626table.data thead { 
     627        background-color: #DDD; 
     628} 
     629 
     630table.data tfoot { 
     631        background-color: #DDD; 
     632} 
     633 
     634table.data th { 
     635        border: 1px solid #CCC; 
     636        padding: .1em .25em; 
     637} 
     638 
     639table.data thead th { 
     640        background-color: #DDD; 
     641} 
     642 
     643table.data tfoot th { 
     644        background-color: #DDD; 
     645} 
     646 
     647table.data tbody th { 
     648        background-color: #EEE; 
     649} 
     650 
     651table.data tbody tr:hover { 
     652        background-color: #E9E9F9; 
     653} 
     654 
     655table.data tbody tr.alt:hover { 
     656        background-color: #E9E9F9; 
     657} 
     658 
     659table.data td { 
     660        border: 1px solid #CCC; 
     661        padding: .1em .25em; 
     662} 
     663 
     664table.data td.number { 
     665        text-align: right; 
     666} 
     667 
     668table.data td.datetime { 
     669        text-align: right; 
     670        white-space: nowrap; 
     671} 
     672 
     673/* --- alternate row & column color --- */ 
     674 
     675table.data tr.alt { 
     676        background-color: #EEE; 
     677} 
     678 
     679table.data th.c1 { 
     680        background-color: #CDD; 
     681} 
     682 
     683table.data th.c2 { 
     684        background-color: #DCC; 
     685} 
     686 
     687table.data th.c3 { 
     688        background-color: #DDC; 
     689} 
     690 
     691table.data th.c4 { 
     692        background-color: #CDC; 
     693} 
     694 
     695table.data th.c5 { 
     696        background-color: #CCD; 
     697} 
     698 
     699table.data th.c6 { 
     700        background-color: #DCD; 
     701} 
     702 
     703table.data td.c1 { 
     704        background-color: #EFF; 
     705} 
     706 
     707table.data td.c2 { 
     708        background-color: #FEE; 
     709} 
     710 
     711table.data td.c3 { 
     712        background-color: #FFE; 
     713} 
     714 
     715table.data td.c4 { 
     716        background-color: #EFE; 
     717} 
     718 
     719table.data td.c5 { 
     720        background-color: #EEF; 
     721} 
     722 
     723table.data td.c6 { 
     724        background-color: #FEF; 
     725} 
     726 
     727table.data tr.alt td.c1 { 
     728        background-color: #DEE; 
     729} 
     730 
     731table.data tr.alt td.c2 { 
     732        background-color: #EDD; 
     733} 
     734 
     735table.data tr.alt td.c3 { 
     736        background-color: #EED; 
     737} 
     738 
     739table.data tr.alt td.c4 { 
     740        background-color: #DED; 
     741} 
     742 
     743table.data tr.alt td.c5 { 
     744        background-color: #DDE; 
     745} 
     746 
     747table.data tr.alt td.c6 { 
     748        background-color: #EDE; 
     749} 
     750 
    596751/* ACTION-related styling */ 
     752 
     753/* Adminpages action */ 
     754 
     755table#adminpages { 
     756        border: 1px solid #CCC; 
     757        width: 100%; 
     758} 
     759 
     760form#form_page_admin_panel fieldset { 
     761        line-height: 2em;        
     762} 
     763 
     764/* Adminuser action */ 
     765 
     766table#adminusers { 
     767        border: 1px solid #CCC; 
     768        width: 100%; 
     769} 
     770 
     771form#form_user_admin_panel fieldset { 
     772        line-height: 2em;        
     773} 
    597774 
    598775/* File attachments */ 
     
    642819table.files tbody tr:hover { 
    643820        background-color: #EEE; 
    644 } 
    645  
    646 /* Tables */ 
    647 table.data { 
    648         border: 2px solid #CCC; 
    649         border-collapse: collapse; 
    650         border-spacing: 0; 
    651 } 
    652  
    653 table.data caption { 
    654         border: 1px solid #CCC; 
    655         font-size: 95%; 
    656         color: #666; 
    657         margin:5px 0; 
    658         padding:2px; 
    659 } 
    660  
    661 table.data thead { 
    662         background-color: #DDD; 
    663 } 
    664  
    665 table.data tfoot { 
    666         background-color: #DDD; 
    667 } 
    668  
    669 table.data th { 
    670         border: 1px solid #CCC; 
    671         padding: .1em .25em; 
    672 } 
    673  
    674 table.data thead th { 
    675         background-color: #DDD; 
    676 } 
    677  
    678 table.data tfoot th { 
    679         background-color: #DDD; 
    680 } 
    681  
    682 table.data tbody th { 
    683         background-color: #EEE; 
    684 } 
    685  
    686 table.data tbody tr:hover { 
    687         background-color: #E9E9F9; 
    688 } 
    689  
    690 table.data tbody tr.alt:hover { 
    691         background-color: #E9E9F9; 
    692 } 
    693  
    694 table.data td { 
    695         border: 1px solid #CCC; 
    696         padding: .1em .25em; 
    697 } 
    698  
    699 table.data td.number { 
    700         text-align: right; 
    701 } 
    702  
    703 table.data td.datetime { 
    704         text-align: right; 
    705         white-space: nowrap; 
    706 } 
    707  
    708 /* --- alternate row & column color --- */ 
    709  
    710 table.data tr.alt { 
    711         background-color: #EEE; 
    712 } 
    713  
    714 table.data th.c1 { 
    715         background-color: #CDD; 
    716 } 
    717  
    718 table.data th.c2 { 
    719         background-color: #DCC; 
    720 } 
    721  
    722 table.data th.c3 { 
    723         background-color: #DDC; 
    724 } 
    725  
    726 table.data th.c4 { 
    727         background-color: #CDC; 
    728 } 
    729  
    730 table.data th.c5 { 
    731         background-color: #CCD; 
    732 } 
    733  
    734 table.data th.c6 { 
    735         background-color: #DCD; 
    736 } 
    737  
    738 table.data td.c1 { 
    739         background-color: #EFF; 
    740 } 
    741  
    742 table.data td.c2 { 
    743         background-color: #FEE; 
    744 } 
    745  
    746 table.data td.c3 { 
    747         background-color: #FFE; 
    748 } 
    749  
    750 table.data td.c4 { 
    751         background-color: #EFE; 
    752 } 
    753  
    754 table.data td.c5 { 
    755         background-color: #EEF; 
    756 } 
    757  
    758 table.data td.c6 { 
    759         background-color: #FEF; 
    760 } 
    761  
    762 table.data tr.alt td.c1 { 
    763         background-color: #DEE; 
    764 } 
    765  
    766 table.data tr.alt td.c2 { 
    767         background-color: #EDD; 
    768 } 
    769  
    770 table.data tr.alt td.c3 { 
    771         background-color: #EED; 
    772 } 
    773  
    774 table.data tr.alt td.c4 { 
    775         background-color: #DED; 
    776 } 
    777  
    778 table.data tr.alt td.c5 { 
    779         background-color: #DDE; 
    780 } 
    781  
    782 table.data tr.alt td.c6 { 
    783         background-color: #EDE; 
    784821} 
    785822