Changeset 391:77ce8f145513
- Timestamp:
- 06/19/11 01:41:59 (14 years ago)
- Branch:
- themes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/color-picker.js
r0 r391 36 36 span.css('display','block'); 37 37 38 span.css('width',($(this).width()+12)+'px'); 38 //span.css('width',($(this).width()+12)+'px'); 39 span.css('width',($(this).width()+7.5)+'em'); 39 40 span.css('padding','0 5px 0 0'); 40 41 $(this).wrap(span); … … 45 46 position: 'absolute', 46 47 top: 3, 47 right: 048 //right: 0 48 49 }); 49 50 -
admin/style/default.css
r257 r391 1127 1127 p.field { 1128 1128 position: relative; 1129 1129 1130 1130 } 1131 1131 p.field label { -
themes/ductile/mediaqueries.css
r386 r391 13 13 -------------------------------------------------------------------- */ 14 14 @media only screen and (max-width:480px) { 15 #prelude, #blogdesc, #supranav span{15 .nomobile { 16 16 display: none !important; 17 17 } … … 38 38 border-bottom: 1px solid #ccc; 39 39 } 40 h2.post-title { 41 font-size: 2em; 40 .post-title { 41 font-size: 1.5em; 42 font-weight: bold; 43 font-family: "Franklin gothic medium","arial narrow","DejaVu Sans Condensed","helvetica neue",helvetica,sans-serif; 44 } 45 .post-title a { 46 font-style: normal; 47 font-weight: bold; 42 48 } 43 49 #stickers { … … 98 104 display: block; 99 105 } 106 .post-title { 107 font-size: 2.5em; 108 font-weight: normal; 109 } 110 .post-title a { 111 font-style: italic; 112 font-weight: normal; 113 } 100 114 #stickers { 101 115 position: absolute; … … 114 128 display: none; 115 129 } 116 h2.post-title {130 .post-title { 117 131 font-size: 2.6em; 118 132 } -
themes/ductile/style.css
r386 r391 163 163 ------------------------------------------------------------- */ 164 164 165 #wrapper { }165 #wrapper { clear:both; } 166 166 #main { } 167 167 #content { … … 233 233 display: none; 234 234 } 235 h2.post-title { 236 font-weight: normal; 235 .post-title { 237 236 margin-bottom: .33em; 238 237 color: #000; 239 238 line-height: 1.17; 240 239 } 241 h2.post-title a { 242 font-weight: normal; 243 font-style: italic; 240 .post-title a { 244 241 text-decoration: none; 245 242 color: #ad3f4c; … … 391 388 font-size: 1.14em; 392 389 } 393 a.comment-number {390 .comment-number { 394 391 font-size: 2em; 395 392 font-weight: normal; … … 573 570 line-height: 2em; 574 571 } 575 # search #q {572 #q { 576 573 float: left; 577 574 width: 78%; … … 579 576 padding-left: 2px; 580 577 } 581 # search #q:focus {578 #q:focus { 582 579 background: #fcfcf9; 583 580 } -
themes/ductile/tpl/_top.html
r367 r391 1 1 <div id="header"> 2 2 3 <ul id="prelude" >3 <ul id="prelude" class="nomobile"> 4 4 <li><a href="#main">{{tpl:lang To content}}</a></li> 5 5 <li><a href="#blognav">{{tpl:lang To menu}}</a></li> … … 15 15 2. que l'utilisateur puisse indiquer si oui ou non il souhaite afficher la description (?) 16 16 --> 17 <p id="blogdesc" >{{tpl:BlogDescription}}</p>17 <p id="blogdesc" class="nomobile">{{tpl:BlogDescription}}</p> 18 18 19 19 <!-- # --BEHAVIOR-- publicTopAfterContent --> … … 26 26 --> 27 27 <ul id="supranav"> 28 <li id="li1" class="active"><a href="{{tpl:BlogURL}}">Accueil<span > articles récents</span></a></li>29 <li id="li2"><a href="#">Construire un thème<span > tutoriels</span></a></li>30 <li id="li3"><a href="#">Maquettes<span > projets graphiques</span></a></li>31 <li id="li4"><a href="{{tpl:BlogURL}}archive">Archives<span > 2005-2011</span></a></li>28 <li id="li1" class="active"><a href="{{tpl:BlogURL}}">Accueil<span class="nomobile"> articles récents</span></a></li> 29 <li id="li2"><a href="#">Construire un thème<span class="nomobile"> tutoriels</span></a></li> 30 <li id="li3"><a href="#">Maquettes<span class="nomobile"> projets graphiques</span></a></li> 31 <li id="li4"><a href="{{tpl:BlogURL}}archive">Archives<span class="nomobile"> 2005-2011</span></a></li> 32 32 </ul> 33 33 </div>
Note: See TracChangeset
for help on using the changeset viewer.