mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
30 lines
1000 B
CSS
30 lines
1000 B
CSS
/* TOC elements on manual pages ------------------------------------------- */
|
|
ul.toc li {
|
|
background-image: url(http://static.php.net/www.php.net/images/box-0.gif);
|
|
}
|
|
ul.toc li.up {
|
|
background-image: url(http://static.php.net/www.php.net/images/caret-u.gif);
|
|
}
|
|
ul.toc li.home {
|
|
background-image: url(http://static.php.net/www.php.net/images/caret-t.gif);
|
|
}
|
|
ul.toc li.active {
|
|
background-image: url(http://static.php.net/www.php.net/images/box-1.gif);
|
|
}
|
|
|
|
/* Sidebar backgrounds ---------------------------------------------------- */
|
|
#layout_2, #layout_3 {
|
|
background-image: url(http://static.php.net/www.php.net/images/leftbar.png);
|
|
}
|
|
#layout_3_helper {
|
|
background-image: url(http://static.php.net/www.php.net/images/rightbar.png);
|
|
}
|
|
|
|
/* Tips and warning icons, mainly used in the manual */
|
|
div.tip {
|
|
background-image: url(http://static.php.net/www.php.net/images/dialog-information.png);
|
|
}
|
|
div.warning {
|
|
background-image: url(http://static.php.net/www.php.net/images/dialog-warning.png);
|
|
}
|