Changeset 5782061 in git
- Timestamp:
- 2012-07-30T06:57:52Z (7 years ago)
- Branches:
- 3.0, 3.1, 3.2, master, trunk
- Children:
- e051e90
- Parents:
- ad0c76f
- Location:
- htdocs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
htdocs/cacher/cacher.css
rad0c76f r5782061 8 8 .blocksgraph div { float: left; height: 3px; width: 4px; border: 0 solid gray; border-width: 0 0 1px 0; } 9 9 .blocksgraph { border: 1px solid gray; border-bottom: 0; } 10 .percent *, .blocksgraph *, .hitsgraph * { font-size: 1px; font-height: 1px; }10 .percent *, .blocksgraph *, .hitsgraph * { font-size: 1px; line-height: 1px; } 11 11 12 12 .hitsgraph { margin: auto; } 13 .hitsgraph a { float: left; border: 0 solid gray; } 13 .hitsgraph a { display: block; float: left; border: 0 solid gray; } 14 .hitsgraph a * { display: block; } 14 15 .hitsgraph a.active { border-top-color: yellow; } 15 16 .hitsgraph a:hover { background: gray; } 16 .hitsgraph a div { float: none; }17 17 18 18 dl { overflow: hidden; } -
htdocs/cacher/index.php
rad0c76f r5782061 92 92 $paddingHeight = $paddingHeight ? $paddingHeight . "px" : 0; 93 93 return '<a title="' . $v . '" href="javascript:;"' . $a . '>' 94 . ($paddingHeight ? '< div style="height: ' . $paddingHeight . '"></div>' : '')95 . ($valueHeight ? '< div style="background: rgb(' . "$r,$g,$b" . '); height: ' . $valueHeight . '"></div>' : '')94 . ($paddingHeight ? '<span style="height: ' . $paddingHeight . '"></span>' : '') 95 . ($valueHeight ? '<span style="background: rgb(' . "$r,$g,$b" . '); height: ' . $valueHeight . '"></span>' : '') 96 96 . '</a>'; 97 97 } -
htdocs/common/header.tpl.php
r388b3cf r5782061 2 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 3 <head> 4 <meta http-equiv="X-UA-Compatible" content="IE=6" />5 4 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['config']['charset']; ?>" /> 6 5 <meta http-equiv="Content-Language" content="<?php echo $GLOBALS['config']['lang']; ?>" />
Note: See TracChangeset
for help on using the changeset viewer.