New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
sortabletable.css in trunk/NEMOGCM/TRUST/web/html – NEMO

source: trunk/NEMOGCM/TRUST/web/html/sortabletable.css @ 5936

Last change on this file since 5936 was 5936, checked in by nicolasmartin, 8 years ago

Merge dev_r5092_CNRS18_TRUST onto the trunk: add new tool Trusting (ie TRUST directory at root of NEMGOCM) for continuous integration tests on HPC centers & basic validation tests for developers

  • Property svn:executable set to *
File size: 925 bytes
Line 
1.sort-table {
2   font:    Icon;
3   border:     1px Solid ThreeDShadow;
4   background: Window;
5   color:      WindowText;
6}
7
8.sort-table thead {
9   background: ButtonFace;
10}
11
12.sort-table td {
13   padding: 2px 5px;
14}
15
16.sort-table thead td {
17   border:        1px solid;
18   border-color:  ButtonHighlight ButtonShadow
19               ButtonShadow ButtonHighlight;
20   cursor:        default;
21}
22
23.sort-table thead td:active {
24   border-color:  ButtonShadow ButtonHighlight
25               ButtonHighlight ButtonShadow;
26   padding:    3px 4px 1px 6px;
27}
28
29.sort-table thead td[_sortType=None]:active {
30   border-color:  ButtonHighlight ButtonShadow
31               ButtonShadow ButtonHighlight;
32   padding:    2px 5px;
33}
34
35.sort-arrow {
36   width:               11px;
37   height:              11px;
38   background-position: center center;
39   background-repeat:      no-repeat;
40   margin:              0 2px;
41}
42
43.sort-arrow.descending {
44   background-image:    url("images/downsimple.png");
45
46}
47
48.sort-arrow.ascending {
49   background-image:    url("images/upsimple.png");
50}
Note: See TracBrowser for help on using the repository browser.