diff --git a/ietf/static/ietf/css/agenda/agenda.css b/ietf/static/ietf/css/agenda/agenda.css index 51c6c53b1..ff06231f5 100644 --- a/ietf/static/ietf/css/agenda/agenda.css +++ b/ietf/static/ietf/css/agenda/agenda.css @@ -907,7 +907,7 @@ td.ourconflicts, td.theirconflicts { background-image: url('images/orange_hatch.png'); } -.agenda_slot_session { +.agenda_slot_regular { background-color: #E0E0E0; } diff --git a/ietf/static/ietf/js/agenda/timeslot_edit.js b/ietf/static/ietf/js/agenda/timeslot_edit.js index 4e07bc914..a7aa1167c 100644 --- a/ietf/static/ietf/js/agenda/timeslot_edit.js +++ b/ietf/static/ietf/js/agenda/timeslot_edit.js @@ -254,7 +254,7 @@ function build_select_box(roomtype, domid, slot_id, select_id) { if(roomtype == "regular") { roomtypesession="selected"; - roomtypeclass="agenda_slot_session"; + roomtypeclass="agenda_slot_regular"; } else if(roomtype == "other") { roomtypeother="selected"; roomtypeclass="agenda_slot_other"; @@ -290,7 +290,7 @@ function insert_timeslotedit_cell(ts) { $(slot_id).removeClass("agenda_slot_unavailable") $(slot_id).removeClass("agenda_slot_other") - $(slot_id).removeClass("agenda_slot_session") + $(slot_id).removeClass("agenda_slot_regular") $(slot_id).removeClass("agenda_slot_plenary") $(slot_id).removeClass("agenda_slot_reserved") $(slot_id).removeClass("no_timeslot"); @@ -341,7 +341,7 @@ function create_timeslotedit_cell(slot_id) { /* $(slot_id).removeClass("agenda_slot_unavailable") */ $(slot_id).removeClass("agenda_slot_other") - $(slot_id).removeClass("agenda_slot_session") + $(slot_id).removeClass("agenda_slot_regular") $(slot_id).removeClass("agenda_slot_plenary") $(slot_id).removeClass("agenda_slot_reserved")