ICON Community Interface 0.4.0
Loading...
Searching...
No Matches
applist_styles.css
Go to the documentation of this file.
1.styled-table {
2 border-collapse: collapse;
3 margin: 25px 0;
4 font-size: 0.9em;
5 font-family: sans-serif;
6 min-width: 400px;
7 box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
8}
9
10.styled-table tr:first-child td,
11.styled-table tr:first-child th {
12 text-align: left;
13}
14
15.styled-table th,
16.styled-table td {
17 padding: 12px 15px;
18}
19
20.styled-table tbody tr {
21 border-bottom: 1px solid #dddddd;
22}
23
24.styled-table tbody tr:nth-of-type(even) {
25 background-color: #f3f3f3;
26}
27
28.styled-table tbody tr:last-of-type {
29 border-bottom: 2px solid #009879;
30}
31
32.styled-table tbody tr:hover {
33 background-color: #f1f1f1; /* Highlight on hover */
34}
35
36.styled-table tbody tr.active-row {
37 font-weight: bold;
38 color: #009879; /* Different color for active row */
39}
40
41.styled-table th {
42 cursor: pointer;
43 position: relative;
44}
45
46.styled-table th::after {
47 content: "▾";
48 position: absolute;
49 right: 8px;
50 color: #999;
51}
52
53.styled-table th.sorted-asc::after {
54 content: "▴";
55}
56
57.styled-table th.sorted-desc::after {
58 content: "▾";
59}
60
61.styled-link::after {
62 content: attr(href);
63}