Skip to content

Commit

Permalink
Fix font issue where bold was used instead of medium (500). This made…
Browse files Browse the repository at this point in the history
… font look ver blurry and poor quality
  • Loading branch information
Jackysi committed Apr 15, 2015
1 parent a4a90ff commit f3183a3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bwm-weekly.asp
Expand Up @@ -11,7 +11,7 @@ No part of this file may be used without permission.
<content>
<style>
table tr td { width: 25%; }
.total { font-weight: bold; }
.total { font-weight: 500; }
</style>
<script type="text/javascript" src="js/bwm-hist.js"></script>
<script type="text/javascript">
Expand Down
4 changes: 4 additions & 0 deletions css/style.css
Expand Up @@ -688,6 +688,10 @@ table {
margin: 0;
}

table th {
font-weight: 500;
}

/* Nice Lined Tables */
table.line-table tr {
display: table-row;
Expand Down
4 changes: 2 additions & 2 deletions qos-graphs.asp
Expand Up @@ -24,11 +24,11 @@ No part of this file may be used without permission.
}
.thead {
font-size: 90%;
font-weight: bold;
font-weight: 500;
}
.total {
border-top: 1px dashed #bbb;
font-weight: bold;
font-weight: 500;
margin-top: 5px;
}
Expand Down
2 changes: 1 addition & 1 deletion status-webmon.asp
Expand Up @@ -15,7 +15,7 @@ No part of this file may be used without permission.
}
#webmon-controls .selected {
padding: 0 0px 0 4px;
font-weight: bold;
font-weight: 500;
text-decoration: underline;
}
Expand Down

0 comments on commit f3183a3

Please sign in to comment.