Changeset 2002:a0de6679a058 for admin
- Timestamp:
- 09/22/13 12:09:07 (12 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blogs.php
r1926 r2002 133 133 134 134 echo 135 '<div class="table-outer">'. 135 136 '<table class="clear"><caption class="hidden">'.__('Blogs list').'</caption><tr>'. 136 137 '<th scope="col" class="nowrap">'.__('Blog id').'</th>'. … … 145 146 } 146 147 147 echo '</table> ';148 echo '</table></div>'; 148 149 149 150 echo $pager->getLinks(); -
admin/langs.php
r1553 r2002 173 173 { 174 174 echo 175 '<table class="clear plugins"><tr>'. 175 '<table class="table-outer clear">'. 176 '<table class="plugins"><tr>'. 176 177 '<th>'.__('Language').'</th>'. 177 178 '<th class="nowrap">'.__('Action').'</th>'. … … 202 203 echo '</td></tr>'; 203 204 } 204 echo '</table> ';205 echo '</table></div>'; 205 206 } 206 207 -
admin/plugins.php
r1622 r2002 252 252 echo 253 253 '<h3>'.__('Activated plugins').'</h3>'. 254 '<table class="clear plugins"><tr>'. 254 '<table class="table-outer clear">'. 255 '<table class="plugins"><tr>'. 255 256 '<th>'.__('Plugin').'</th>'. 256 257 '<th class="nowrap">'.__('Version').'</th>'. … … 296 297 } 297 298 echo 298 '</table> ';299 '</table></div>'; 299 300 } 300 301 … … 305 306 echo 306 307 '<h3>'.__('Deactivated plugins').'</h3>'. 307 '<table class="clear plugins"><tr>'. 308 '<table class="clear table-outer">'. 309 '<table class="plugins"><tr>'. 308 310 '<th>'.__('Plugin').'</th>'. 309 311 '<th class="nowrap">'.__('Action').'</th>'. … … 339 341 } 340 342 echo 341 '</table> ';343 '</table></div>'; 342 344 } 343 345 -
admin/post.php
r1964 r2002 845 845 { 846 846 echo 847 '<div class="table-outer">'. 847 848 '<table class="comments-list"><tr>'. 848 849 '<th colspan="2" class="first">'.__('Author').'</th>'. … … 889 890 } 890 891 891 echo '</table> ';892 echo '</table></div>'; 892 893 } 893 894 -
admin/style/default.css
r1997 r2002 27 27 position: relative; 28 28 padding-top: 1em; 29 overflow: hidden; 29 overflow: hidden; /* pour les hauteurs égales */ 30 30 float: left; 31 31 width: 100%; 32 32 z-index: 10; 33 /*background: #f7f7f7 url(bg_wrapper.png) repeat-y 15.5em;*/34 33 } 35 34 .with-js #wrapper { … … 39 38 width: 100%; 40 39 float: right; 41 margin-left: -1 5.5em;40 margin-left: -14em; 42 41 margin-top: 0; 43 42 } 44 43 #content { 45 margin: 0 0 0 1 5.5em;46 padding: .75em 1 em;44 margin: 0 0 0 14em; 45 padding: .75em 1.5em .75em 2.5em; 47 46 background: #fff; 48 47 } … … 301 300 /* titre de page */ 302 301 #content > h2 { 303 padding: 0 18px 6px; /* ie < 9 sucks */ 304 padding: 0 1.8rem .6rem; 305 margin: 0 -18px .5em; /* ie < 9 sucks */ 306 margin: 0 -1.8rem 1rem; 302 padding: 0 1.5em .5em 1em; 303 margin: 0 -1.5em .5em -1em; 307 304 background: #fff url(bg_h2.png) repeat-x center bottom; 308 305 } … … 366 363 } 367 364 /* ---------------------------------------------------------------- tableaux */ 365 .table-outer { 366 width: 100%; 367 overflow: auto; 368 } 368 369 table { 369 370 font-size: 12px; /* ie < 9 sucks */ … … 371 372 border-collapse: collapse; 372 373 margin: 0 0 1em 0; 374 width: 100%; 373 375 } 374 376 caption { … … 1112 1114 } 1113 1115 #help-button.floatable { 1114 border-radius: 2em; 1115 background-color: #f5f5f5; 1116 position: fixed; 1117 top: 10px; 1118 } 1116 border-top: 2px solid #ccc; 1117 border-left: 2px solid #ccc; 1118 border-bottom: 2px solid #ccc; 1119 border-bottom-left-radius: 1em; 1120 border-top-left-radius: 1em; 1121 background-color: #f5f5f5; 1122 position: fixed; 1123 top: 10px; 1124 } 1119 1125 .no-js #help-button { 1120 1126 top: 1em; … … 1125 1131 } 1126 1132 #content.with-help #help-button { 1127 right: 28 2px; /* ie < 9 sucks */1133 right: 280px; /* ie < 9 sucks */ 1128 1134 right: 28rem; 1129 1135 background-color: #f5f5f5; 1130 1136 position: fixed; 1131 top: 5 4px;1137 top: 50px; 1132 1138 z-index: 100; 1133 1139 border-top: 2px solid #FFD478; … … 1145 1151 } 1146 1152 #content.with-help .help-content { 1147 padding: 0 .5em 1em;1153 padding: 0 1em 1em; 1148 1154 } 1149 1155 .help-content dt { … … 2337 2343 /* ------------------------------------------------------------------------------------ 2338 2344 UN POIL DE MEDIA QUERIES 2339 ------------------------------------------------------------------------------------ */2345 ------------------------------------------------------------------------------------ 2340 2346 @media screen and (max-width: 920px) { 2341 2347 #top, #top h1 a { -
admin/users_actions.php
r1941 r2002 210 210 echo 211 211 '<form action="users_actions.php" method="post" id="form-blogs">'. 212 '<table class="clear"><tr>'. 212 '<table class="table-outer clear">'. 213 '<table><tr>'. 213 214 '<th class="nowrap" colspan="2">'.__('Blog ID').'</th>'. 214 215 '<th class="nowrap">'.__('Blog name').'</th>'. … … 235 236 236 237 echo 237 '</table> '.238 '</table></div>'. 238 239 '<p class="checkboxes-helpers"></p>'. 239 240 '<p><input type="submit" value="'.__('Set permissions').'" />'.
Note: See TracChangeset
for help on using the changeset viewer.