Changeset 25 for trunk/css


Ignore:
Timestamp:
Dec 3, 2005 9:17:54 PM (18 years ago)
Author:
scdev
Message:
 
Location:
trunk/css
Files:
1 deleted
1 edited

Legend:

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

    r24 r25  
    1111/* BEAU: I format my CSS using BBEdit's Markup->CSS->Format command. Would you like to use that as well so our code looks consistant? */
    1212/*_____________________ FORMS ____________________*/
    13 input, select, input.submit
     13
     14/* BEAU: Had to comment-out all generic definitions... They fucked golbon. I guess the only things to have that are safe are custom class identifiers. Maybe we should standardize on classes we define in the codebase so they never conflict with other people's css, like: codebase_small, or cb_small? */
     15/*
     16input, select, submit
    1417{
    1518    color: #000;
     
    1821}
    1922
    20 /* BEAU: I changed this to input.submit, since it is an <input> tag. Is that correct? It definition doesn't seem to do anything regardless of how it's set. */
    21 input.submit
     23submit
    2224{
    2325    font-weight: bold;
    2426    margin: 0.5em;
    2527}
     28*/
    2629
    27 input
    28 {
    29     margin: 0.5em 0.5em 0 0;
    30 }
    31 
     30/*
    3231form table select, form table input
    3332{
    3433    margin-top: 0;
    3534}
     35*/
    3636
    3737/*
    38 BEAU: I want more text box widths! I find need for boxes that fit 5em, 10em, 20em, and 40em widths. These should be in EMs so text can resize and still fit. Since it is useful to apply a width to other form elements to have them similar sizes (not always a text box, such as <select multiple>) I propose renaming them to "input.tiny", "input.small", "input.medium", "input.large", and "input.half" (not sure how you would do "half" in EMs however.
     38BEAU: I want more text box widths! I find need for boxes that fit 5em, 10em, 20em, and 40em widths. These should be in EMs so text can resize and still fit. Since it is useful to apply a width to other form elements to have them similar sizes (not always a text box, such as <select multiple>) I propose renaming them to "input.tiny", "input.small", "input.medium", "input.large", and "input.half" (not sure how you would do "half" in EMs however. DONE.
    3939*/
     40
     41input.tiny, textarea.tiny, select.tiny,
     42input.small, textarea.small, select.small,
     43input.medium, textarea.medium, select.medium,
     44input.large, textarea.large, select.large
     45{
     46    margin: 0 0.5em 0 0;
     47}
    4048
    4149input.tiny, textarea.tiny, select.tiny
     
    9098}
    9199
     100/*
    92101form label
    93102{
     
    95104    font-weight: bold;
    96105}
     106*/
    97107
    98 /* BEAU: We need a .formtext substitute...something like a label tag but not bold! */
     108/* BEAU: We need a .formtext substitute...something like a label tag but not bold! Maybe use "form p { }"? */
     109
     110
    99111/*_____________________ COMMANDS ____________________*/
     112
     113/* Should this be an ID??? */
    100114#commandbox
    101115{
Note: See TracChangeset for help on using the changeset viewer.