PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.8.1
GiveWP – Donation Plugin and Fundraising Platform v4.16.8.1
4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 All 254 releases
give / src / Views / Components / Table / style.module.scss

style.module.scss in GiveWP – Donation Plugin and Fundraising Platform 4.16.8.1, at src/Views/Components/Table/style.module.scss

87 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .title {
2 display: flex;
3 align-items: center;
4 justify-content: space-between;
5 font-weight: 600;
6 padding: 16px;
7 font-size: 15px;
8 }
9
10 .table {
11 display: flex;
12 flex-direction: column;
13
14 overflow-y: auto;
15 overflow-x: hidden;
16
17 > * {
18 display: flex;
19 height: auto;
20 font-size: 14px;
21 padding: 10px 16px;
22
23 > * {
24 flex: 1;
25 }
26 }
27 }
28
29 .header {
30 font-weight: 500;
31 position: sticky;
32 top: 0;
33 display: flex;
34 align-items: center;
35 border-bottom: 2px solid #eee;
36 padding: 20px;
37 }
38
39 .headerStripped {
40 background: #f4f4f4;
41 box-shadow: 0 0 8px #b8b8b8;
42 }
43
44 .row {
45 background: #fff;
46 padding: 20px;
47 border-bottom: 2px solid #eee;
48 }
49
50 .row:last-child {
51 border-bottom: 0;
52 border-bottom-left-radius: 5px;
53 border-bottom-right-radius: 5px;
54 }
55
56 .rowStripped {
57 &:nth-of-type(odd) {
58 background: #f4f4f4;
59 }
60 }
61
62 .label {
63 font-weight: 600;
64 }
65
66 .item {
67 display: flex;
68 color: #555;
69
70 a {
71 text-decoration: none;
72 }
73 }
74
75 .sortIconUndefined {
76 color: #b8b8b8;
77 }
78
79 .sortIcons {
80 cursor: pointer;
81 padding-left: 6px;
82 }
83
84 .noData {
85 padding: 20px;
86 }
87