Diverse ticketlose Änderungen
- E-Mail-Link im Header - Raumnummer und -typ sowie Aufteilung der Reisenden für die Bestätigungsmail - Es werden nur noch die Raumtypen zur Auswahl angeboten, die für die gewählte Reise verfügbar sind - PDF-Herunterladen an entsprechenden Stellen angefügt - Vorauswahl von Räumen und Abflugort entfernt - Geburtstage werden nicht mehr validiert git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3344 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
dc0a69413f
commit
0246f5b2ff
15 changed files with 207 additions and 94 deletions
|
|
@ -235,6 +235,13 @@
|
|||
.btn-over-slider {
|
||||
top:110px;
|
||||
}
|
||||
.btn-over-slider-bottom {
|
||||
top:320px;
|
||||
}
|
||||
.st-slider-booking-btn-bottom{
|
||||
background-color: #777777 !important;
|
||||
}
|
||||
|
||||
.price-over-slider {
|
||||
top: 115px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -58,6 +58,13 @@
|
|||
}
|
||||
}
|
||||
|
||||
.btn-over-slider-bottom {
|
||||
top: 280px !important;
|
||||
}
|
||||
.st-slider-booking-btn-bottom{
|
||||
background-color: #777777 !important;
|
||||
}
|
||||
|
||||
.price-over-slider {
|
||||
position: absolute; left: 15px; top:75px; z-index: 1000;
|
||||
.cprice{
|
||||
|
|
|
|||
|
|
@ -1121,6 +1121,12 @@ a[id^="video_"]:before,
|
|||
-moz-box-shadow: 0px 0px 8px 5px rgba(255, 255, 255, 0.4);
|
||||
box-shadow: 0px 0px 8px 5px rgba(255, 255, 255, 0.4);
|
||||
}
|
||||
.btn-over-slider-bottom {
|
||||
top: 280px !important;
|
||||
}
|
||||
.st-slider-booking-btn-bottom {
|
||||
background-color: #777777 !important;
|
||||
}
|
||||
.price-over-slider {
|
||||
position: absolute;
|
||||
left: 15px;
|
||||
|
|
@ -1964,7 +1970,7 @@ body.modal-open {
|
|||
background-color: #f6f6f6;
|
||||
}
|
||||
#page-header {
|
||||
background: url(images/page-header.jpg) no-repeat scroll center center / cover rgba(0, 0, 0, 0);
|
||||
background: url('images/page-header.jpg') no-repeat scroll center center / cover rgba(0, 0, 0, 0);
|
||||
display: block;
|
||||
padding: 70px 0;
|
||||
position: relative;
|
||||
|
|
@ -3717,6 +3723,12 @@ a,
|
|||
.btn-over-slider {
|
||||
top: 110px;
|
||||
}
|
||||
.btn-over-slider-bottom {
|
||||
top: 320px;
|
||||
}
|
||||
.st-slider-booking-btn-bottom {
|
||||
background-color: #777777 !important;
|
||||
}
|
||||
.price-over-slider {
|
||||
top: 115px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,8 @@ $(document).ready(function() {
|
|||
var roomIndexSelector = travelerSelector+' .st-traveller-index';
|
||||
var currentRoomIndex = $(travelerSelector).attr("data-room-index");
|
||||
$(travelerSelector).show().find('input,select').prop('required', true);
|
||||
$(roomIndexSelector).text(currentRoomIndex);
|
||||
//$(roomIndexSelector).text(currentRoomIndex);
|
||||
$(roomIndexSelector).text("Einzelzimmer");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -68,7 +69,8 @@ $(document).ready(function() {
|
|||
var roomIndexSelector = travelerSelector+' .st-traveller-index';
|
||||
var currentRoomIndex = $(travelerSelector).attr("data-room-index");
|
||||
$(travelerSelector).show().find('input,select').prop('required', true);
|
||||
$(roomIndexSelector).text(currentRoomIndex - offset);
|
||||
//$(roomIndexSelector).text(currentRoomIndex - offset);
|
||||
$(roomIndexSelector).text("Doppelzimmer");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -81,7 +83,8 @@ $(document).ready(function() {
|
|||
var roomIndexSelector = travelerSelector+' .st-traveller-index';
|
||||
var currentRoomIndex = $(travelerSelector).attr("data-room-index");
|
||||
$(travelerSelector).show().find('input,select').prop('required', true);
|
||||
$(roomIndexSelector).text(currentRoomIndex - offset);
|
||||
//$(roomIndexSelector).text(currentRoomIndex - offset);
|
||||
$(roomIndexSelector).text("Dreibettzimmer");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue