artfully_ose 1.3.0.pre3 → 1.3.0.pre4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/loading-white.gif +0 -0
  3. data/app/assets/images/seating_temp/1.jpg +0 -0
  4. data/app/assets/images/seating_temp/10.jpg +0 -0
  5. data/app/assets/images/seating_temp/11.jpg +0 -0
  6. data/app/assets/images/seating_temp/2.jpg +0 -0
  7. data/app/assets/images/seating_temp/3.jpg +0 -0
  8. data/app/assets/images/seating_temp/4.jpg +0 -0
  9. data/app/assets/images/seating_temp/5.jpg +0 -0
  10. data/app/assets/images/seating_temp/6.jpg +0 -0
  11. data/app/assets/images/seating_temp/7.jpg +0 -0
  12. data/app/assets/images/seating_temp/8.jpg +0 -0
  13. data/app/assets/images/seating_temp/9.jpg +0 -0
  14. data/app/assets/images/seating_temp/icon_43405.png +0 -0
  15. data/app/assets/images/seating_temp/icon_43405.svg +3 -0
  16. data/app/assets/images/seating_temp/icon_43405_plus.png +0 -0
  17. data/app/assets/images/seating_temp/license.txt +8 -0
  18. data/app/assets/javascripts/application.js +1 -0
  19. data/app/assets/javascripts/custom/cookies.js +27 -0
  20. data/app/assets/javascripts/custom/inline-people-search.js +4 -0
  21. data/app/assets/javascripts/custom/job-monitor.js +0 -1
  22. data/app/assets/javascripts/exchange-seat-chart.js +5 -0
  23. data/app/assets/javascripts/seat-chart.js +606 -0
  24. data/app/assets/javascripts/show-seat-chart.js +17 -0
  25. data/app/assets/javascripts/store/store-seat-chart.js +76 -0
  26. data/app/assets/javascripts/store/store.js +14 -39
  27. data/app/assets/stylesheets/application.sass +49 -1
  28. data/app/assets/stylesheets/bootstrap-overrides.css +11 -3
  29. data/app/assets/stylesheets/sass/seat-chart.sass +311 -0
  30. data/app/assets/stylesheets/sass/store.sass +73 -19
  31. data/app/assets/stylesheets/storefront.css +2 -0
  32. data/app/concerns/pdf_generation.rb +1 -15
  33. data/app/controllers/advanced_searches_controller.rb +1 -3
  34. data/app/controllers/charts_controller.rb +14 -12
  35. data/app/controllers/console_sales_controller.rb +55 -0
  36. data/app/controllers/event_calendars_controller.rb +15 -0
  37. data/app/controllers/events_controller.rb +16 -5
  38. data/app/controllers/exchanges_controller.rb +32 -9
  39. data/app/controllers/export_controller.rb +8 -0
  40. data/app/controllers/members/sessions_controller.rb +0 -2
  41. data/app/controllers/membership_comps_controller.rb +2 -1
  42. data/app/controllers/prices_controller.rb +20 -0
  43. data/app/controllers/shows_controller.rb +3 -1
  44. data/app/controllers/store/events_controller.rb +6 -5
  45. data/app/controllers/store/orders_controller.rb +11 -13
  46. data/app/controllers/store/shows_controller.rb +1 -0
  47. data/app/controllers/store/store_controller.rb +11 -0
  48. data/app/controllers/tickets_controller.rb +0 -28
  49. data/app/controllers/user_memberships_controller.rb +7 -2
  50. data/app/controllers/venues_controller.rb +9 -0
  51. data/app/helpers/artfully_ose_helper.rb +18 -4
  52. data/app/helpers/seating_helper.rb +157 -0
  53. data/app/models/assigned_chart.rb +220 -0
  54. data/app/models/cart.rb +6 -1
  55. data/app/models/chart.rb +28 -17
  56. data/app/models/database_views/item_view.rb +76 -5
  57. data/app/models/discount.rb +4 -0
  58. data/app/models/discounts/buy_one_get_one_free_discount_type.rb +1 -1
  59. data/app/models/discounts/dollars_off_tickets_discount_type.rb +5 -1
  60. data/app/models/discounts/percentage_off_tickets_discount_type.rb +8 -4
  61. data/app/models/event.rb +86 -12
  62. data/app/models/general_admission_chart.rb +51 -0
  63. data/app/models/imports/events_import.rb +1 -1
  64. data/app/models/job/show_creator.rb +3 -10
  65. data/app/models/kit.rb +11 -1
  66. data/app/models/kits/assigned_seating_kit.rb +23 -0
  67. data/app/models/member_walkup.rb +1 -1
  68. data/app/models/order_handler.rb +22 -6
  69. data/app/models/organization.rb +4 -5
  70. data/app/models/person.rb +3 -1
  71. data/app/models/sale.rb +1 -1
  72. data/app/models/seat.rb +96 -0
  73. data/app/models/section.rb +1 -3
  74. data/app/models/show.rb +10 -17
  75. data/app/models/ticket.rb +30 -6
  76. data/app/models/ticket/locker.rb +3 -2
  77. data/app/models/ticket_type.rb +12 -6
  78. data/app/models/ticket_types_seat.rb +4 -0
  79. data/app/models/venue.rb +23 -0
  80. data/app/views/advanced_searches/filters/_birthday.html.haml +1 -0
  81. data/app/views/assigned_charts/_show.html.haml +12 -0
  82. data/app/views/console_sales/_aloha.html.haml +5 -4
  83. data/app/views/console_sales/new.html.haml +9 -0
  84. data/app/views/event_calendars/index.html.haml +34 -0
  85. data/app/views/events/_menu.html.haml +2 -1
  86. data/app/views/events/_section_fields.html.haml +13 -8
  87. data/app/views/events/new.html.haml +34 -4
  88. data/app/views/events/prices.html.haml +3 -4
  89. data/app/views/events/seating.html.haml +131 -0
  90. data/app/views/exchanges/_assigned_chart.html.haml +108 -0
  91. data/app/views/exchanges/_general_admission_chart.html.haml +55 -0
  92. data/app/views/exchanges/new.html.haml +1 -55
  93. data/app/views/general_admission_charts/_show.html.haml +2 -0
  94. data/app/views/layouts/_menu.html.haml +44 -31
  95. data/app/views/layouts/storefront.html.haml +72 -30
  96. data/app/views/membership_comps/new.html.haml +1 -0
  97. data/app/views/order_mailer/confirmation_for.html.haml +5 -3
  98. data/app/views/order_mailer/confirmation_for.text.haml +1 -2
  99. data/app/views/pdfs/order.html.haml +20 -6
  100. data/app/views/seating/_actions_menu.html.haml +10 -0
  101. data/app/views/seating/_chart.html.haml +15 -0
  102. data/app/views/seating/_chart_container.html.haml +2 -0
  103. data/app/views/seating/_chart_note_display.html.haml +7 -0
  104. data/app/views/seating/_hold_seats_modal.html.haml +39 -0
  105. data/app/views/seating/_layer_menu.html.haml +23 -0
  106. data/app/views/seating/_legend.html.haml +52 -0
  107. data/app/views/seating/_modify_seats_modal.html.haml +29 -0
  108. data/app/views/seating/_ticket_type_modals.html.haml +41 -0
  109. data/app/views/shows/_seat_chart.html.haml +122 -0
  110. data/app/views/shows/_sections_table.html.haml +3 -24
  111. data/app/views/shows/_ticket_table.html.haml +4 -2
  112. data/app/views/shows/_work_with.html.haml +4 -0
  113. data/app/views/shows/new.html.haml +2 -2
  114. data/app/views/shows/show.html.haml +93 -14
  115. data/app/views/store/assigned_charts/_show.html.haml +54 -0
  116. data/app/views/store/checkouts/shopping_cart_display/_tickets.haml +13 -0
  117. data/app/views/store/donations/index.html.haml +1 -1
  118. data/app/views/store/events/calendar.html.haml +94 -11
  119. data/app/views/store/events/index.html.haml +1 -1
  120. data/app/views/store/events/show.html.haml +36 -2
  121. data/app/views/store/events/single_show.html.haml +5 -4
  122. data/app/views/store/general_admission_charts/_show.html.haml +41 -0
  123. data/app/views/store/orders/show.html.haml +17 -4
  124. data/app/views/store/shared/_donate_form.html.haml +2 -1
  125. data/app/views/store/shared/_small_donate_form.html.haml +1 -1
  126. data/app/views/store/shows/_show.html.haml +1 -39
  127. data/app/views/ticket_types/edit.html.haml +1 -1
  128. data/app/views/user_memberships/_list.html.haml +1 -1
  129. data/app/views/venues/edit.html.haml +1 -1
  130. data/app/views/venues/show.html.haml +11 -0
  131. data/config/routes.rb +27 -10
  132. data/db/migrate/20140828174357_add_type_to_chart.rb +7 -0
  133. data/db/migrate/20140828195617_create_seats.rb +16 -0
  134. data/db/migrate/20140829135426_add_venue_to_chart.rb +5 -0
  135. data/db/migrate/20140829143520_add_assigned_to_event.rb +5 -0
  136. data/db/migrate/20140904164927_add_fields_to_seat.rb +14 -0
  137. data/db/migrate/20140912170010_add_note_to_seat.rb +6 -0
  138. data/db/migrate/20140919152307_add_seats_to_ticket.rb +5 -0
  139. data/db/migrate/20140930224543_add_public_note_to_chart.rb +5 -0
  140. data/db/migrate/20141001140737_add_seat_id_index_to_tickets.rb +5 -0
  141. data/db/migrate/20141001193242_associate_hold_with_person.rb +6 -0
  142. data/db/migrate/20141021175311_create_ticket_types_seats.rb +11 -0
  143. data/db/migrate/20150106161744_migrate_charts_back_to_venues.rb +18 -0
  144. data/db/migrate/20151105085424_add_creator_to_items_view.rb +40 -0
  145. data/lib/artfully_ose/version.rb +1 -1
  146. data/spec/factories/assigned_chart_factories.rb +18 -0
  147. data/spec/factories/chart_factories.rb +4 -8
  148. data/spec/factories/kit_factories.rb +4 -0
  149. data/spec/factories/seat_factories.rb +4 -0
  150. data/spec/factories/show_factories.rb +1 -1
  151. metadata +66 -5
  152. data/app/models/ticket/foundry.rb +0 -48
  153. data/app/models/ticket/template.rb +0 -40
  154. data/app/views/store/events/_calendar.html.haml +0 -13
