Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Bootstrap 4.0.0.alpha6 #1776

Closed
wants to merge 12 commits into from
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
$(function(){
$('body').popover({selector: '.hint-tooltip', html: true, trigger: 'hover', placement: 'top'});

$('body').tooltip({selector: '.with-tip'});
/* Animation has to be off to work around a bug in bootstrap 4.0.0.alpha6 */
$('body').tooltip({selector: '.with-tip', animation: false});

/*
* Poll tooltips to hide them if they are no longer being hovered.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<div class="fullwidth tier">
<div class="row">
<div class="col-xs-6">
<div class="col-6">
<a class="fa fa-trash remove js-remove-tier"></a>
<div class="input-group">
<span class="input-group-addon">$</span>
<input class="js-base-input form-control" type="text" value={{baseField.value}}>
</div>
</div>
<div class="col-xs-6">
<div class="col-6">
<div class="input-group">
<span class="input-group-addon">$</span>
<input class="js-value-input form-control"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<div class="fullwidth tier">
<a class="fa fa-trash remove js-remove-tier"></a>
<div class="row">
<div class="col-xs-6">
<div class="col-6">
<div class="input-group">
<span class="input-group-addon">$</span>
<input class="js-base-input form-control" type="text" value={{baseField.value}}>
</div>
</div>
<div class="col-xs-6">
<div class="col-6">
<div class="input-group">
<input class="js-value-input form-control right-align"
name="{{valueField.name}}" type="text" value={{valueField.value}}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="fullwidth promo-rule-option-value">
<div class="row">
<div class="col-xs-6">
<div class="col-6">
<input class="js-promo-rule-option-value-product-select fullwidth" type="hidden" value="{{ productSelect.value }}">
</div>
<div class="col-xs-5">
<div class="col-5">
<input class="js-promo-rule-option-value-option-values-select fullwidth" name="{{ paramPrefix }}[preferred_eligible_values][{{ productSelect.value }}]" type="hidden" value={{optionValuesSelect.value}}>
</div>
</div>
Expand Down
Loading