messages of 404.html defined in main program, template moved in common directory
3 // --------------------------------------------------
5 // .modal-open - body class for killing the scroll
6 // .modal - container to scroll within
7 // .modal-dialog - positioning shell for the actual modal
8 // .modal-content - actual modal w/ bg and corners and shit
10 // Kill the scroll on the body
15 // Container that the modal scrolls within
25 z-index: @zindex-modal-background;
27 // When fading in the modal, animate it to slide down
28 &.fade .modal-dialog {
30 .transition-transform(~"0.3s ease-out");
32 &.in .modal-dialog { .translate(0, 0)}
35 // Shell div to position the modal with bottom padding
40 z-index: (@zindex-modal-background + 10);
46 background-color: @modal-content-bg;
47 border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)
48 border: 1px solid @modal-content-border-color;
49 border-radius: @border-radius-large;
50 .box-shadow(0 3px 9px rgba(0,0,0,.5));
51 background-clip: padding-box;
52 // Remove focus outline from opened modal
63 z-index: (@zindex-modal-background - 10);
64 background-color: @modal-backdrop-bg;
66 &.fade { .opacity(0); }
67 &.in { .opacity(.5); }
71 // Top section of the modal w/ title and dismiss
73 padding: @modal-title-padding;
74 border-bottom: 1px solid @modal-header-border-color;
75 min-height: (@modal-title-padding + @modal-title-line-height);
78 .modal-header .close {
82 // Title text within header
85 line-height: @modal-title-line-height;
89 // Where all modal content resides (sibling of .modal-header and .modal-footer)
92 padding: @modal-inner-padding;
95 // Footer (for actions)
98 padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;
99 text-align: right; // right align buttons
100 border-top: 1px solid @modal-footer-border-color;
101 .clearfix(); // clear it in case folks use .pull-* classes on buttons
103 // Properly space out buttons
106 margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
108 // but override that for button groups
109 .btn-group .btn + .btn {
112 // and override it for block buttons as well
113 .btn-block + .btn-block {
118 // Scale up the modal
119 @media screen and (min-width: @screen-sm-min) {
126 .box-shadow(0 5px 15px rgba(0,0,0,.5));