@@ -0,0 +1,17 @@
1
+ // modifications to seat-chart.js which are specific to the show level
2
+
3
+ $(document).ready(function() {
4
+ $("#chart-delete-rows-btn").unbind("click")
5
+ $("#chart-delete-columns-btn").unbind("click")
6
+
7
+ $("#chart-delete-rows-btn").click(function () {
8
+ $("#modifyMultipleSeats").modal("hide")
9
+ $("#deleteColumsRowsModal").modal("show")
10
+ })
11
+
12
+ $("#chart-delete-columns-btn").click(function () {
13
+ $("#modifyMultipleSeats").modal("hide")
14
+ $("#deleteColumsRowsModal").modal("show")
15
+ })
16
+ })
17
+
@@ -0,0 +1,76 @@
1
+ $(document).ready(function() {
2
+ hookupSeatModal();
3
+ normalizeWidth();
4
+ })
5
+
6
+ function normalizeWidth() {
7
+ var columnCount = $($(".seat-chart-layout .seat-row")[0]).find('.seat').length
8
+ var full = columnCount
9
+ var width = 0
10
+ if(columnCount > 15) {
11
+ width = columnCount * 30
12
+ scaleDown()
13
+ } else {
14
+ width = (columnCount * 37) + 30
15
+ scaleUp()
16
+ }
17
+ $(".seat-chart-layout").width(width);
18
+ }
19
+
20
+ function scaleDown() {
21
+ $(".seat-chart-layout .seat").addClass('seat-mini')
22
+ $(".seat-chart-layout .col").addClass('col-mini')
23
+ }
24
+
25
+ function scaleUp() {
26
+ $(".seat-chart-layout .seat").removeClass('seat-mini')
27
+ $(".seat-chart-layout .col").removeClass('col-mini')
28
+ }
29
+
30
+ function hookupSeatModal() {
31
+ $(".seat.available").click( function() {
32
+ var seatLabel = $(this).attr("data-seat-label")
33
+ var seatId = $(this).attr('data-seat-id')
34
+ var chartId = $(this).attr('data-chart-id')
35
+
36
+ form = $("form#add-tickets-to-cart-" + chartId)
37
+ form.find("#seat_id").val(seatId)
38
+ form.find("#seat-label").html(seatLabel)
39
+
40
+ ticketTypeIds = $(this).attr('data-ticket-type-ids')
41
+ $(".ticket-type-label").hide()
42
+ console.log(ticketTypeIds)
43
+ if(ticketTypeIds) {
44
+ ticketTypeIds = ticketTypeIds.split(",")
45
+ console.log(ticketTypeIds)
46
+ $.each(ticketTypeIds, function(index, ticketTypeId) {
47
+ console.log("#ticket-type-label-" + ticketTypeId)
48
+ $("#ticket-type-label-" + ticketTypeId).show()
49
+ })
50
+ }
51
+
52
+ var seatNote = $(this).attr('data-seat-note')
53
+ var seatQualifier = $(this).attr('data-seat-qualifier')
54
+ var seatNoteDisplay = $("#seat-modal-" + chartId).find("#seat-note-display")
55
+ if(seatNote || seatQualifier) {
56
+ if(seatNote) {
57
+ seatNoteDisplay.find("#seat-note").html(seatNote)
58
+ } else {
59
+ seatNoteDisplay.find("#seat-note").html("")
60
+ }
61
+
62
+ if(seatQualifier) {
63
+ seatNoteDisplay.find("#seat-qualifier").html(seatQualifier)
64
+ } else {
65
+ seatNoteDisplay.find("#seat-qualifier").html("")
66
+ }
67
+ seatNoteDisplay.show()
68
+ } else {
69
+ seatNoteDisplay.hide()
70
+ seatNoteDisplay.find("#seat-note").html("")
71
+ seatNoteDisplay.find("#seat-qualifier").html("")
72
+ }
73
+
74
+ $("#seat-modal-" + chartId).modal("show")
75
+ })
76
+ }
@@ -3,9 +3,21 @@ function endsWith(str, suffix) {
3
3
  }
