1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00
SickRage/gui/slick/css/lib/tablesorter.css
echel0n 0d9fbc1ad7 Welcome to our SickBeard-TVRage Edition ...
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer.

Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer.

Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk!

Enjoy!
2014-03-09 22:39:12 -07:00

101 lines
3.5 KiB
CSS

/* Variables *//* Mixins */
/* SB Theme */
table.tablesorter {
width: 100%;
margin-left: auto;
margin-right: auto;
text-align: left;
color: #000;
background-color: #fff;
border-spacing: 0;
}
table.tablesorter td {
font-size: 14px;
padding: 8px 10px;
}
/* remove extra border from left edge */
table.tablesorter th:first-child,
table.tablesorter td:first-child {
border-left: none;
}
table.tablesorter th {
border-collapse: collapse;
background-image: -moz-linear-gradient(#555555, #333333) !important;
background-image: linear-gradient(#555555, #333333) !important;
background-image: -webkit-linear-gradient(#555555, #333333) !important;
background-image: -o-linear-gradient(#555555, #333333) !important;
filter: progid:dximagetransform.microsoft.gradient(startColorstr=#555555, endColorstr=#333333) !important;
-ms-filter: progid:dximagetransform.microsoft.gradient(startColorstr=#555555, endColorstr=#333333) !important;
color: #fff;
}
table.tablesorter .tablesorter-header {
/* background-image: url(../images/tablesorter/bg.gif); */
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter .tablesorter-header-inner {
padding: 0px 15px 0px 4px;
}
table.tablesorter th.tablesorter-headerSortUp .tablesorter-header-inner {
background: url(../lib/images/tablesorter/asc.gif) no-repeat right center;
}
table.tablesorter th.tablesorter-headerSortDown .tablesorter-header-inner {
background: url(../lib/images/tablesorter/desc.gif) no-repeat right center;
}
table.tablesorter th.tablesorter-headerSortUp {
background-image: -moz-linear-gradient(#777777, #555555) !important;
background-image: linear-gradient(#777777, #555555) !important;
background-image: -webkit-linear-gradient(#777777, #555555) !important;
background-image: -o-linear-gradient(#777777, #555555) !important;
filter: progid:dximagetransform.microsoft.gradient(startColorstr=#555555, endColorstr=#333333) !important;
-ms-filter: progid:dximagetransform.microsoft.gradient(startColorstr=#555555, endColorstr=#333333) !important;
color: #FFFFFF;
/* background-image: url(../images/tablesorter/asc.gif); */
}
table.tablesorter th.tablesorter-headerSortDown {
background-image: -moz-linear-gradient(#777777, #555555) !important;
background-image: linear-gradient(#777777, #555555) !important;
background-image: -webkit-linear-gradient(#777777, #555555) !important;
background-image: -o-linear-gradient(#777777, #555555) !important;
filter: progid:dximagetransform.microsoft.gradient(startColorstr=#555555, endColorstr=#333333) !important;
-ms-filter: progid:dximagetransform.microsoft.gradient(startColorstr=#555555, endColorstr=#333333) !important;
color: #FFFFFF;
/* background-image: url(../images/tablesorter/desc.gif); */
}
/* Zebra Widget - row alternating colors */
table.tablesorter tr.odd td {
background-color: #F5F1E4;
}
table.tablesorter tr.even td {
background-color: #fbf9f3;
}
/* filter widget */
table.tablesorter input.tablesorter-filter {
width: 98%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
table.tablesorter tr.tablesorter-filter,
table.tablesorter tr.tablesorter-filter td {
text-align: center;
background: #eee;
}
/* optional disabled input styling */table.tablesorter input.tablesorter-filter.disabled {
display: none;
}
/* xtra css for sb */
.tablesorter-header-inner {
text-align: center;
white-space: nowrap;
padding: 0 2px;
}
tr.tablesorter-stickyHeader {
background-color: #fff;
padding: 2px 0;
}