Changeset 7869 for trunk/admin
- Timestamp:
- Nov 24, 2010, 9:42:56 PM (14 years ago)
- Location:
- trunk/admin/themes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/themes/clear/theme.css
r7822 r7869 101 101 SPAN.pwgScreen { font-style:italic; border-bottom:1px dotted #666} 102 102 103 .content ul.thumbnails span.wrap2:hover { background-color:#eee; border:1px solid #0cc9c; color:#999; }104 .content ul.thumbnails span.wrap2 { border:1px solid #999; padding: 4px; }105 .content ul.thumbnails span.wrap2 { -moz-border-radius-bottomleft:4px; -moz-border-radius-bottomright:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px; }106 .content ul.thumbnails span.wrap1 { margin:0 12px 5px; }103 UL.thumbnails span.wrap2:hover { background-color:#eee; border:1px solid #0cc9c; color:#999; } 104 UL.thumbnails span.wrap2 { border:1px solid #999; padding: 4px; } 105 UL.thumbnails span.wrap2 { -moz-border-radius:4px; } 106 UL.thumbnails span.wrap1 { margin:0 12px 5px; } 107 107 108 108 /* borders */ 109 109 fieldset { border: 2px solid #ddd; } 110 110 TEXTAREA { cursor:text; font-size: 13px; } 111 .contentUL.thumbnails SPAN.wrap2 {111 UL.thumbnails SPAN.wrap2 { 112 112 border: 1px solid #555555; /* thumbnails border color and style */ 113 113 border-radius: 4px 4px; /* round corners with CSS3 compliant browsers */ -
trunk/admin/themes/default/content.css
r6363 r7869 24 24 25 25 /* not used but should be */ 26 body#thePopuphelpPage .content { margin: 1em; }26 #thePopuphelpPage .content { margin: 1em; } -
trunk/admin/themes/default/default-layout.css
r7733 r7869 772 772 min-width: 60em; /* ~ 3* #menubar width */ 773 773 } 774 BODY#thePopuphelpPage {774 #thePopuphelpPage { 775 775 min-width: 0; 776 776 } … … 780 780 781 781 /* Set some sizes according to your maximum thumbnail width and height */ 782 .contentUL.thumbnails SPAN,783 .contentUL.thumbnails SPAN.wrap2 A,784 .contentUL.thumbnails LABEL,782 UL.thumbnails SPAN, 783 UL.thumbnails SPAN.wrap2 A, 784 UL.thumbnails LABEL, 785 785 .content DIV.thumbnailCategory DIV.illustration { 786 786 width: 140px; /* max thumbnail width + 2px */ 787 787 } 788 .contentUL.thumbnails SPAN.wrap2,788 UL.thumbnails SPAN.wrap2, 789 789 .content DIV.thumbnailCategory DIV.description { 790 790 height: 140px; /* max thumbnail height + 2px */ … … 798 798 799 799 /* Set defaults for thumbnails legend */ 800 .contentUL.thumbnails SPAN.thumbLegend {800 UL.thumbnails SPAN.thumbLegend { 801 801 display: block; /* display: none; if you don't want legend */ 802 802 height: 4em; /* legend height (don't set auto to be Gecko friendly)*/ -
trunk/admin/themes/default/fix-ie5-ie6.css
r6363 r7869 16 16 17 17 /* fix IE with another layout for thumbnails */ 18 .contentUL.thumbnails SPAN.wrap2 {18 UL.thumbnails SPAN.wrap2 { 19 19 display: block; 20 20 position: relative; … … 22 22 } 23 23 24 .contentUL.thumbnails IMG.thumbnail {24 UL.thumbnails IMG.thumbnail { 25 25 position: relative; 26 26 top: -50%; /* Is this following hacking technic required ? */ … … 29 29 /**/ 30 30 } 31 .contentUL.thumbnails INPUT {31 UL.thumbnails INPUT { 32 32 position: absolute; 33 33 left: 2px; -
trunk/admin/themes/default/thumbnails.css
r6363 r7869 1 .contentUL.thumbnails {1 UL.thumbnails { 2 2 margin: 0; padding: 0; list-style: none; 3 3 text-align: center; /* to center the whole collection in .content */ 4 4 float: left; 5 5 } 6 .contentUL.thumbnails LI { display: inline }7 .content ul.thumbnails li.rank-of-image {6 UL.thumbnails LI { display: inline } 7 UL.thumbnails li.rank-of-image { 8 8 float: left; 9 9 background-color: #111; … … 17 17 margin: 10px; 18 18 } 19 .content ul.thumbnails li.rank-of-image img {19 UL.thumbnails li.rank-of-image img { 20 20 margin: 0 20px; 21 21 padding: 4px 2px; … … 30 30 position:absolute; 31 31 } 32 .content ul.thumbnails li.rank-of-image input {32 UL.thumbnails li.rank-of-image input { 33 33 height: 12px; 34 34 width: 50px; … … 36 36 top: 4px; 37 37 } 38 .contentUL.thumbnails SPAN.wrap1 {38 UL.thumbnails SPAN.wrap1 { 39 39 margin: 0 5px 5px 5px; 40 40 display: table-cell; display: inline-table; … … 43 43 text-align: center; /* to center the thumbnail and legend in Geko/Opera */ 44 44 } 45 .contentUL.thumbnails SPAN.wrap2 {45 UL.thumbnails SPAN.wrap2 { 46 46 margin: 0; /* important reset the margins */ 47 47 display: table-cell; /* block prevents vertical-align here */ 48 48 vertical-align: middle; /* Ok with Opera and Geko not IE6 */ 49 49 } 50 .contentUL.thumbnails LABEL { display: block; border-bottom: none; }51 .contentUL.thumbnails IMG {50 UL.thumbnails LABEL { display: block; border-bottom: none; } 51 UL.thumbnails IMG { 52 52 margin-bottom: -4px; /* why ??? something wrong with Geko and Opera ignored by IE6*/ 53 53 } 54 .contentUL.thumbnails LABEL { position: relative; }55 .contentUL.thumbnails INPUT {54 UL.thumbnails LABEL { position: relative; } 55 UL.thumbnails INPUT { 56 56 position: relative; /* <= Opera can handle relative here */ 57 57 top: -20px; 58 58 } 59 :root .contentUL.thumbnails INPUT { /* hide from Opera */59 :root UL.thumbnails INPUT { /* hide from Opera */ 60 60 position: absolute; /* <= Opera hide 1 checkbox over 2 !!! */ 61 61 left: 2px; top: 2px; -
trunk/admin/themes/roma/theme.css
r7822 r7869 77 77 SPAN.pwgScreen { font-style:italic; border-bottom:1px dotted #666} 78 78 79 .content ul.thumbnails span.wrap2:hover { background-color:#111; border:1px solid #FF3363; color:#666; }80 .content ul.thumbnails span.wrap2 { border:1px solid #666; padding: 4px; }81 .content ul.thumbnails span.wrap2 { -moz-border-radius-bottomleft:4px; -moz-border-radius-bottomright:4px; -moz-border-radius-topleft:4px; -moz-border-radius-topright:4px;}82 .content ul.thumbnails span.wrap1 { margin:0 12px 5px; }79 UL.thumbnails span.wrap2:hover { background-color:#111; border:1px solid #FF3363; color:#666; } 80 UL.thumbnails span.wrap2 { border:1px solid #666; padding: 4px; } 81 UL.thumbnails span.wrap2 { -moz-border-radius:4px; } 82 UL.thumbnails span.wrap1 { margin:0 12px 5px; } 83 83 /* .throw, */ td h3 { 84 84 background-image: url(images/fillet.png); background-repeat: repeat-x; } … … 88 88 input:focus, select:focus, textarea:focus, input.focus, form .focus { background-color:#444;color: #999; } 89 89 TEXTAREA { cursor:text; font-size: 13px; } 90 .contentUL.thumbnails SPAN.wrap2 {90 UL.thumbnails SPAN.wrap2 { 91 91 border: 1px solid #aaaaaa; /* thumbnails border color and style */ 92 92 border-radius: 4px 4px; /* round corners with CSS3 compliant browsers */
Note: See TracChangeset
for help on using the changeset viewer.