1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Created Retina versions of misc images. The images for the Notes section are new but patterned after the old ones.

This commit is contained in:
Levi Morrison
2013-07-25 02:17:59 -06:00
parent 3f5a8fec3e
commit 4b07d39501
12 changed files with 15 additions and 15 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
images/notes-add@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

BIN
images/notes-delete@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

BIN
images/notes-edit@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 371 B

BIN
images/notes-reject@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

BIN
images/to-top@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -84,7 +84,7 @@ if (isset($shortname) && $shortname) {
<nav id="head-nav" class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="/" class="brand"><img src="/images/logos/php-logo@144.png" width="58" height="30" alt="php"/></a>
<a href="/" class="brand"><img src="/images/logos/php-logo@2x.png" width="48" height="24" alt="php"/></a>
<ul class="nav">
<li class="<?php echo $curr == "downloads" ? "active" : ""?>"><a href="/downloads">Downloads</a></li>
<li class="<?php echo $curr == "docs" ? "active" : ""?>"><a href="/manual/">Documentation</a></li>

View File

@@ -402,11 +402,10 @@ function manual_notes_beta() {
// and it's extended form with a [+] image
$addnotelink = '/manual/add-note.php?sect=' . $filename .
'&amp;redirect=' . $_SERVER['BASE_HREF'];
$addnotesnippet =
make_link($addnotelink, make_image('notes-add.gif', 'add a note', FALSE, 'class="middle"')) .
' <small>' .
make_link($addnotelink, 'add a note') .
'</small>';
$addnotesnippet = make_link(
$addnotelink,
"<img src='/images/notes-add@2x.png' alt='add a note' width='12' height='12' /> <small>add a note</small>"
);
$num_notes = count($notes);
if ($num_notes) {
@@ -529,21 +528,21 @@ VOTEDIV;
make_popup_link(
'https://master.php.net/manage/user-notes.php?action=edit+' . $id,
make_image('notes-edit.gif', 'edit note'),
'<img src="/images/notes-edit@2x.png" height="12" width="12" alt="edit note" />',
'admin',
'scrollbars=yes,width=650,height=400'
) . "\n " .
make_popup_link(
'https://master.php.net/manage/user-notes.php?action=reject+' . $id,
make_image('notes-reject.gif', 'reject note'),
'<img src="/images/notes-reject@2x.png" height="12" width="12" alt="reject note" />',
'admin',
'scrollbars=no,width=300,height=200'
) . "\n " .
make_popup_link(
'https://master.php.net/manage/user-notes.php?action=delete+' . $id,
make_image('notes-delete.gif', 'delete note'),
'<img src="/images/notes-delete@2x.png" height="12" width="12" alt="delete note" />',
'admin',
'scrollbars=no,width=300,height=200'
) . "\n </span>";

View File

@@ -159,7 +159,7 @@ $(document).ready(function() {
var containerIDhash = '#' + settings.containerID;
var containerHoverIDHash = '#'+settings.containerHoverID;
$('body').append('<a href="#" id="'+settings.containerID+'" onclick="return false;">'+settings.text+'</a>');
$('body').append('<a href="#" id="'+settings.containerID+'" onclick="return false;"><img src="/images/to-top@2x.png" width="40" hieght="40" alt="'+settings.text+'"/></a>');
$(containerIDhash).hide().click(function(){
$('html, body').animate({scrollTop:0}, settings.scrollSpeed, settings.easingType);
$('#'+settings.containerHoverID, this).stop().animate({'opacity': 0 }, settings.inDelay, settings.easingType);

View File

@@ -280,8 +280,8 @@ ul.chunklist_children {
left: 0;
}
.docs .classsynopsis,
.docs .refsect1 {
margin-top: 3em;
color: #333;
border-top:0.125em solid #669;
border-bottom:1px solid #d6d6dd;
@@ -290,6 +290,10 @@ ul.chunklist_children {
inset -2px 0 2px -2px #d6d6dd;
}
.docs .refsect1 {
margin-top: 3em;
}
.docs .classsynopsis,
.docs div.refsect1 {
position: relative;

View File

@@ -216,7 +216,7 @@ hr {
margin-right:.75em;
}
.navbar .brand img {
padding:1px 0;
padding:4px 0 2px;
}
.navbar a {
border:0;
@@ -998,9 +998,6 @@ em, strong {
height:43px;
border:none;
z-index:100;
text-indent:-999px;
background:url(../images/to-top.png) no-repeat;
opacity:0.5;
}
#toTopHover {