PluginProbe
WP Directory Kit / 1.3.3
WP Directory Kit v1.3.3
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-agent.scss

wdk-listing-agent.scss in WP Directory Kit 1.3.3, at elementor-elements/assets/css/widgets/wdk-listing-agent.scss

141 lines 3.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wdk-element .wdk-listing-agent {
2
3 & {
4 display: flex;
5 }
6
7 .agent-thumbnail {
8 flex: 0 0 90px;
9 min-width: 90px;
10 width: 90px;
11 }
12
13 .agent-thumbnail img {
14 max-width: 100%;
15 display: block;
16 }
17
18 .agent-cont {
19 flex: 1 2 auto;
20 padding: 0 0 0 10px;
21 }
22
23 .agent-cont > *,
24 .agent-cont{
25 display: block;
26 white-space: nowrap;
27 overflow: hidden;
28 text-overflow: ellipsis;
29 }
30
31 .agent-cont .meta-item:hover a,
32 .agent-cont .meta-item a,
33 .agent-cont .title:hover a,
34 .agent-cont .title a {
35 color: inherit;
36 }
37
38 .agent-cont .title {
39 color: rgb(22, 22, 22);
40 font-size: 16px;
41 font-weight: 600;
42 margin: 0;
43 padding-bottom: 15px;
44 }
45
46 .agent-cont .meta-item {
47 font-family: "Montserrat";
48 color: rgb(22, 22, 22);
49 font-size: 13px;
50 font-weight: 400;
51 margin: 0;
52 padding-bottom: 5px;
53 word-break: break-all;
54 }
55
56 .agent-cont .title.link:hover,
57 .agent-cont .meta-item:hover {
58 color: #0074E4;
59 }
60
61 .agent-cont .meta-item i {
62 margin-right: 7px;
63 font: normal normal normal 14px/1 FontAwesome;
64 }
65
66 .agent-cont .meta-item i.far {
67 font-family: 'Font Awesome 5 Free';
68 font-weight: 900;
69 }
70
71 &.vertical {
72 flex-direction: column;
73
74 .agent-thumbnail img {
75 display: block;
76 }
77
78 .agent-cont {
79 text-align: center;
80 }
81
82 }
83
84 &.vertical .agent-thumbnail {
85 flex: 0 0 100% !important;
86 min-width: 100% !important;
87 width: 100% !important;
88 text-align: center;
89
90 a {
91 display: inline-block;
92 }
93 }
94
95 &.vertical .agent-cont {
96 flex: 0 0 100% !important;
97 min-width: 100% !important;
98 width: 100% !important;
99 }
100
101 }
102
103 .wdk-element-listing-agent {
104 .wdk-row {
105 display: -webkit-flex;
106 display: -webkit-box;
107 display: -ms-flexbox;
108 display: flex;
109 -webkit-flex-wrap: wrap;
110 -ms-flex-wrap: wrap;
111 flex-wrap: wrap;
112 margin: 0 -15px;
113 margin-bottom: -15px;
114 }
115
116 .wdk-row .wdk-col {
117 margin-bottom: 15px;
118 -webkit-box-flex: 0;
119 -webkit-flex: 0 0 calc(100% / 1);
120 -ms-flex: 0 0 calc(100% / 1);
121 flex: 0 0 calc(100% / 1);
122 flex: 0 0 calc(100% / 1);
123 padding: 0 15px;
124 }
125
126 .wdk-row .wdk-col.wdk-col-full {
127 -webkit-flex: 0 0 100%;
128 -ms-flex: 0 0 100%;
129 flex: 0 0 100%;
130 flex: 0 0 100%;
131 width: 100%;
132 }
133
134 .wdk-row .wdk-col.wdk-col-full-always {
135 -webkit-flex: 0 0 100% !important;
136 -ms-flex: 0 0 100% !important;
137 flex: 0 0 100% !important;
138 flex: 0 0 100% !important;
139 width: 100% !important;
140 }
141 }