Skip to content

Commit

Permalink
minor style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeTWC1984 committed Apr 22, 2024
1 parent dcd9fce commit 558458b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htdocs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ td.table_label {

.upcoming.schedule.grid-item {
/* background-color: #fafafa */
background-color: var(--box-background-color);
background-color: var(--background-color);
/* color: #fff */
}

Expand Down
2 changes: 1 addition & 1 deletion htdocs/js/pages/Home.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ Class.subclass( Page.Base, "Page.Home", {
var col_width = Math.floor( ((size.width * 0.9) + 50) / 7 );

var cols = ['Event Name', 'Category', 'Plugin', 'Target', 'Scheduled Time', 'Countdown', 'Actions'];
var limit = Math.round((window.innerWidth-200)/350)*4 // try to fit 4 rows
var limit = Math.round((window.innerWidth)/350)*4 // try to fit 4 rows

html += this.getPaginatedTable({
resp: {
Expand Down

0 comments on commit 558458b

Please sign in to comment.