2016-02-06 15:27:44 -05:00
|
|
|
// scss-lint:disable QualifyingElement
|
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
//
|
|
|
|
// Grid examples
|
|
|
|
//
|
|
|
|
|
2015-04-23 04:30:55 -04:00
|
|
|
.bd-example-row {
|
2016-02-06 13:51:59 -05:00
|
|
|
.row + .row {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
2015-04-23 04:30:55 -04:00
|
|
|
|
2016-02-06 13:51:59 -05:00
|
|
|
.row {
|
2016-02-06 03:47:19 -05:00
|
|
|
> .col,
|
2015-04-23 04:30:55 -04:00
|
|
|
> [class^="col-"] {
|
|
|
|
padding-top: .75rem;
|
|
|
|
padding-bottom: .75rem;
|
|
|
|
background-color: rgba(86,61,124,.15);
|
|
|
|
border: 1px solid rgba(86,61,124,.2);
|
|
|
|
}
|
|
|
|
}
|
2016-02-06 04:30:31 -05:00
|
|
|
|
2016-11-27 18:19:27 -05:00
|
|
|
.flex-items-top,
|
|
|
|
.flex-items-middle,
|
|
|
|
.flex-items-bottom {
|
2016-02-06 04:30:31 -05:00
|
|
|
min-height: 6rem;
|
|
|
|
background-color: rgba(255,0,0,.1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bd-example-row-flex-cols .row {
|
|
|
|
min-height: 10rem;
|
|
|
|
background-color: rgba(255,0,0,.1);
|
2015-04-16 17:57:49 -04:00
|
|
|
}
|
|
|
|
|
2016-12-23 14:48:38 -05:00
|
|
|
.bd-highlight {
|
|
|
|
background-color: rgba($bd-purple, .15);
|
|
|
|
border: 1px solid rgba($bd-purple, .15);
|
|
|
|
}
|
|
|
|
|
2017-03-25 15:12:02 -04:00
|
|
|
// Grid mixins
|
|
|
|
.example-container {
|
|
|
|
width: 800px;
|
|
|
|
@include make-container();
|
|
|
|
}
|
|
|
|
|
|
|
|
.example-row {
|
|
|
|
@include make-row();
|
|
|
|
}
|
|
|
|
|
|
|
|
.example-content-main {
|
|
|
|
@include make-col-ready();
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
@include make-col(6);
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
@include make-col(8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.example-content-secondary {
|
|
|
|
@include make-col-ready();
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
@include make-col(6);
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
@include make-col(4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
|
2015-08-11 02:07:50 -04:00
|
|
|
//
|
|
|
|
// Container illustrations
|
|
|
|
//
|
|
|
|
|
|
|
|
.bd-example-container {
|
2015-08-11 02:18:45 -04:00
|
|
|
min-width: 16rem;
|
|
|
|
max-width: 25rem;
|
2015-08-11 02:07:50 -04:00
|
|
|
margin-right: auto;
|
2016-01-03 21:10:34 -05:00
|
|
|
margin-left: auto;
|
2015-08-11 02:07:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.bd-example-container-header {
|
|
|
|
height: 3rem;
|
|
|
|
margin-bottom: .5rem;
|
2017-06-18 05:57:16 -04:00
|
|
|
background-color: lighten($blue, 50%);
|
2015-08-11 02:07:50 -04:00
|
|
|
border-radius: .25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bd-example-container-sidebar {
|
|
|
|
float: right;
|
|
|
|
width: 4rem;
|
|
|
|
height: 8rem;
|
2017-06-18 05:57:16 -04:00
|
|
|
background-color: lighten($blue, 25%);
|
2015-08-11 02:07:50 -04:00
|
|
|
border-radius: .25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bd-example-container-body {
|
|
|
|
height: 8rem;
|
|
|
|
margin-right: 4.5rem;
|
|
|
|
background-color: lighten($bd-purple, 25%);
|
|
|
|
border-radius: .25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bd-example-container-fluid {
|
2015-08-11 02:18:45 -04:00
|
|
|
max-width: none;
|
2015-08-11 02:07:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
//
|
|
|
|
// Docs examples
|
|
|
|
//
|
|
|
|
|
|
|
|
.bd-example {
|
|
|
|
position: relative;
|
|
|
|
padding: 1rem;
|
2017-01-16 13:24:59 -05:00
|
|
|
margin: 1rem (-$grid-gutter-width-base / 2);
|
2015-04-16 17:57:49 -04:00
|
|
|
border: solid #f7f7f9;
|
|
|
|
border-width: .2rem 0 0;
|
|
|
|
@include clearfix();
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2016-01-03 21:27:54 -05:00
|
|
|
padding: 1.5rem;
|
2015-04-16 17:57:49 -04:00
|
|
|
margin-right: 0;
|
2015-04-23 02:09:05 -04:00
|
|
|
margin-bottom: 0;
|
2016-01-03 21:17:58 -05:00
|
|
|
margin-left: 0;
|
2015-04-16 17:57:49 -04:00
|
|
|
border-width: .2rem;
|
|
|
|
}
|
|
|
|
|
2015-08-11 02:07:50 -04:00
|
|
|
+ .highlight,
|
2015-10-13 17:50:42 -04:00
|
|
|
+ .clipboard + .highlight {
|
2015-04-23 04:30:55 -04:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
+ p {
|
|
|
|
margin-top: 2rem;
|
|
|
|
}
|
|
|
|
|
2016-12-21 20:53:00 -05:00
|
|
|
.pos-f-t {
|
|
|
|
position: relative;
|
|
|
|
margin: -1rem;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
margin: -1.5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-18 02:44:17 -04:00
|
|
|
> .form-control {
|
|
|
|
+ .form-control {
|
|
|
|
margin-top: .5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
> .nav + .nav,
|
|
|
|
> .alert + .alert,
|
2015-04-18 21:12:10 -04:00
|
|
|
> .navbar + .navbar,
|
2015-04-26 10:17:45 -04:00
|
|
|
> .progress + .progress,
|
|
|
|
> .progress + .btn {
|
2015-04-16 17:57:49 -04:00
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .dropdown-menu:first-child {
|
|
|
|
position: static;
|
|
|
|
display: block;
|
|
|
|
}
|
2016-02-09 04:12:58 -05:00
|
|
|
|
|
|
|
> .form-group:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-04-16 17:57:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.bd-example > .close {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Typography
|
|
|
|
.bd-example-type .table .type-info {
|
|
|
|
color: #999;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.bd-example-type .table td {
|
|
|
|
padding: 1rem 0;
|
|
|
|
border-color: #eee;
|
|
|
|
}
|
|
|
|
.bd-example-type .table tr:first-child td {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
.bd-example-type h1,
|
|
|
|
.bd-example-type h2,
|
|
|
|
.bd-example-type h3,
|
|
|
|
.bd-example-type h4,
|
|
|
|
.bd-example-type h5,
|
|
|
|
.bd-example-type h6 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contextual background colors
|
|
|
|
.bd-example-bg-classes p {
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Images
|
|
|
|
.bd-example > img {
|
|
|
|
+ img {
|
|
|
|
margin-left: .5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Buttons
|
|
|
|
.bd-example > .btn-group {
|
|
|
|
margin-top: .25rem;
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
}
|
|
|
|
.bd-example > .btn-toolbar + .btn-toolbar {
|
|
|
|
margin-top: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Forms
|
|
|
|
.bd-example-control-sizing select,
|
|
|
|
.bd-example-control-sizing input[type="text"] + input[type="text"] {
|
|
|
|
margin-top: .5rem;
|
|
|
|
}
|
|
|
|
.bd-example-form .input-group {
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
.bd-example > textarea.form-control {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
// List groups
|
|
|
|
.bd-example > .list-group {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Navbars
|
2016-01-03 21:10:34 -05:00
|
|
|
.bd-example {
|
2017-01-02 14:48:51 -05:00
|
|
|
.fixed-top,
|
|
|
|
.sticky-top {
|
2015-08-18 04:18:21 -04:00
|
|
|
position: static;
|
|
|
|
margin: -1rem -1rem 1rem;
|
|
|
|
}
|
2017-01-02 14:48:51 -05:00
|
|
|
.fixed-bottom {
|
2015-08-18 04:18:21 -04:00
|
|
|
position: static;
|
|
|
|
margin: 1rem -1rem -1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2017-01-02 14:48:51 -05:00
|
|
|
.fixed-top,
|
|
|
|
.sticky-top {
|
2015-08-18 04:18:21 -04:00
|
|
|
margin: -1.5rem -1.5rem 1rem;
|
|
|
|
}
|
2017-01-02 14:48:51 -05:00
|
|
|
.fixed-bottom {
|
2015-08-18 04:18:21 -04:00
|
|
|
margin: 1rem -1.5rem -1.5rem;
|
|
|
|
}
|
2015-04-16 17:57:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pagination
|
|
|
|
.bd-example .pagination {
|
|
|
|
margin-top: .5rem;
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Example modals
|
|
|
|
.bd-example-modal {
|
2016-12-24 17:04:11 -05:00
|
|
|
background-color: #fafafa;
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
position: relative;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
|
|
|
bottom: auto;
|
|
|
|
left: auto;
|
|
|
|
z-index: 1;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-dialog {
|
|
|
|
left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2015-04-16 17:57:49 -04:00
|
|
|
}
|
|
|
|
|
2017-06-21 05:47:14 -04:00
|
|
|
.modal.show {
|
|
|
|
z-index: 1072;
|
|
|
|
|
|
|
|
.tooltip, .popover {
|
|
|
|
z-index: 1073;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-backdrop {
|
|
|
|
z-index: 1071;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
// Example tabbable tabs
|
|
|
|
.bd-example-tabs .nav-tabs {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tooltips
|
|
|
|
.bd-example-tooltips {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.bd-example-tooltips > .btn {
|
|
|
|
margin-top: .25rem;
|
|
|
|
margin-bottom: .25rem;
|
|
|
|
}
|
2017-05-23 09:05:26 -04:00
|
|
|
.bs-tooltip-top-docs,
|
|
|
|
.bs-tooltip-bottom-docs {
|
|
|
|
.arrow {
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.bs-tooltip-right-docs,
|
|
|
|
.bs-tooltip-left-docs {
|
|
|
|
.arrow {
|
|
|
|
top: 50%;
|
|
|
|
}
|
|
|
|
}
|
2015-04-16 17:57:49 -04:00
|
|
|
|
|
|
|
// Popovers
|
2015-10-24 02:16:33 -04:00
|
|
|
.bd-example-popover-static {
|
2015-04-16 17:57:49 -04:00
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
2015-10-24 02:16:33 -04:00
|
|
|
.bd-example-popover-static .popover {
|
2015-04-16 17:57:49 -04:00
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 260px;
|
|
|
|
margin: 1.25rem;
|
|
|
|
}
|
2017-05-23 09:05:26 -04:00
|
|
|
.bs-popover-top-docs,
|
|
|
|
.bs-popover-bottom-docs {
|
|
|
|
.arrow {
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.bs-popover-right-docs,
|
|
|
|
.bs-popover-left-docs {
|
|
|
|
.arrow {
|
|
|
|
top: 50%;
|
|
|
|
}
|
|
|
|
}
|
2015-04-16 17:57:49 -04:00
|
|
|
|
|
|
|
// Tooltips
|
2015-11-24 03:15:17 -05:00
|
|
|
.tooltip-demo a {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2015-10-24 02:16:33 -04:00
|
|
|
.bd-example-tooltip-static .tooltip {
|
2015-04-16 17:57:49 -04:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 10px 20px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scrollspy demo on fixed height div
|
|
|
|
.scrollspy-example {
|
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
margin-top: .5rem;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2017-04-02 05:21:04 -04:00
|
|
|
.scrollspy-example-2 {
|
|
|
|
position: relative;
|
|
|
|
height: 350px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
2016-11-26 19:44:16 -05:00
|
|
|
.bd-example-border-utils {
|
2017-06-25 21:39:00 -04:00
|
|
|
[class^="border"] {
|
2016-11-26 19:44:16 -05:00
|
|
|
display: inline-block;
|
2017-06-25 21:39:00 -04:00
|
|
|
width: 5rem;
|
|
|
|
height: 5rem;
|
2016-11-26 19:44:16 -05:00
|
|
|
margin: .25rem;
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
border: 1px solid;
|
|
|
|
}
|
|
|
|
}
|
2015-04-16 17:57:49 -04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Code snippets
|
|
|
|
//
|
|
|
|
|
|
|
|
.highlight {
|
|
|
|
padding: 1rem;
|
2016-09-09 00:48:17 -04:00
|
|
|
margin: 1rem (-$grid-gutter-width-base / 2);
|
2015-04-16 17:57:49 -04:00
|
|
|
background-color: #f7f7f9;
|
2017-01-03 15:53:01 -05:00
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2015-04-16 17:57:49 -04:00
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
padding: 1.5rem;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.highlight pre {
|
|
|
|
padding: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.highlight pre code {
|
|
|
|
font-size: inherit;
|
2017-06-30 02:15:16 -04:00
|
|
|
color: $gray-900; // Effectively the base text color
|
2015-04-16 17:57:49 -04:00
|
|
|
}
|