PluginProbe
WP Directory Kit / 1.3.1
WP Directory Kit v1.3.1
1.5.7 1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 All 36 releases
wpdirectorykit / elementor-elements / assets / css / widgets / wdk-listing-fields-section.scss

wdk-listing-fields-section.scss in WP Directory Kit 1.3.1, at elementor-elements/assets/css/widgets/wdk-listing-fields-section.scss

108 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wdk-element .wdk-listing-fields-section .wdk-row .wdk-col,
2 .wdk-element .wdk-listing-fields-section .wdk-row {
3 margin: 0;
4 }
5
6 .wdk-listing-fields-section {
7 .section-title {
8 margin: 0;
9 }
10
11 .wdk-row .wdk-col {
12 padding: 5px 0;
13 }
14
15 .wdk-row .wdk-col .field-group {
16 display: flex;
17 align-items: baseline !important;
18 }
19
20 .wdk-row .wdk-col .field_value {
21 padding-left: 3px;
22 word-break: break-all;
23 }
24
25 .wdk-row .wdk-col.reverse .field-group {
26 flex-direction: row-reverse;
27 justify-content: flex-end;
28 }
29
30 .wdk-row .wdk-col.column .field-group {
31 flex-direction: column;
32 justify-content: flex-end;
33 > * {
34 width: 100%;
35 }
36 }
37
38 .wdk-row .wdk-col.column-reverse .field-group {
39 flex-direction: column-reverse;
40 justify-content: stretch;
41 justify-content: flex-end;
42 > * {
43 width: 100%;
44 }
45 }
46
47 .wdk-row .wdk-col.reverse .field_value {
48 padding-right: 3px;
49 padding-left: 0;
50 }
51
52 .wdk-row .wdk-col.no_label .field_value {
53 width: 100%;
54 }
55
56 .wdk-col.CHECKBOX .field_value .value {
57 width: 19px;
58 display: inline-block;
59 }
60
61 .wdk-col .field_icon {
62 display: block;
63 }
64
65 .wdk-icon {
66 margin-right: 3px;
67 max-width: 18px;
68 max-height: 18px;
69 }
70
71 .wdk-col {
72 justify-content: flex-start;
73 align-items: center;
74 }
75
76 .wdk-col .field_icon {
77 order: 1;
78 }
79
80 .wdk-col .field_label {
81 order: 2;
82 }
83
84 .wdk-col .field_value {
85 order: 3;
86 }
87
88 .wdk-col.reverse .field_icon {
89 order: 3;
90 }
91
92 .wdk-col.reverse .field_label {
93 order: 2;
94 }
95
96 .wdk-col.reverse .field_value {
97 order: 1;
98 }
99
100 .wdk-col.CHECKBOX .field_value {
101 order: 1;
102 }
103
104 .wdk-col.reverse.CHECKBOX .field_value {
105 order: 3;
106 }
107
108 }