jquery.seat-charts.css 987 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. div.seatCharts-container {
  2. /*min-width: 700px;*/
  3. }
  4. div.seatCharts-cell {
  5. height: 16px;
  6. width: 16px;
  7. margin: 3px;
  8. float: left;
  9. text-align: center;
  10. outline: none;
  11. font-size: 13px;
  12. line-height:16px;
  13. color: blue;
  14. }
  15. div.seatCharts-seat {
  16. background-color: green;
  17. color: white;
  18. -webkit-border-radius: 5px;
  19. -moz-border-radius: 5px;
  20. border-radius: 5px;
  21. cursor: default;
  22. }
  23. div.seatCharts-seat:focus {
  24. border: none;
  25. }
  26. /*
  27. .seatCharts-seat:focus {
  28. outline: none;
  29. }
  30. */
  31. div.seatCharts-space {
  32. background-color: white;
  33. }
  34. div.seatCharts-row {
  35. height: 50px;
  36. }
  37. div.seatCharts-row:after {
  38. clear: both;
  39. }
  40. div.seatCharts-seat.selected {
  41. background-color: aqua;
  42. }
  43. div.seatCharts-seat.focused {
  44. background-color: #6db131;
  45. }
  46. div.seatCharts-seat.available {
  47. background-color: green;
  48. }
  49. div.seatCharts-seat.unavailable {
  50. background-color: red;
  51. cursor: not-allowed;
  52. }
  53. ul.seatCharts-legendList {
  54. list-style: none;
  55. }
  56. li.seatCharts-legendItem {
  57. margin-top: 10px;
  58. line-height: 2;
  59. }