tablesorter/css/theme.global.css
2012-07-25 14:59:09 -05:00

88 lines
2.2 KiB
CSS

/*************
global css
*************/
.tablesorter {
font: 11px/18px Arial, Sans-serif;
margin: 10px 0 15px;
width: 100%;
text-align: left;
border-spacing: 0;
}
.tablesorter th,
.tablesorter thead td {
border-collapse: collapse;
font: 12px/18px Arial, Sans-serif;
padding: 4px;
}
.tablesorter-header {
cursor: pointer;
white-space: normal;
}
/* needed for Firefox */
.tablesorter .tablesorter-header-inner {
position: relative;
}
.tablesorter tbody td {
padding: 4px;
vertical-align: top;
}
/* table processing indicator */
.tablesorter-processing {
/* background-image: url(icons/loading.gif); */
background-image: url('data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=');
background-position: center center;
background-repeat: no-repeat;
/*
position: absolute;
z-index: 1000;
*/
}
/* optional disabled input styling */
.tablesorter-filter-row .disabled {
opacity: 0.5;
filter: alpha(opacity=50);
cursor: not-allowed;
}
/* filter widget */
.tablesorter-filter-row .tablesorter-filter {
width: 95%;
height: inherit;
margin: 0;
padding: 0;
background-color: #fff;
color: #333;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.tablesorter-filter-row td {
background: #eee;
}
.tablesorter-filter-row.hideme td {
margin: 0;
height: 0;
line-height: 0;
overflow: hidden;
-webkit-transition: height 0.2s ease;
-moz-transition: height 0.2s ease;
-o-transition: height 0.2s ease;
transition: height 0.2s ease;
}
.tablesorter-filter-row.hideme .tablesorter-filter {
height: 1px;
min-height: 0;
border: 0;
padding: 0;
margin: 0;
-webkit-transition: height 0.2s ease;
-moz-transition: height 0.2s ease;
-o-transition: height 0.2s ease;
transition: height 0.2s ease;
}