optische Korrekturen
* Boxen home.html Ergänzung p Tags für gleiche Höher der Copy * Boxen Bilder die kleiner sind als 190px werden mit JS auf 190px Höhe / Width auto angepasst. * Preisstörer im Slider * Style Video Links * Style Listen * Scrollbalken im Buchungsformular bei Dropdown entfernt * Alle Buttons von grau auf grün geändert * Überschriften Boxen auf 16px * Link Flughäfen unterstrichen * Dropdowns gehen nur noch nach unten auf Autodropup false * Kalender auch über das Icon - labels mit for=„ID“ * Termin Nummer in den Tabellen auf 80% Schrift git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3298 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
39870187c5
commit
d8fcf531ec
7 changed files with 150 additions and 26 deletions
|
|
@ -222,6 +222,10 @@ jQuery(document).ready(function($) {
|
|||
);
|
||||
}
|
||||
|
||||
|
||||
$('.selectpicker').selectpicker({
|
||||
dropupAuto: false
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
|
@ -386,6 +390,25 @@ jQuery(document).ready(function($) {
|
|||
resize_box();
|
||||
});
|
||||
|
||||
|
||||
/* ==============================================
|
||||
resize_travel_img with height < 190 -->
|
||||
=============================================== */
|
||||
|
||||
|
||||
function resize_travel_img (){
|
||||
$('.travel-wrapper').find('img').each(function(){
|
||||
if($(this).height() < 190){
|
||||
$(this).addClass('lower-height');
|
||||
}
|
||||
});
|
||||
}
|
||||
resize_travel_img();
|
||||
$(window).resize(function() {
|
||||
resize_travel_img();
|
||||
});
|
||||
|
||||
|
||||
/* ==============================================
|
||||
DATAPICKER -->
|
||||
=============================================== */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue