Ignore:
Timestamp:
Apr 16, 2006 10:18:33 AM (18 years ago)
Author:
scdev
Message:

B - pEdit formatting ticket #1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/css/codebase.inc.css

    r97 r98  
    99 */
    1010
     11/*_____________________ SC Messaging ____________________*/
     12.sc-msg { font-family: verdana,geneva,arial,sans-serif; }
    1113
    12 /*_____________________ MESSAGING SYSTEM ____________________*/
    13 .codebasemsg
    14 {
    15     font-family: verdana,geneva,arial,sans-serif;
    16 }
    17 
    18 .success, .notice, .warning, .error
    19 {
     14.sc-msg-warning
     15.sc-msg-error
     16.sc-msg-success
     17.sc-msg-notice {
    2018    margin: 0 0 6px 0;
    2119    padding: 5px;
    2220    background: #fff;
    23     border: 1px solid white;
     21    color: #f00;
     22    border: 1px solid #f00;
     23}
     24.sc-msg-success { color: #090; border-color: #090; }
     25.sc-msg-notice { color: #C60; border-color: #C60; }
     26
     27/*_____________________ pEdit Forms ____________________*/
     28
     29.sc-pedit-form {}
     30
     31.sc-pedit-item,
     32.sc-pedit-buttons { margin: .75em 0; }
     33
     34#sc-pedit-versions-table {
     35    margin-bottom: .75em;
     36    border-collapse: collapse;
     37    border-spacing: 0;
    2438}
    2539
    26 .success
    27 {
    28     color: #090;
    29     border-color: #090;
     40#sc-pedit-versions-table th,
     41#sc-pedit-versions-table td {
     42    border-bottom: 1px solid #CC9;
     43    margin: 0;
     44    padding: 2px 10px;
     45    vertical-align: baseline;
    3046}
    31 
    32 .notice
    33 {
    34     color: #C60;
    35     border-color: #C60;
     47#sc-pedit-versions-table th {
     48    white-space: nowrap;
    3649}
    37 
    38 .warning, .error
    39 {
    40     color: #f00;
    41     border-color: #f00;
    42 }
    43 /* BEAU: How about a seperate class for the $fv->err() function to print?
    44 At the moment it uses the above error definition, but we could use a "form error {" one too. */
    45 
    46 
    47 /*_____________________ pEdit Forms ____________________*/
    48 #sc-pedit-form input[type="text"], textarea {
    49     width: 100%;
    50 }
    51 #sc-pedit-form textarea {
    52     height: 30em;
    53 }
    54 
Note: See TracChangeset for help on using the changeset viewer.