-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathjquery.seat-charts.css
75 lines (65 loc) · 1.05 KB
/
jquery.seat-charts.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*!
* bus-seat-boking-js
* https://github.com/habib45/bus-seat-boking-js.git
*
*
*/
div.seatCharts-container {
/*min-width: 700px;*/
}
div.seatCharts-cell {
height: 16px;
width: 16px;
margin: 3px;
float: left;
text-align: center;
outline: none;
font-size: 13px;
line-height:16px;
color: blue;
}
div.seatCharts-seat {
background-color: green;
color: white;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
cursor: default;
}
div.seatCharts-seat:focus {
border: none;
}
/*
.seatCharts-seat:focus {
outline: none;
}
*/
div.seatCharts-space {
background-color: white;
}
div.seatCharts-row {
height: 50px;
}
div.seatCharts-row:after {
clear: both;
}
div.seatCharts-seat.selected {
background-color: aqua;
}
div.seatCharts-seat.focused {
background-color: #6db131;
}
div.seatCharts-seat.available {
background-color: green;
}
div.seatCharts-seat.unavailable {
background-color: red;
cursor: not-allowed;
}
ul.seatCharts-legendList {
list-style: none;
}
li.seatCharts-legendItem {
margin-top: 10px;
line-height: 2;
}