12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .sort-table {
- font: Icon;
- border: 1px Solid ThreeDShadow;
- background: Window;
- color: WindowText;
- }
- .sort-table thead {
- background: ButtonFace;
- }
- .sort-table td {
- padding: 2px 5px;
- }
- .sort-table thead td {
- border: 1px solid;
- border-color: ButtonHighlight ButtonShadow
- ButtonShadow ButtonHighlight;
- cursor: default;
- }
- .sort-table thead td:active {
- border-color: ButtonShadow ButtonHighlight
- ButtonHighlight ButtonShadow;
- padding: 3px 4px 1px 6px;
- }
- .sort-arrowblank {
- width: 1px;
- height: 1px;
- background-position: center center;
- background-repeat: no-repeat;
- margin: 0 1px;
- }
- .sort-arrow {
- width: 11px;
- height: 11px;
- background-position: center center;
- background-repeat: no-repeat;
- margin: 0 2px;
- }
- .sort-arrow.descending {
- background-image: url("/GDZJ/images/button/downsimple.png");
- }
- .sort-arrow.ascending {
- background-image: url("/GDZJ/images/button/upsimple.png");
- }
|