This commit is contained in:
Kayn Ty 2018-05-04 20:04:48 +02:00
parent bacf61f976
commit 8b05b76c64
3 changed files with 22 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<button class="btn btn-primary btn-block" id="validate_selling" ng-click="sendForm(event)" <button class="btn btn-primary btn-block validate_selling" ng-click="sendForm(event)"
ng-disabled="!paidAmount"> ng-disabled="!paidAmount">
<i class="fa fa-check"></i> <i class="fa fa-check"></i>

View File

@ -3,10 +3,11 @@
display: inline-block; display: inline-block;
margin-right: 1rem; margin-right: 1rem;
margin-bottom: 1rem; margin-bottom: 1rem;
width: 100%; width: 50%;
} }
.product-button { .product-button {
min-width: 90%; width: 80%;
text-overflow-ellipsis: "...";
} }
.listing-products { .listing-products {
.btn, button { .btn, button {
@ -35,3 +36,19 @@
} }
} }
.validate_selling {
margin: 0.25rem;
}
@media all and(max-width: 1200px) {
#caisse-now {
.product-box {
width: 50%;
}
.product-button {
min-width: calc(100% - 56px)
}
}
}

View File

@ -178,5 +178,6 @@ angular
}]); }]);
console.log('jQuery', jQuery); console.log('jQuery', jQuery);
jQuery(function () { jQuery(function () {
$('[data-toggle="tooltip"]').tooltip() jQuery('[data-toggle="tooltip"]').tooltip();
console.log('jQuery(\'[data-toggle="tooltip"]\')', jQuery('[data-toggle="tooltip"]'));
}); });