Changeset 1515 for trunk/template
- Timestamp:
- Jul 29, 2006, 11:57:24 AM (18 years ago)
- Location:
- trunk/template/yoga
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/yoga/default-colors.css
r1491 r1515 36 36 background-color: #d3d3d3; /* lightgrey */ 37 37 } 38 /*INPUT.text.focus, INPUT.password.focus, INPUT.button.focus, 39 INPUT.submit.focus, INPUT.reset.focus, INPUT.file.focus,*/ 38 40 39 INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus { 41 background-color: #f5f5f5; /* whitesmoke */ 40 background-color: #f5f5f5; /* whitesmoke */ 41 } 42 43 /* some theme set a border on INPUT which is not pretty for radio/checkbox */ 44 INPUT[type="radio"], INPUT[type="checkbox"] { 45 border: none; /* <= Opera needs this */ 46 } 47 48 INPUT.radio, INPUT.checkbox { 49 border: none; /* <= IE6 needs this */ 50 } 51 52 /* rate buttons displayed like links */ 53 INPUT.rateButton, INPUT.rateButtonSelected { 54 color:inherit; 55 background-color:transparent; /* Konqueror doesn't accept transparent here */ 42 56 } 43 57 -
trunk/template/yoga/fix-ie5-ie6.css
r1513 r1515 10 10 #content { 11 11 height: 1em; /* for IE6 it's like min-height */ 12 }13 14 /* some theme set a border on INPUT which is not pretty for those */15 INPUT.radio, INPUT.checkbox {16 border: none;17 12 } 18 13 -
trunk/template/yoga/picture.css
r1450 r1515 96 96 } 97 97 98 .rateButton, .rateButtonSelected { 99 background-color:transparent; 98 .rateButton, .rateButtonSelected { 100 99 padding:0; 101 100 border:0; … … 107 106 108 107 .rateButtonSelected { 109 color:inherit;110 108 font-weight:bold; 111 109 font-size:120%; -
trunk/template/yoga/theme/clear/theme.css
r1339 r1515 2 2 3 3 /* text color */ 4 BODY, H1, H2, H3, DT { 4 BODY, H1, H2, H3, DT, 5 INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { 5 6 color:#696969; /* dimgray */ 6 7 } … … 54 55 55 56 /* links */ 56 A, .rateButton {57 A, INPUT.rateButton { 57 58 color: #005e89; 58 59 background: transparent; 59 60 } 60 61 61 A:hover {62 A:hover, INPUT.rateButton:hover { 62 63 color: #858460; 63 64 } -
trunk/template/yoga/theme/dark/theme.css
r1339 r1515 2 2 3 3 /* text color */ 4 BODY, H1, H3, DT { 4 BODY, H1, H3, DT, 5 INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { 5 6 color:#e0e0e0; 6 7 } … … 87 88 88 89 /* links */ 89 A, .rateButton {90 A, INPUT.rateButton { 90 91 color: #FFFFFF; 91 92 }
Note: See TracChangeset
for help on using the changeset viewer.