Changeset 1310:fd5d59362c7a
- Timestamp:
- 08/07/13 07:21:17 (10 years ago)
- Branch:
- default
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/auth.php
r1309 r1310 265 265 <meta name="ROBOTS" content="NOARCHIVE,NOINDEX,NOFOLLOW" /> 266 266 <meta name="GOOGLEBOT" content="NOSNIPPET" /> 267 <meta name="viewport" content=" initial-scale=1.0" />267 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 268 268 <title><?php echo html::escapeHTML(DC_VENDOR_NAME); ?></title> 269 269 -
admin/style/default.css
r1309 r1310 52 52 .page-title { 53 53 color: #d30e60; 54 } 55 #content > h2 { 56 padding: 0 1.8rem .6rem; 57 margin: 0 -1.8rem 1rem; 58 background: #fff url(dc_bg_title.png) repeat-x center bottom; 54 59 } 55 60 h3 { … … 209 214 margin: 0 0 0 14.5em; 210 215 padding: .9rem 1.8rem 1.8rem; 211 background: #fff url(dc_bg_title.png) repeat-x center top;216 background: #fff; 212 217 } 213 218 /* Micro clearfix thx to Nicolas Gallagher */ … … 787 792 /* ------------------------------------------------------------------ contextual help */ 788 793 #help { 789 margin-top: 2em;794 margin-top: 4em; 790 795 background: #f5f5f5; 791 796 z-index: 100; … … 892 897 div.static-msg a, p.static-msg a { 893 898 color: #fff; 899 } 900 #content > .message, #content > .error { 901 margin-right: 14em 894 902 } 895 903 /* ------------------------------------------------------------------ navigation */ … … 1432 1440 #info-box1 select {width: 14rem;} 1433 1441 #help-button {position: absolute; top: 8rem; right:0;} 1434 #main-menu, #main, #content, # entry-wrapper, #entry-sidebar, #entry-content, .two-cols .col, .two-cols .col:first-child {1442 #main-menu, #main, #content, #content h2, #entry-wrapper, #entry-sidebar, #entry-content, .two-cols .col, .two-cols .col:first-child { 1435 1443 display:block; 1436 1444 width: 98%; … … 1450 1458 } 1451 1459 @media screen and (max-width: 492px) { 1452 #info-boxes {float:right;} 1453 #info-box1, #info-box2 {display: block;} 1454 #header {height:7.2rem;} 1455 #help-button {top: 11rem;} 1456 #info-boxes {display: inline-block; height: auto;} 1460 #header {min-height:3.6rem;} 1461 .page-title, #info-boxes {display: inline-block;} 1462 #help-button {top: 9rem;} 1457 1463 #top h1 a, #top {height: auto;} 1458 } 1464 #info-box1 p.nomobile, label.nomobile {display: none;} 1465 } -
inc/admin/lib.dc.page.php
r1309 r1310 73 73 } 74 74 $blog_box = 75 '<p><label for="switchblog" class="classic ">'.75 '<p><label for="switchblog" class="classic nomobile">'. 76 76 __('Blogs:').'</label> '. 77 77 $core->formNonce(). … … 95 95 ' <meta name="ROBOTS" content="NOARCHIVE,NOINDEX,NOFOLLOW" />'."\n". 96 96 ' <meta name="GOOGLEBOT" content="NOSNIPPET" />'."\n". 97 ' <meta name="viewport" content=" initial-scale=1.0" />'."\n".97 ' <meta name="viewport" content="width=device-width, initial-scale=1.0" />'."\n". 98 98 ' <title>'.$title.' - '.html::escapeHTML($core->blog->name).' - '.html::escapeHTML(DC_VENDOR_NAME).' - '.DC_VERSION.'</title>'."\n". 99 99 … … 134 134 '<form action="index.php" method="post">'. 135 135 $blog_box. 136 '<p ><a href="'.$core->blog->url.'" onclick="window.open(this.href);return false;" title="'.__('Go to site').' ('.__('new window').')'.'">'.__('Go to site').' <img src="images/outgoing.png" alt="" /></a>'.136 '<p class="nomobile"><a href="'.$core->blog->url.'" onclick="window.open(this.href);return false;" title="'.__('Go to site').' ('.__('new window').')'.'">'.__('Go to site').' <img src="images/outgoing.png" alt="" /></a>'. 137 137 '</p></form>'. 138 138 '</div>'.
Note: See TracChangeset
for help on using the changeset viewer.