1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // Modals
- // --------------------------------------------------
- .modal {
- .modal-dialog {
- border-radius: @border-radius-large;
- box-shadow: 0px 0px 0px 6px @dropdown-shadow;
- .modal-content {
- .modal-header {
- background: @modal-header-bg-color;
- border-radius: @border-radius-large @border-radius-large 0px 0px;
- .modal-title {
- color: @modal-title-color;
- }
- }
- .modal-form {
- padding-bottom: @line-height-computed / 5;
- }
- .modal-footer {
- background: @modal-footer-bg-color;
- border-radius: 0px 0px @border-radius-large @border-radius-large;
- &.text-center {
- text-align: center;
- &>* {
- float: none;
- }
- }
- &.text-left {
- text-align: left;
- &>* {
- float: none;
- }
- }
- }
- }
- }
- }
|