2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Modals
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-02-06 05:07:40 -05:00
|
|
|
// .modal-open - body class for killing the scroll
|
|
|
|
// .modal - container to scroll within
|
|
|
|
// .modal-dialog - positioning shell for the actual modal
|
|
|
|
// .modal-content - actual modal w/ bg and corners and shit
|
|
|
|
|
|
|
|
// Kill the scroll on the body
|
|
|
|
.modal-open {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Container that the modal scrolls within
|
|
|
|
.modal {
|
|
|
|
display: none;
|
2014-06-10 22:06:24 -04:00
|
|
|
overflow: hidden;
|
2011-11-17 02:58:36 -05:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2011-11-17 04:28:42 -05:00
|
|
|
left: 0;
|
2013-12-13 06:24:20 -05:00
|
|
|
z-index: @zindex-modal;
|
2013-12-02 15:56:23 -05:00
|
|
|
-webkit-overflow-scrolling: touch;
|
2013-02-07 22:31:12 -05:00
|
|
|
|
2013-12-14 18:38:21 -05:00
|
|
|
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
|
|
|
// https://github.com/twbs/bootstrap/pull/10951.
|
2013-10-05 06:55:26 -04:00
|
|
|
outline: 0;
|
2013-02-07 22:31:12 -05:00
|
|
|
|
|
|
|
// When fading in the modal, animate it to slide down
|
2013-07-27 01:09:31 -04:00
|
|
|
&.fade .modal-dialog {
|
2014-10-03 00:52:53 -04:00
|
|
|
.translate(0, -25%);
|
2013-07-27 01:09:31 -04:00
|
|
|
.transition-transform(~"0.3s ease-out");
|
2013-02-07 22:31:12 -05:00
|
|
|
}
|
2014-10-03 00:52:53 -04:00
|
|
|
&.in .modal-dialog { .translate(0, 0) }
|
2013-02-07 22:21:56 -05:00
|
|
|
}
|
2014-06-10 22:06:24 -04:00
|
|
|
.modal-open .modal {
|
2014-06-10 22:20:56 -04:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2014-06-10 22:06:24 -04:00
|
|
|
}
|
2011-11-17 02:58:36 -05:00
|
|
|
|
2013-02-06 05:07:40 -05:00
|
|
|
// Shell div to position the modal with bottom padding
|
|
|
|
.modal-dialog {
|
2013-10-20 23:04:10 -04:00
|
|
|
position: relative;
|
2013-02-06 05:07:40 -05:00
|
|
|
width: auto;
|
2013-11-30 01:03:49 -05:00
|
|
|
margin: 10px;
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
|
|
|
|
2013-02-06 05:07:40 -05:00
|
|
|
// Actual modal
|
|
|
|
.modal-content {
|
|
|
|
position: relative;
|
2013-07-24 09:43:21 -04:00
|
|
|
background-color: @modal-content-bg;
|
|
|
|
border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)
|
|
|
|
border: 1px solid @modal-content-border-color;
|
|
|
|
border-radius: @border-radius-large;
|
2013-02-07 22:31:12 -05:00
|
|
|
.box-shadow(0 3px 9px rgba(0,0,0,.5));
|
2013-08-12 13:01:13 -04:00
|
|
|
background-clip: padding-box;
|
2012-10-30 00:34:10 -04:00
|
|
|
// Remove focus outline from opened modal
|
2014-03-10 02:55:29 -04:00
|
|
|
outline: 0;
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
2013-02-06 05:07:40 -05:00
|
|
|
|
|
|
|
// Modal background
|
|
|
|
.modal-backdrop {
|
2014-10-29 23:46:14 -04:00
|
|
|
position: absolute;
|
2013-02-06 05:07:40 -05:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
2013-07-24 09:43:21 -04:00
|
|
|
background-color: @modal-backdrop-bg;
|
2013-02-06 05:07:40 -05:00
|
|
|
// Fade for backdrop
|
2013-02-28 22:46:49 -05:00
|
|
|
&.fade { .opacity(0); }
|
2013-10-15 14:53:56 -04:00
|
|
|
&.in { .opacity(@modal-backdrop-opacity); }
|
2013-02-06 05:07:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Modal header
|
|
|
|
// Top section of the modal w/ title and dismiss
|
2011-11-17 02:58:36 -05:00
|
|
|
.modal-header {
|
2013-04-12 23:56:19 -04:00
|
|
|
padding: @modal-title-padding;
|
2013-07-24 09:43:21 -04:00
|
|
|
border-bottom: 1px solid @modal-header-border-color;
|
2013-04-12 23:56:19 -04:00
|
|
|
min-height: (@modal-title-padding + @modal-title-line-height);
|
2013-02-06 05:07:40 -05:00
|
|
|
}
|
|
|
|
// Close icon
|
|
|
|
.modal-header .close {
|
2013-04-12 23:56:19 -04:00
|
|
|
margin-top: -2px;
|
2013-02-06 05:07:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Title text within header
|
|
|
|
.modal-title {
|
|
|
|
margin: 0;
|
2013-04-12 23:56:19 -04:00
|
|
|
line-height: @modal-title-line-height;
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
2012-02-12 18:43:04 -05:00
|
|
|
|
2013-02-06 05:07:40 -05:00
|
|
|
// Modal body
|
|
|
|
// Where all modal content resides (sibling of .modal-header and .modal-footer)
|
2011-11-17 02:58:36 -05:00
|
|
|
.modal-body {
|
2012-12-01 18:52:13 -05:00
|
|
|
position: relative;
|
2013-02-07 22:31:12 -05:00
|
|
|
padding: @modal-inner-padding;
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
2012-02-12 18:43:04 -05:00
|
|
|
|
|
|
|
// Footer (for actions)
|
2011-11-17 02:58:36 -05:00
|
|
|
.modal-footer {
|
2014-02-22 15:38:56 -05:00
|
|
|
padding: @modal-inner-padding;
|
2012-02-23 01:38:54 -05:00
|
|
|
text-align: right; // right align buttons
|
2013-07-24 09:43:21 -04:00
|
|
|
border-top: 1px solid @modal-footer-border-color;
|
Switch to `&:extend(.clearfix all)` for clearfix mixin
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639.
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686,
#9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652.
(dem issues, tho)
2013-12-09 02:18:28 -05:00
|
|
|
&:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons
|
2012-02-23 01:38:54 -05:00
|
|
|
|
|
|
|
// Properly space out buttons
|
|
|
|
.btn + .btn {
|
2011-11-17 02:58:36 -05:00
|
|
|
margin-left: 5px;
|
2012-01-27 23:05:03 -05:00
|
|
|
margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
2012-03-12 01:28:37 -04:00
|
|
|
// but override that for button groups
|
|
|
|
.btn-group .btn + .btn {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2012-09-07 14:10:00 -04:00
|
|
|
// and override it for block buttons as well
|
|
|
|
.btn-block + .btn-block {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2011-11-17 02:58:36 -05:00
|
|
|
}
|
2013-02-06 05:07:40 -05:00
|
|
|
|
2014-03-16 21:38:47 -04:00
|
|
|
// Measure scrollbar width for padding body during modal show/hide
|
|
|
|
.modal-scrollbar-measure {
|
|
|
|
position: absolute;
|
|
|
|
top: -9999px;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
2013-02-07 22:21:56 -05:00
|
|
|
// Scale up the modal
|
2013-12-14 19:29:47 -05:00
|
|
|
@media (min-width: @screen-sm-min) {
|
|
|
|
// Automatically set modal's width for larger viewports
|
2013-02-06 05:07:40 -05:00
|
|
|
.modal-dialog {
|
2014-01-15 21:53:22 -05:00
|
|
|
width: @modal-md;
|
2013-11-30 14:56:06 -05:00
|
|
|
margin: 30px auto;
|
2013-02-06 05:07:40 -05:00
|
|
|
}
|
2013-02-07 22:31:12 -05:00
|
|
|
.modal-content {
|
|
|
|
.box-shadow(0 5px 15px rgba(0,0,0,.5));
|
|
|
|
}
|
2013-02-06 05:07:40 -05:00
|
|
|
|
2013-12-14 19:29:47 -05:00
|
|
|
// Modal sizes
|
|
|
|
.modal-sm { width: @modal-sm; }
|
2014-02-04 05:01:31 -05:00
|
|
|
}
|
2013-12-14 19:29:47 -05:00
|
|
|
|
2014-02-04 05:01:31 -05:00
|
|
|
@media (min-width: @screen-md-min) {
|
|
|
|
.modal-lg { width: @modal-lg; }
|
2013-02-06 05:07:40 -05:00
|
|
|
}
|