remove depreciated files

This commit is contained in:
Derek Macias 2016-01-16 15:38:49 -07:00
parent 616bcccc9b
commit 39fe3f9326
3 changed files with 0 additions and 192 deletions

View File

@ -1,26 +0,0 @@
/* header */
.tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc {
background-color:#101010;
}
.tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc {
background-color:#101010;
}
/* filter widget */
.tablesorter .tablesorter-filter-row {
background-color: #101010;
}
.tablesorter .tablesorter-filter-row td {
background-color: #101010;
border-bottom: #000000 1px solid;
}
/* filters */
.tablesorter input.tablesorter-filter,
.tablesorter select.tablesorter-filter {
background-color: #000000;
border: 1px solid #101010;
color: #808080;
}

View File

@ -1,26 +0,0 @@
/* header */
.tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc {
background-color:#E0E0E0;
}
.tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc {
background-color:#E0E0E0;
}
/* filter widget */
.tablesorter .tablesorter-filter-row {
background-color: #E0E0E0;
}
.tablesorter .tablesorter-filter-row td {
background-color: #E0E0E0;
border-bottom: #FFFFFF 1px solid;
}
/* filters */
.tablesorter input.tablesorter-filter,
.tablesorter select.tablesorter-filter {
background-color: #FFFFFF;
border: 1px solid #E0E0E0;
}

View File

@ -1,140 +0,0 @@
/* header */
.reset {
cursor: pointer;
}
.tablesorter {
font-family:arimo;
margin:0 0 15px 0;
}
.tablesorter .header,
.tablesorter .tablesorter-header {
background-position: center right;
background-repeat: no-repeat;
cursor: pointer;
outline: none;
}
.tablesorter .headerSortUp,
.tablesorter .tablesorter-headerSortUp,
.tablesorter .tablesorter-headerAsc {
background-image: url(/webGui/images/sort-asc.png);
}
.tablesorter .headerSortDown,
.tablesorter .tablesorter-headerSortDown,
.tablesorter .tablesorter-headerDesc {
background-image: url(/webGui/images/sort-desc.png);
}
/* tbody */
.tablesorter td {
padding:4px 20px 4px 6px;
vertical-align:middle;
text-align:justify;
}
tablesorter tbody tr.tr_last td{
padding:8px 20px 8px 6px;
}
/* pager wrapper, div */
.tablesorter-pager {
padding: 5px;
}
/* pager wrapper, in thead/tfoot */
td.tablesorter-pager {
background-color: #e6eeee;
margin: 0; /* needed for bootstrap .pager gets a 18px bottom margin */
}
/* pager navigation arrows */
.tablesorter-pager img {
vertical-align: middle;
margin-right: 2px;
cursor: pointer;
}
/* pager output text */
.tablesorter-pager .pagedisplay {
padding: 0 5px 0 5px;
width: 50px;
text-align: center;
}
.tablesorter-pager select {
margin: 0;
padding: 0;
min-width: 40px;
max-width: 40px;
}
/*** css used when "updateArrows" option is true ***/
/* the pager itself gets a disabled class when the number of rows is less than the size */
.tablesorter-pager.disabled {
display: none;
}
/* hide or fade out pager arrows when the first or last row is visible */
.tablesorter-pager .disabled {
/* visibility: hidden */
opacity: 0.5;
filter: alpha(opacity=50);
cursor: default;
}
/* filter widget */
.tablesorter .tablesorter-filter-row td {
line-height: normal;
text-align: center; /* center the input */
-webkit-transition: line-height 0.1s ease;
-moz-transition: line-height 0.1s ease;
-o-transition: line-height 0.1s ease;
transition: line-height 0.1s ease;
}
/* optional disabled input styling */
.tablesorter .tablesorter-filter-row .disabled {
opacity: 0.5;
filter: alpha(opacity=50);
cursor: not-allowed;
}
/* filters */
.tablesorter input.tablesorter-filter,
.tablesorter select.tablesorter-filter {
width: 95%;
height: auto;
margin: 1px auto;
padding: 1px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: height 0.1s ease;
-moz-transition: height 0.1s ease;
-o-transition: height 0.1s ease;
transition: height 0.1s ease;
}
/* rows hidden by filtering (needed for child rows) */
.tablesorter .filtered {
display: none;
}
/* HOVER ROW highlight colors */
table.hover-highlight tbody > tr:hover > td, /* override tablesorter theme row hover */
table.hover-highlight tbody > tr.odd:hover > td,
table.hover-highlight tbody > tr.even:hover > td {
background-color: #9FC2E6;
color: #000000;
}
/* ************************************************* */
/* **** No need to modify the definitions below **** */
/* ************************************************* */
.hover-highlight td:hover::after, .hover-highlight th:hover::after {
content: '';
position: absolute;
width: 100%;
height: 999em;
left: 0;
top: -555em;
z-index: -1;
}
/* required styles */
.hover-highlight {
overflow: hidden;
}
.hover-highlight td, .hover-highlight th {
position: relative;
outline: 0;
}