/* This file only to be used in storage/extlist.php as it overrides style.css
   and adds to extlistStyleAll.css */
   
 
/* JS script enabled: show column headers are clickable */
thead { 
cursor: pointer;
}

th:hover {
	background-color: #393;
	cursor: pointer;
}

/* Hide overflow by default, show on hover */
td {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	max-height: 1.2em;
	transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

/* Show full text on mouse hover - we handle Author in JS */
tr:hover > td {
    white-space: wrap;
    /*overflow-x: visible;*/
}
tr:hover {
	max-height: 10em;
}
