Reputation: 1
I am creating a modal:
controller.buildingDetailsPopup = function () {
var modalInstance = $uibModal.open({
templateUrl: "/app/View/Partials/_biuldingDetailsPopup.html",
controller: "biuldingDetailsPopupController",
size: 'lg'
});
is there a way to increase more big width via property size?
Upvotes: 0
Views: 18412
Reputation: 56
I would set the size option to my customOption(ex: mySize) and create a CSS class as below.
.modal-mySize {
width: 1130px;
}
Upvotes: 2
Reputation: 641
Hi you can override the css class for modal.
Example:
.modal-dialog {
width: 35%;
}
.modal-dialog .modal-lg {
width: 60%;
}
Upvotes: 0