mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
176 lines
5.0 KiB
CSS
176 lines
5.0 KiB
CSS
/*************
|
|
Dropbox Theme
|
|
*************/
|
|
/* overall */
|
|
.tablesorter-dropbox {
|
|
width: 100%;
|
|
font: 13px/32px "Open Sans","lucida grande","Segoe UI",arial,verdana,"lucida sans unicode",tahoma,sans-serif;
|
|
color: #555;
|
|
text-align: left;
|
|
background-color: #fff;
|
|
border-collapse: collapse;
|
|
border-top: 1px solid #82cffa;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
/* header */
|
|
.tablesorter-dropbox th,
|
|
.tablesorter-dropbox thead td,
|
|
.tablesorter-dropbox tfoot th,
|
|
.tablesorter-dropbox tfoot td {
|
|
background-color: #f0f9ff;
|
|
border-color: #82cffa #e7f2fb #96c4ea;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
height: 29px;
|
|
padding: 3px 6px;
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
line-height: 29px;
|
|
color: #2281CF;
|
|
text-align: left;
|
|
}
|
|
.tablesorter-dropbox tr.header,
|
|
.tablesorter-dropbox tr.tablesorter-header {
|
|
background-color: #f0f9ff;
|
|
border-bottom: 1px solid #96c4ea;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 0 0 #000000 inset;
|
|
cursor: pointer;
|
|
white-space: normal;
|
|
}
|
|
.tablesorter-dropbox th.tablesorter-headerSortUp,
|
|
.tablesorter-dropbox th.tablesorter-headerSortDown {
|
|
font-weight: 600;
|
|
}
|
|
.tablesorter-dropbox th.tablesorter-header i {
|
|
width: 9px;
|
|
height: 9px;
|
|
padding: 4px 20px 4px 4px;
|
|
cursor: pointer;
|
|
background-position: center right;
|
|
background-repeat: no-repeat;
|
|
content: "";
|
|
}
|
|
.tablesorter-dropbox th.tablesorter-headerSortUp i {
|
|
background-image: url(images/dropbox-asc1.png);
|
|
}
|
|
.tablesorter-dropbox th.tablesorter-headerSortUp i {
|
|
background-image: url(images/dropbox-asc2.png);
|
|
}
|
|
.tablesorter-dropbox th.tablesorter-headerSortDown i {
|
|
background-image: url(images/dropbox-desc1.png);
|
|
}
|
|
.tablesorter-dropbox th.tablesorter-headerSortDown i {
|
|
background-image: url(images/dropbox-desc2.png);
|
|
}
|
|
|
|
/* tbody */
|
|
.tablesorter-dropbox td {
|
|
padding: 5px 6px;
|
|
line-height: 32px;
|
|
color: #555;
|
|
text-align: left;
|
|
border-top: 1px solid #edf1f5;
|
|
border-bottom: 1px solid #edf1f5;
|
|
}
|
|
|
|
/* hovered row colors */
|
|
.tablesorter-dropbox tbody > tr:hover > td,
|
|
.tablesorter-dropbox tbody > tr.even:hover > td,
|
|
.tablesorter-dropbox tbody > tr.odd:hover > td {
|
|
background-color: rgba(230, 245, 255, 0.3);
|
|
border-right: 0;
|
|
border-left: 0;
|
|
border-color: #c6d8e4;
|
|
/* trick to do border-top and bottom colors */
|
|
border-style: double;
|
|
}
|
|
|
|
/* table processing indicator */
|
|
.tablesorter-dropbox .tablesorter-processing {
|
|
background-position: center center !important;
|
|
background-repeat: no-repeat !important;
|
|
/* background-image: url(../addons/pager/icons/loading.gif) !important; */
|
|
background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=') !important;
|
|
}
|
|
|
|
/* Zebra Widget - row alternating colors */
|
|
.tablesorter-dropbox tr.odd td {
|
|
}
|
|
.tablesorter-dropbox tr.even td {
|
|
}
|
|
|
|
/* Column Widget - column sort colors */
|
|
.tablesorter-dropbox td.primary,
|
|
.tablesorter-dropbox tr.odd td.primary {
|
|
}
|
|
.tablesorter-dropbox tr.even td.primary {
|
|
}
|
|
.tablesorter-dropbox td.secondary,
|
|
.tablesorter-dropbox tr.odd td.secondary {
|
|
}
|
|
.tablesorter-dropbox tr.even td.secondary {
|
|
}
|
|
.tablesorter-dropbox td.tertiary,
|
|
.tablesorter-dropbox tr.odd td.tertiary {
|
|
}
|
|
.tablesorter-dropbox tr.even td.tertiary {
|
|
}
|
|
|
|
/* Filter Widget */
|
|
.tablesorter-dropbox.tablesorter-filter-row td {
|
|
background: #eee;
|
|
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-dropbox.tablesorter-filter-row .disabled {
|
|
opacity: 0.5;
|
|
filter: alpha(opacity=50);
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
/* hidden filter row */
|
|
.tablesorter-dropbox.tablesorter-filter-row.hideme td {
|
|
/*** *********************************************** ***/
|
|
/*** change this padding to modify the thickness ***/
|
|
/*** of the closed filter row (height = padding x 2) ***/
|
|
padding: 2px;
|
|
/*** *********************************************** ***/
|
|
margin: 0;
|
|
line-height: 0;
|
|
cursor: pointer;
|
|
}
|
|
.tablesorter-dropbox.tablesorter-filter-row.hideme .tablesorter-filter {
|
|
height: 1px;
|
|
min-height: 0;
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
/* don't use visibility: hidden because it disables tabbing */
|
|
opacity: 0;
|
|
filter: alpha(opacity=0);
|
|
}
|
|
|
|
/* filters */
|
|
.tablesorter-dropbox.tablesorter-filter {
|
|
width: 98%;
|
|
height: inherit;
|
|
margin: 4px;
|
|
padding: 4px;
|
|
background-color: #fff;
|
|
border: 1px solid #bbb;
|
|
color: #333;
|
|
-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;
|
|
}
|