PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.2.8
Yatra – Travel Booking & Tour Operator Software v3.0.2.8
3.0.15 3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 All 83 releases
yatra / assets / css / shortcodes / trip-shortcode.css

trip-shortcode.css in Yatra – Travel Booking & Tour Operator Software 3.0.2.8, at assets/css/shortcodes/trip-shortcode.css

214 lines 4.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Trip Shortcode Styles */
2 .yatra-tour-shortcode {
3 margin: 30px 0;
4 position: relative;
5 }
6
7 .yatra-tour-shortcode.yatra-loading::before {
8 content: '';
9 position: absolute;
10 top: 0;
11 left: 0;
12 right: 0;
13 bottom: 0;
14 background: rgba(255, 255, 255, 0.8);
15 z-index: 10;
16 }
17
18 .yatra-tour-shortcode.yatra-loading::after {
19 content: '';
20 position: absolute;
21 top: 50%;
22 left: 50%;
23 width: 30px;
24 height: 30px;
25 margin: -15px 0 0 -15px;
26 border: 3px solid #f3f3f3;
27 border-top: 3px solid #0073aa;
28 border-radius: 50%;
29 animation: yatra-spin 1s linear infinite;
30 z-index: 11;
31 }
32
33 @keyframes yatra-spin {
34 0% { transform: rotate(0deg); }
35 100% { transform: rotate(360deg); }
36 }
37
38 .yatra-tour-header {
39 display: flex;
40 justify-content: space-between;
41 align-items: center;
42 margin-bottom: 30px;
43 padding-bottom: 15px;
44 border-bottom: 1px solid #e5e7eb;
45 }
46
47 .yatra-tour-title {
48 margin: 0;
49 color: #1f2937;
50 font-size: 1.875rem;
51 font-weight: 600;
52 }
53
54 .yatra-tour-count {
55 color: #6b7280;
56 font-size: 0.875rem;
57 }
58
59 /* Scoped to shortcode/block so listing.css archive grids never override column counts */
60 .yatra-tour-shortcode .yatra-tour-grid {
61 display: grid;
62 gap: 30px;
63 }
64
65 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-1 {
66 grid-template-columns: 1fr;
67 }
68
69 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-2 {
70 grid-template-columns: repeat(2, 1fr);
71 }
72
73 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-3 {
74 grid-template-columns: repeat(3, 1fr);
75 }
76
77 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-4 {
78 grid-template-columns: repeat(4, 1fr);
79 }
80
81 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-5 {
82 grid-template-columns: repeat(5, 1fr);
83 }
84
85 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-6 {
86 grid-template-columns: repeat(6, 1fr);
87 }
88
89 .yatra-tour-empty {
90 text-align: center;
91 padding: 60px 20px;
92 color: #6b7280;
93 }
94
95 .yatra-empty-icon {
96 margin-bottom: 20px;
97 opacity: 0.5;
98 }
99
100 .yatra-empty-icon-svg {
101 width: 64px;
102 height: 64px;
103 }
104
105 .yatra-tour-empty h3 {
106 margin: 0 0 10px 0;
107 color: #374151;
108 font-size: 1.5rem;
109 font-weight: 600;
110 }
111
112 .yatra-tour-empty p {
113 margin: 0 0 20px 0;
114 font-size: 1rem;
115 line-height: 1.6;
116 }
117
118 .yatra-tour-empty-page {
119 text-align: center;
120 padding: 40px 20px;
121 color: #6b7280;
122 }
123
124 .yatra-tour-pagination {
125 display: flex;
126 justify-content: center;
127 align-items: center;
128 gap: 10px;
129 margin-top: 30px;
130 flex-wrap: wrap;
131 }
132
133 .yatra-pagination-link {
134 display: inline-flex;
135 align-items: center;
136 justify-content: center;
137 min-width: 40px;
138 height: 40px;
139 padding: 0 12px;
140 border: 1px solid #d1d5db;
141 border-radius: 6px;
142 background: #ffffff;
143 color: #374151;
144 text-decoration: none;
145 font-size: 0.875rem;
146 font-weight: 500;
147 transition: all 0.2s ease;
148 }
149
150 .yatra-pagination-link:hover {
151 background: #f9fafb;
152 border-color: #9ca3af;
153 color: #111827;
154 }
155
156 .yatra-pagination-current {
157 background: #0073aa;
158 border-color: #0073aa;
159 color: #ffffff;
160 font-weight: 600;
161 transform: scale(1.05);
162 box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
163 }
164
165 .yatra-pagination-current:hover {
166 background: #005a87;
167 border-color: #005a87;
168 transform: scale(1.05);
169 box-shadow: 0 2px 8px rgba(0, 90, 135, 0.4);
170 }
171
172 .yatra-pagination-ellipsis {
173 color: #9ca3af;
174 padding: 0 8px;
175 font-size: 0.875rem;
176 }
177
178 /* Responsive Design */
179 @media (max-width: 768px) {
180 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-3,
181 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-4,
182 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-5,
183 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-6 {
184 grid-template-columns: repeat(2, 1fr);
185 }
186
187 .yatra-tour-header {
188 flex-direction: column;
189 gap: 15px;
190 text-align: center;
191 }
192 }
193
194 @media (max-width: 480px) {
195 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-2,
196 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-3,
197 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-4,
198 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-5,
199 .yatra-tour-shortcode .yatra-tour-grid.yatra-tour-grid-6 {
200 grid-template-columns: 1fr;
201 }
202
203 .yatra-tour-pagination {
204 gap: 5px;
205 }
206
207 .yatra-pagination-link {
208 min-width: 36px;
209 height: 36px;
210 font-size: 0.8rem;
211 padding: 0 8px;
212 }
213 }
214