Finished up cleaning css.
This commit is contained in:
parent
b13e2bde24
commit
ff69762a1f
15 changed files with 87 additions and 98 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue