1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-17 09:44:59 +12:00

add bottom border to logger toolbar (prevents toolbar blending in to log entries while scrolling)

This commit is contained in:
xofe 2017-11-24 08:09:56 +00:00
parent 53c786e73c
commit e6a0379e54
2 changed files with 2 additions and 5 deletions

View file

@ -12,6 +12,7 @@ body {
#toolbar {
background-color: white;
border: 0;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
-moz-box-sizing: border-box;
left: 0;
@ -125,7 +126,6 @@ body.f table tr.f {
body #content td {
border: 1px solid #ccc;
border-top: none;
min-width: 0.5em;
padding: 3px;
vertical-align: top;
@ -133,9 +133,6 @@ body #content td {
word-break: break-all;
word-wrap: break-word;
}
#content table tr td {
border-top: 1px solid #ccc;
}
#content table tr td:first-of-type {
border-left: none;
}

View file

@ -68,7 +68,7 @@ var dateOptions = {
document.getElementById('content').style.setProperty(
'margin-top',
document.getElementById('toolbar').offsetHeight + 'px'
document.getElementById('toolbar').clientHeight + 'px'
);
/******************************************************************************/