PluginProbe
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits / 3.1.2
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits v3.1.2
3.2.2 3.2.3 3.2.1 3.2.0 3.1.9 3.1.8 3.1.7 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.9 trunk 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.3 1.1.4 1.1.5 All 174 releases
master-addons / assets / css / addons / ma-table.css

ma-table.css in Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits 3.1.2, at assets/css/addons/ma-table.css

57 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* MA Table */
2 .jltma-table th {
3 color: #fff;
4 font-weight: bold;
5 }
6
7 .jltma-table td,
8 .jltma-table th {
9 padding: 10px;
10 border: 1px solid #ccc;
11 font-size: 18px;
12 }
13
14 table tbody > tr:nth-child(odd) > td,
15 table tbody > tr:nth-child(odd) > th {
16 background-color: transparent;
17 }
18
19 @media only screen and (max-device-width: 768px) {
20 .jltma-table:not(.not-responsive) {
21 width: 100%;
22 }
23 .jltma-table:not(.not-responsive),
24 .jltma-table:not(.not-responsive) thead,
25 .jltma-table:not(.not-responsive) tbody,
26 .jltma-table:not(.not-responsive) th,
27 .jltma-table:not(.not-responsive) td,
28 .jltma-table:not(.not-responsive) tr {
29 display: block;
30 }
31 .jltma-table:not(.not-responsive) thead tr {
32 position: absolute;
33 top: -9999px;
34 left: -9999px;
35 }
36 .jltma-table:not(.not-responsive) tr {
37 border: 1px solid #ccc;
38 }
39 .jltma-table:not(.not-responsive) td {
40 border: none;
41 border-bottom: 1px solid #eee;
42 position: relative;
43 padding-left: 50%;
44 }
45 .jltma-table:not(.not-responsive) td:before {
46 position: absolute;
47 top: 6px;
48 left: 6px;
49 width: 45%;
50 padding-right: 10px;
51 white-space: nowrap;
52 content: attr(data-column);
53 color: #000;
54 font-weight: bold;
55 }
56 }
57 /* MA Table */