4
4
 
5
5
  $(document).ready(function(){
6
-
7
6
  hookupToggle()
8
- //$('#edit-address-modal').modal({show: false});
7
+
8
+ $("#loginNagModal .close").click(function () {
9
+ createCookie("mem-modal-dismiss", "true")
10
+ $("#loginNagModal").modal("hide")
11
+ })
12
+
13
+ $("#loginNagModal #close-login-nag").click(function () {
14
+ createCookie("mem-modal-dismiss", "true")
15
+ $("#loginNagModal").modal("hide")
16
+ })
17
+
18
+ if(readCookie("mem-modal-dismiss") != "true") {
19
+ $("#loginNagModal").modal("show")
20
+ }
9
21
 
10
22
  $(document).locationSelector({
11
23
  'countryField' : '#payment_customer_address_country',
@@ -28,43 +40,6 @@ $(document).ready(function(){
28
40
  $('#multi-show-container .title').first().siblings('.sections').slideToggle();
29
41
  $('#multi-show-container .title').first().addClass('active');
30
42
 
31
- // when calendar is clicked
32
- $('td.has_show').click(function() {
33
- var loadingMessage = $('#loading-container #loading')
34
- var errorMessage = $('#loading-container #error')
35
- var date = $(this).attr('data-date');
36
- var targetLi = $("ul#shows li[data-date='" + date + "']");
37
-
38
- targetLi.hide();
39
-
40
- $.each(targetLi, function (index, targetLiEl) {
41
- targetLiEl = $(targetLiEl)
42
- var showUuid = targetLiEl.attr('data-show-uuid');
43
-
44
- $.ajax({
45
- url: "/store/shows/" + showUuid,
46
- beforeSend: function ( xhr ) {
47
- //can't use show() because it starts out hidden and show() won't work with that
48
- errorMessage.css('display', 'none')
49
- loadingMessage.css('visibility', 'visible')
50
-
51
- $("ul#shows li").parent().attr('style','opacity:.4')
52
- }
53
- }).done(function ( data ) {
54
- loadingMessage.css('visibility', 'hidden')
55
- $("ul#shows li").parent().attr('style','opacity:1')
56
- $("ul#shows li").hide();
57
- targetLiEl.html(data);
58
- targetLi.fadeIn('slow');
59
- hookupToggle()
60
- }).error(function ( data ) {
61
- loadingMessage.css('visibility', 'hidden')
62
- errorMessage.css('display', 'block')
63
- errorMessage.css('visibility', 'visible')
64
- });
65
- });
66
- });
67
-
68
43
  $('#discount-link a').click(function(e) {
69
44
  e.preventDefault();
70
45
  $('tr#discount-link').hide();
@@ -3,6 +3,7 @@
3
3
  @import "./sass/event_list"
4
4
  @import "./sass/tags"
5
5
  @import "./sass/box-office"
6
+ @import "./sass/seat-chart"
6
7
  @import "./sass/campaigns"
7
8
  @import "font-awesome"
8
9
  @import "./sass/fa-color"
@@ -35,7 +36,7 @@ h4.event-link
35
36
  margin: 0px
36
37
 
37
38
  a
38
- font-weight: bold
39
+ font-weight: normal
39
40
 
40
41
  a.weak
41
42
  font-weight: normal
@@ -159,6 +160,13 @@ ul#memberships
159
160
  #text
160
161
  padding-top: 50px
161
162
 
163
+ #add-a-pass-type
164
+ text-align: center
165
+ width: 100%
166
+ height: 100px
167
+ #text
168
+ padding-top: 25px
169
+
162
170
  #no-pass-sales
163
171
  text-align: center
164
172
  width: 100%
@@ -867,6 +875,15 @@ p.alternate_form_link
867
875
  #console-build-order
868
876
  margin-top: 12px
869
877
 
878
+ .add-holds-to-cart
879
+ .add-holds-to-cart-message
880
+ font-size: 20px
881
+ color: black
882
+ line-height: 24px
883
+ padding-top: 4px
884
+ .add-holds-to-cart-button
885
+ padding: 5px
886
+
870
887
  .console-button
871
888
  height: 100px
872
889
  padding: 36px 28px
@@ -879,6 +896,37 @@ p.alternate_form_link
879
896
  padding: 30px 28px
880
897
  font-size: 18px
881
898
 
899
+ #chart-overlay
900
+ position: absolute
901
+ left: 0
902
+ top: 0
903
+ bottom: 0
904
+ right: 0
905
+ background: #000
906
+ opacity: 0.2
907
+ filter: alpha(opacity=20)
908
+
909
+ #chart-loading
910
+ position: absolute
911
+ top: 50%
912
+ left: 50%
913
+ margin: -28px 0 0 -25px
914
+
915
+ #chart-error
916
+ position: absolute
917
+ top: 50%
918
+ left: 50%
919
+ margin-left: auto
920
+ margin-right: auto
921
+ display: block
922
+ padding: 10px
923
+ text-transform: uppercase
924
+ font-weight: bold
925
+ font-size: 14px
926
+ color: white
927
+ background-color: red
928
+ text-align: center
929
+
882
930
  /* Portrait tablet to landscape and desktop */
883
931
  @media (min-width: 980px) and (max-width: 1200px)
884
932
  .console-button
@@ -31,7 +31,7 @@
31
31
  }
32
32
 
33
33
  .navbar .nav > li > a {
34
- color: #DFDFDF;
34
+ color: #FFFFFF;
35
35
  }
36
36
 
37
37
  .navbar-inner-admin .nav > li > a {
@@ -375,6 +375,15 @@ input[type="radio"], input[type="checkbox"] {
375
375
  background-image:url("/assets/glyphicons-halflings.png") !important
376
376
  }
377
377
 
378
+ .icon-white {
379
+ background-image:url("/assets/glyphicons-halflings-white.png") !important
380
+ }
381
+
382
+ .navbar .nav li.dropdown>.dropdown-toggle .caret {
383
+ border-top-color: white;
384
+ border-bottom-color: white;
385
+ }
386
+
378
387
  .add-to-calendar {
379
388
  padding-top:10px;
380
389
  text-align: center;
@@ -392,5 +401,4 @@ input[type="radio"], input[type="checkbox"] {
392
401
 
393
402
  .ical-link {
394
403
  display: none;
395
- }
396
-
404
+ }
@@ -0,0 +1,311 @@
1
+ .ticket_type_display
2
+ border: 1px solid #ECECEC
3
+ padding: 5px
4
+ margin-top: 5px
5
+ .name
6
+ font-size: 16px
7
+ font-weight: bold
8
+ .price
9
+ font-size: 16px
10
+ .channels-and-edit
11
+ margin-top: 10px
12
+
13
+ #show-headline
14
+ padding: 0px 5px 0px 5px
15
+
16
+ #stage
17
+ width: 200px
18
+ height: 50px
19
+ border: 1px solid #999
20
+ margin: 5px auto
21
+ background-color: #dfdfdf
22
+ text-align: center
23
+ #text
24
+ padding-top: 27px
25
+ color: #666
26
+ padding-top: 18px
27
+
28
+ .seat-chart-creator
29
+ width: 380px
30
+ margin: 0px auto
31
+ padding-left: 40px
32
+
33
+ #chart-parent
34
+ position: relative
35
+ overflow: visible
36
+ .btn, .btn-success, .btn-primary
37
+ background-image: none
38
+ font-weight: normal
39
+ border-radius: 0px
40
+ .btn-success, .btn-primary
41
+ border: 0
42
+ a
43
+ font-weight: normal
44
+ a.big
45
+ font-size: 24px
46
+ .action-button
47
+ padding: 2px
48
+ z-index: 10
49
+ position: absolute
50
+ top: 10px
51
+ left: 10px
52
+ background-image: image_url('glyphish/gray/10-medical.png')
53
+ background-repeat: no-repeat
54
+ background-position: center
55
+ height: 30px
56
+ width: 30px
57
+ .layers-button
58
+ padding: 2px
59
+ z-index: 10
60
+ position: absolute
61
+ top: 78px
62
+ left: 10px
63
+ background-image: image_url('glyphish/gray/293-database.png')
64
+ background-repeat: no-repeat
65
+ background-position: center
66
+ height: 30px
67
+ width: 30px
68
+ .work-with-button
69
+ padding: 2px
70
+ z-index: 10
71
+ position: absolute
72
+ top: 45px
73
+ left: 10px
74
+ background-image: image_url('glyphish/gray/19-gear.png')
75
+ background-repeat: no-repeat
76
+ background-position: center
77
+ height: 30px
78
+ width: 30px
79
+ .toggable-container
80
+ z-index: 10
81
+ background-color: #FFFFFF
82
+ padding: 10px
83
+ border: 2px solid #999
84
+ display: none
85
+ position: absolute
86
+ left: 50px
87
+ border-radius: 5px
88
+ label
89
+ font-weight: bold
90
+ .actions-container
91
+ top: 10px
92
+ .btn-container
93
+ .btn
94
+ width: 120px
95
+ .layers-container
96
+ top: 80px
97
+ form
98
+ margin: 0px
99
+ label
100
+ font-weight: normal
101
+ .seat-chart-layout, .seat-chart-legend
102
+ position: relative
103
+ min-height: 300px
104
+ margin: 0px auto
105
+ .tip
106
+ margin-left: 10px
107
+ .popover
108
+ width: 350px
109
+ .column-labels
110
+ .col
111
+ width: 28px
112
+ font-size: 16px
113
+ font-weight: bold
114
+ text-align: center
115
+ margin-left: 8px
116
+ float: left
117
+ .col-mini
118
+ width: 26px
119
+ .seat-row
120
+ margin-bottom: 3px
121
+ #legend
122
+ margin-top: 10px
123
+ .seat-label
124
+ float: left
125
+ padding-top: 5px
126
+ font-size: 12pt
127
+ .row-label
128
+ font-size: 16px
129
+ font-weight: bold
130
+ padding-top: 6px
131
+ padding-right: 4px
132
+ width: 20px
133
+ float: left
134
+ .delete-button-container
135
+ width: 20px
136
+ padding-top: 6px
137
+ padding-left: 8px
138
+ float: left
139
+ .seat-legend
140
+ height: 22px
141
+ width: 22px
142
+ border-radius: 12px
143
+ border: 1px solid #AEAEAE
144
+ float: left
145
+ margin-left: 2px
146
+ margin-right: 2px
147
+ background-repeat: no-repeat
148
+ .seat
149
+ height: 28px
150
+ width: 28px
151
+ border-radius: 18px
152
+ border: 1px solid #AEAEAE
153
+ float: left
154
+ margin-left: 8px
155
+ background-repeat: no-repeat
156
+ box-sizing: border-box
157
+ position: relative
158
+ .seat-note
159
+ position: absolute
160
+ left: 20px
161
+ top: -5px
162
+ width: 40px
163
+ z-index: 10
164
+ background-image: image_url('/assets/seating_temp/icon_43405_plus.png')
165
+ .available
166
+ background-color: #33ADDD
167
+ border-color: #33ADDD
168
+ .sold
169
+ background-color: #4C9C85
170
+ border-color: #4C9C85
171
+ .filled
172
+ background-color: grey
173
+ background-position: 4px 4px
174
+ .killed
175
+ background-image: image_url('glyphish/gray/298-circlex.png')
176
+ background-position: 3px 3px
177
+ .noseat
178
+ border: 0px
179
+ width: 32px
180
+ .seat-mini
181
+ height: 24px
182
+ width: 24px
183
+ .ticket-type-selected
184
+ border: 3px solid orange
185
+ .seat-note
186
+ display: none
187
+ .seat-selected
188
+ border-color: #F98132
189
+ border-width: 3px
190
+ .seat-in-cart
191
+ border-color: #F98132
192
+ border-width: 3px
193
+ .hold
194
+ border: 1px solid #FFCECE
195
+ background-color: #FFCECE
196
+ .clear
197
+ clear: both
198
+
199
+ #chart-note-display
200
+ background-color: #EEE
201
+ padding: 10px
202
+ width: 400px
203
+ margin: 0px auto
204
+
205
+ .seat-chart-layout.show-seat-note-layer
206
+ .seat-note
207
+ display: block
208
+
209
+ .seat-chart-layout.show-aisle-layer, .seat-chart-legend
210
+ .aisle
211
+ font-size: 20px
212
+ text-align: center
213
+ line-height: 27px
214
+ background-image: image_url('glyphish/gray/193-location-arrow.png')
215
+ background-position: 3px 3px
216
+ background-size: 20px 20px
217
+
218
+ .seat-chart-layout.show-hold-layer, .seat-chart-legend
219
+ .house-hold
220
+ background-image: image_url('glyphish/gray/53-house.png')
221
+ background-position: 3px 3px
222
+ background-color: #FFCECE
223
+ .tech-hold
224
+ background-image: image_url('glyphish/gray/51-outlet.png')
225
+ background-position: 3px 3px
226
+ background-color: #FFCECE
227
+ .development-hold
228
+ background-image: image_url('glyphish/gray/119-piggy-bank.png')
229
+ background-position: 1px 5px
230
+ background-color: #FFCECE
231
+ .press-hold
232
+ background-image: image_url('glyphish/gray/123-id-card.png')
233
+ background-position: 3px 3px
234
+ background-color: #FFCECE
235
+ .person-hold
236
+ background-image: image_url('glyphish/gray/253-person.png')
237
+ background-position: 3px 3px
238
+ background-color: #FFCECE
239
+ .contractual-hold
240
+ background-image: image_url('glyphish/gray/259-list.png')
241
+ background-position: 3px 3px
242
+ background-color: #FFCECE
243
+ .seat-selected
244
+ border-color: #F98132
245
+ border-width: 3px
246
+
247
+ .seat-chart-layout.show-wheelchair-layer, .seat-chart-legend
248
+ .wheelchair
249
+ background-image: image_url('/assets/seating_temp/icon_43405.png')
250
+ background-position: 5px 3px
251
+ background-size: 20px 20px
252
+ .wheelchair-companion
253
+ background-image: image_url('/assets/seating_temp/icon_43405_plus.png')
254
+ background-position: -1px -1px
255
+ background-size: 30px 30px
256
+
257
+ .seat-chart-layout.show-ticket-type-layer
258
+ .seat
259
+ background-color: #FFFFFF
260
+ .ticket-type-on
261
+ background-color: #F98132
262
+
263
+ #seat-note-display
264
+ background-color: #EEE
265
+ padding: 10px
266
+ width: 210px
267
+
268
+ .whos-coming-layout
269
+ .seat-row
270
+ margin-bottom: 3px
271
+ #legend
272
+ margin-top: 10px
273
+ .seat-label
274
+ float: left
275
+ padding-top: 5px
276
+ font-size: 12pt
277
+ .seat-legend
278
+ height: 22px
279
+ width: 22px
280
+ border-radius: 12px
281
+ border: 1px solid #AEAEAE
282
+ float: left
283
+ margin-left: 2px
284
+ margin-right: 2px
285
+ background-repeat: no-repeat
286
+ .empty
287
+ background-color: #479FFF
288
+ .seat
289
+ height: 28px
290
+ width: 28px
291
+ border-radius: 16px
292
+ border: 1px solid #AEAEAE
293
+ float: left
294
+ margin-left: 2px
295
+ background-repeat: no-repeat
296
+ .seat-selected
297
+ border-color: orange
298
+ .filled
299
+ background-image: image_url('glyphish/gray/253-person.png')
300
+ background-position: 4px 4px
301
+ .killed
302
+ background-image: image_url('glyphish/gray/298-circlex.png')
303
+ background-position: 3px 3px
304
+ .hold
305
+ border: 1px solid #FFCECE
306
+ background-color: #FFCECE
307
+ .noseat
308
+ border: 0px
309
+ width: 32px
310
+ .clear
311
+ clear: both