PluginProbe
Yatra – Travel Booking & Tour Operator Software / trunk
Yatra – Travel Booking & Tour Operator Software vtrunk
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 2.0.11 All 82 releases
yatra / assets / css / yatra-capacity.css

yatra-capacity.css in Yatra – Travel Booking & Tour Operator Software trunk, at assets/css/yatra-capacity.css

55 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Capacity Display Styles */
2 .yatra-card-tour-meta {
3 display: flex;
4 align-items: center;
5 flex-wrap: wrap;
6 gap: 8px;
7 margin-top: 4px;
8 }
9
10 .yatra-card-tour-capacity {
11 display: inline-flex;
12 align-items: center;
13 font-size: 13px;
14 color: #4a5568;
15 background-color: #f7fafc;
16 padding: 2px 8px;
17 border-radius: 4px;
18 font-weight: 500;
19 }
20
21 .yatra-available-spots {
22 font-weight: 600;
23 color: #2d3748;
24 }
25
26 /* For limited availability */
27 .yatra-availability-card.limited .yatra-card-tour-capacity {
28 background-color: #fff5f5;
29 color: #c53030;
30 }
31
32 .yatra-availability-card.limited .yatra-available-spots {
33 color: #9b2c2c;
34 }
35
36 /* For full departures */
37 .yatra-availability-card.full .yatra-card-tour-capacity {
38 background-color: #f8f9fa;
39 color: #718096;
40 text-decoration: line-through;
41 }
42
43 /* Responsive adjustments */
44 @media (max-width: 768px) {
45 .yatra-card-tour-meta {
46 flex-direction: column;
47 align-items: flex-start;
48 gap: 4px;
49 }
50
51 .yatra-card-tour-separator {
52 display: none;
53 }
54 }
55