Skip to content

Commit

Permalink
Fix the red line used to identify recent entries on the log pages
Browse files Browse the repository at this point in the history
- use `display:grid` on the parent;
- set `width:100%` on the line element;
- set margin-bottom to `-1px`, to avoid a small jump when the line is hidden
  • Loading branch information
rdwebdesign committed Dec 2, 2023
1 parent eac8eb6 commit 7d2e83c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions style/pi-hole.css
Original file line number Diff line number Diff line change
Expand Up @@ -1072,6 +1072,7 @@ table.dataTable tbody > tr > .selected {

#output {
position: relative;
display: grid;
margin: 5px 0;
min-height: 36px;
padding: 4px 8px;
Expand Down Expand Up @@ -1140,8 +1141,8 @@ table.dataTable tbody > tr > .selected {
}

.hr-small {
margin-top: 0px;
margin-bottom: 0px;
width: 100%;
margin: 0 0 -1px;
border-top: 1px solid #ff0000aa;
}

Expand Down

0 comments on commit 7d2e83c

Please sign in to comment.