Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/libs/angularjs/angular-tablesort/tablesort.css @ 12557

Last change on this file since 12557 was 12557, checked in by dglaser, 9 years ago

#2394:

HeuristicLab.Services.WebApp-3.3:

  • added angular-tablesort library
  • added sorting functionality to plugins page

HeuristicLab.Services.WebApp.Status-3.3:

  • changed sorting
File size: 1.1 KB
Line 
1th.tablesort-sortable {
2    -webkit-user-select: none;
3    -khtml-user-select: none;
4    -moz-user-select: none;
5    -o-user-select: none;
6    user-select: none;
7    cursor: pointer;
8}
9
10table .tablesort-sortable:after{
11    content:"";
12    float:right;
13    margin-top:7px;
14    visibility:hidden;
15    border-left:4px solid transparent;
16    border-right:4px solid transparent;
17
18    border-top:none;
19    border-bottom:4px solid #000;
20}
21
22table .tablesort-desc:after{
23    border-top:4px solid #000;
24    border-bottom:none;
25}
26
27table .tablesort-asc,table .tablesort-desc {
28    background-color: transparent;
29}
30
31table .tablesort-sortable:hover:after, table .tablesort-asc:after, table .tablesort-desc:after {
32    visibility:visible;
33}
34
35/*
36 * Styling for the table row shown in empty tables
37 */
38
39/* The row is always added as the first row in a table
40   Hide it by default */
41.showIfLast {
42    display: none;
43}
44
45/* Only show it if it is also the last row of the table. */
46.showIfLast:last-child {
47    display: table-row;
48}
49
50.showIfLast td {
51    text-align: center;
52}
53
54.showIfLast td:after {
55    content: "No data";
56}
Note: See TracBrowser for help on using the repository browser.