Commit 77bb7502 authored by LFeh's avatar LFeh

Options of sizes added in modal

parent eb4a92bf
...@@ -123,6 +123,14 @@ ...@@ -123,6 +123,14 @@
width: 600px; width: 600px;
padding-top: 30px; padding-top: 30px;
padding-bottom: 30px; padding-bottom: 30px;
// Define large size for the modal
&.modal-lg{
width: @modal-lg;
}
// Define small size for the modal
&.modal-sm{
width: @modal-sm;
}
} }
.modal-content { .modal-content {
.box-shadow(0 5px 15px rgba(0,0,0,.5)); .box-shadow(0 5px 15px rgba(0,0,0,.5));
......
...@@ -448,6 +448,9 @@ ...@@ -448,6 +448,9 @@
@modal-header-border-color: #e5e5e5; @modal-header-border-color: #e5e5e5;
@modal-footer-border-color: @modal-header-border-color; @modal-footer-border-color: @modal-header-border-color;
@modal-lg: 900px;
@modal-sm: 400px;
// Alerts // Alerts
// ------------------------- // -------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment