Ignore:
Timestamp:
Feb 18, 2012, 11:09:08 PM (12 years ago)
Author:
plg
Message:

change color scheme on submit buttons for clear theme: white text on dark gray
background and orange background on :hover.

On many places, the submit buttons are now left aligned (instead of centered)

On configuration option screens, the "Reset" button was removed: useless and
confusing.

Much simpler "Quick Local Synchronization" button on admin/intro.tpl for admin
theme clear.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes/clear/theme.css

    r13168 r13244  
    241241
    242242INPUT[type="text"].large  { width: 317px; }
    243 .bigbutton { background:transparent url(images/quickLocalSync.png) no-repeat scroll left top; display: block;
    244 color:#eee; font-size:28px; height:161px; margin: 0 20px 0 auto; padding:0 18px 0; text-align:center; width:625px;
    245 position:relative;  z-index: 50;}
    246 .bigtext { display:block; font-weight:bold; left:225px; position:relative; top:35px; width:320px;  z-index: 55; cursor:pointer; }
    247 .bigbutton:hover { color: #fff; }
    248 .bigbutton input { background:transparent url(images/transparent.gif) repeat scroll left top; border:0;
    249 display:block; height:85px; left:225px; position:relative; top:-42px; width:313px; z-index:99; padding:0;}
    250 .bigbutton input:hover { cursor:pointer; background:transparent url(images/transparent.gif) repeat scroll left top; border:0; padding:0;}
     243
     244.bigbutton {background:none;margin-right:-5px; padding: 10px;height:auto;position:static;width:auto;text-align:right;}
     245.bigtext {display:none;position:static;}
     246.bigbutton input[type="submit"] {display:inline;position:static;height:auto;width:auto;font-size:18px;padding:10px;}
     247
     248
    251249/* hacks */
    252250* html[lang="en"] body .content h2 , *+html[lang="en"] body .content h2 { text-transform:capitalize; } /* IE */
     
    295293
    296294#pwgMain {padding-left:0}
     295
     296input[type="submit"], input[type="button"], input[type="reset"], a.bigButton {
     297  font-size:12px;
     298  font-weight:bold;
     299  letter-spacing:1px;
     300  border:none;
     301  background-color:#666666;
     302  color:#fff;
     303  padding:2px 5px;
     304  -moz-border-radius:5px;
     305  -webkit-border-radius:5px;
     306  border-radius:5px;
     307  margin-left:0;
     308}
     309
     310input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover, a.bigButton:hover {
     311  background-color:#ff7700;
     312  color:white;
     313}
Note: See TracChangeset for help on using the changeset viewer.