Finished up cleaning css.

This commit is contained in:
rainbow napkin 2024-12-08 05:53:00 -05:00
parent b13e2bde24
commit ff69762a1f
15 changed files with 87 additions and 98 deletions

View file

@ -39,7 +39,6 @@ class canopyUXUtils{
newTableCell(content, firstCol = false){
//Create a new 'td' element
const cell = document.createElement('td');
cell.classList.add("admin-list-entry","admin-list-entry-item");
//If it's not the first column, mention it!
if(!firstCol){
@ -78,7 +77,8 @@ class canopyUXUtils{
newTableRow(cellContent){
//Create an empty table row to hold the cells
const entryRow = document.createElement('tr');
entryRow.classList.add("admin-list-entry");
entryRow.classList.add("gen-row");
entryRow.appendChild(this.newTableCell(cellContent[0], true));