Skip to content

Commit

Permalink
Display pointer for labels,fix missing semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
swarajgiri committed Feb 14, 2014
1 parent 1ab95c3 commit 0808e70
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions opcache.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@ function size_for_humans($bytes) {
}

h1 {
padding: 10px 0
padding: 10px 0;
}

table {
border-collapse: collapse;
}

tbody tr:nth-child(even) {
background-color: #eee
background-color: #eee;
}

p.capitalize {
text-transform: capitalize
text-transform: capitalize;
}

.tabs {
Expand All @@ -56,7 +56,7 @@ function size_for_humans($bytes) {
}

.tab {
float: left
float: left;
}

.tab label {
Expand All @@ -69,11 +69,11 @@ function size_for_humans($bytes) {
}

.tab [type=radio] {
display: none
display: none;
}

.tab th, .tab td {
padding: 6px 10px
padding: 6px 10px;
}

.content {
Expand All @@ -89,7 +89,7 @@ function size_for_humans($bytes) {
}

.content table {
width: 100%
width: 100%;
}

.content th, .tab:nth-child(3) td {
Expand Down Expand Up @@ -142,6 +142,9 @@ function size_for_humans($bytes) {
padding: 6px 10px;
font-size: 0.8em;
}
label {
cursor: pointer;
}
</style>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.0.1/d3.v3.min.js"></script>
<script type="text/javascript">
Expand Down Expand Up @@ -354,4 +357,4 @@ function arcTween(a) {
}
</script>
</body>
</html>
</html>

0 comments on commit 0808e70

Please sign in to comment.