2017-07-03 00:23:29 +02:00
|
|
|
// Grid examples
|
|
|
|
//
|
|
|
|
// Highlight the grid columns within the docs so folks can see their padding,
|
|
|
|
// alignment, sizing, etc.
|
2017-07-03 00:09:46 +02:00
|
|
|
|
|
|
|
.show-grid {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.show-grid [class^="col-"] {
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
background-color: #eee;
|
|
|
|
background-color: rgba(86,61,124,.15);
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border: 1px solid rgba(86,61,124,.2);
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Examples
|
|
|
|
//
|
|
|
|
// Isolated sections of example content for each component or feature. Usually
|
|
|
|
// followed by a code snippet.
|
2017-07-03 00:09:46 +02:00
|
|
|
|
|
|
|
.bs-example {
|
|
|
|
position: relative;
|
|
|
|
padding: 45px 15px 15px;
|
|
|
|
margin: 0 -15px 15px;
|
|
|
|
border-color: #e5e5e5 #eee #eee;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 1px 0;
|
|
|
|
-webkit-box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
|
|
|
|
box-shadow: inset 0 3px 6px rgba(0,0,0,.05);
|
|
|
|
}
|
2017-07-03 00:23:29 +02:00
|
|
|
// Echo out a label for the example
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example:after {
|
|
|
|
position: absolute;
|
|
|
|
top: 15px;
|
|
|
|
left: 15px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #959595;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
content: "Example";
|
|
|
|
}
|
|
|
|
|
|
|
|
.bs-example-padded-bottom {
|
|
|
|
padding-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Tweak display of the code snippets when following an example
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example + .highlight,
|
|
|
|
.bs-example + .zero-clipboard + .highlight {
|
|
|
|
margin: -15px -15px 15px;
|
|
|
|
border-width: 0 0 1px;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Make the examples and snippets not full-width
|
|
|
|
@media (min-width: @screen-sm-min) {
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
border-color: #ddd;
|
|
|
|
border-width: 1px;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.bs-example + .highlight,
|
|
|
|
.bs-example + .zero-clipboard + .highlight {
|
|
|
|
margin-top: -16px;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
border-width: 1px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
}
|
|
|
|
.bs-example-standalone {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Undo width of container
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example .container {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Tweak content of examples for optimum awesome
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > p:last-child,
|
|
|
|
.bs-example > ul:last-child,
|
|
|
|
.bs-example > ol:last-child,
|
|
|
|
.bs-example > blockquote:last-child,
|
|
|
|
.bs-example > .form-control:last-child,
|
|
|
|
.bs-example > .table:last-child,
|
|
|
|
.bs-example > .navbar:last-child,
|
|
|
|
.bs-example > .jumbotron:last-child,
|
|
|
|
.bs-example > .alert:last-child,
|
|
|
|
.bs-example > .panel:last-child,
|
|
|
|
.bs-example > .list-group:last-child,
|
|
|
|
.bs-example > .well:last-child,
|
|
|
|
.bs-example > .progress:last-child,
|
|
|
|
.bs-example > .table-responsive:last-child > .table {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.bs-example > p > .close {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Typography
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-type .table .type-info {
|
|
|
|
color: #767676;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.bs-example-type .table td {
|
|
|
|
padding: 15px 0;
|
|
|
|
border-color: #eee;
|
|
|
|
}
|
|
|
|
.bs-example-type .table tr:first-child td {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
.bs-example-type h1,
|
|
|
|
.bs-example-type h2,
|
|
|
|
.bs-example-type h3,
|
|
|
|
.bs-example-type h4,
|
|
|
|
.bs-example-type h5,
|
|
|
|
.bs-example-type h6 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Contextual background colors
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-bg-classes p {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Images
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > .img-circle,
|
|
|
|
.bs-example > .img-rounded,
|
|
|
|
.bs-example > .img-thumbnail {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Tables
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > .table-responsive > .table {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Buttons
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > .btn,
|
|
|
|
.bs-example > .btn-group {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
.bs-example > .btn-toolbar + .btn-toolbar {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Forms
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-control-sizing select,
|
|
|
|
.bs-example-control-sizing input[type="text"] + input[type="text"] {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.bs-example-form .input-group {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.bs-example > textarea.form-control {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// List groups
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > .list-group {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Navbars
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example .navbar:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.bs-navbar-top-example,
|
|
|
|
.bs-navbar-bottom-example {
|
|
|
|
z-index: 1;
|
|
|
|
padding: 0;
|
2017-07-03 00:23:29 +02:00
|
|
|
overflow: hidden; // cut the drop shadows off
|
2017-07-03 00:09:46 +02:00
|
|
|
}
|
|
|
|
.bs-navbar-top-example .navbar-header,
|
|
|
|
.bs-navbar-bottom-example .navbar-header {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.bs-navbar-top-example .navbar-fixed-top,
|
|
|
|
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
|
|
|
position: relative;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.bs-navbar-top-example {
|
|
|
|
padding-bottom: 45px;
|
|
|
|
}
|
|
|
|
.bs-navbar-top-example:after {
|
|
|
|
top: auto;
|
|
|
|
bottom: 15px;
|
|
|
|
}
|
|
|
|
.bs-navbar-top-example .navbar-fixed-top {
|
|
|
|
top: -1px;
|
|
|
|
}
|
|
|
|
.bs-navbar-bottom-example {
|
|
|
|
padding-top: 45px;
|
|
|
|
}
|
|
|
|
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
|
|
|
bottom: -1px;
|
|
|
|
}
|
|
|
|
.bs-navbar-bottom-example .navbar {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.bs-navbar-top-example .navbar-fixed-top,
|
|
|
|
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Pagination
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example .pagination {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Pager
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > .pager {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Example modals
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-modal {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
.bs-example-modal .modal {
|
|
|
|
position: relative;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
|
|
|
bottom: auto;
|
|
|
|
left: auto;
|
|
|
|
z-index: 1;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.bs-example-modal .modal-dialog {
|
|
|
|
left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Example dropdowns
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example > .dropdown > .dropdown-toggle {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.bs-example > .dropdown > .dropdown-menu {
|
|
|
|
position: static;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Example tabbable tabs
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-tabs .nav-tabs {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Tooltips
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-tooltips {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.bs-example-tooltips > .btn {
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
.bs-example-tooltip .tooltip {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 10px 20px;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Popovers
|
2017-07-03 00:09:46 +02:00
|
|
|
.bs-example-popover {
|
|
|
|
padding-bottom: 24px;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
|
|
|
.bs-example-popover .popover {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 260px;
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Scrollspy demo on fixed height div
|
2017-07-03 00:09:46 +02:00
|
|
|
.scrollspy-example {
|
|
|
|
position: relative;
|
|
|
|
height: 200px;
|
|
|
|
margin-top: 10px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bs-example > .nav-pills-stacked-example {
|
|
|
|
max-width: 300px;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Simple collapse example
|
2017-07-03 00:09:46 +02:00
|
|
|
#collapseExample .well {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-03 00:23:29 +02:00
|
|
|
// Pseudo :focus state for showing how it looks in the docs
|
2017-07-03 00:09:46 +02:00
|
|
|
#focusedInput {
|
2017-07-03 00:23:29 +02:00
|
|
|
border-color: rgb(204,204,204); // Restate unfocused value to make CSSLint happy that there's a pre-CSS3 fallback
|
2017-07-03 00:09:46 +02:00
|
|
|
border-color: rgba(82,168,236,.8);
|
|
|
|
outline: 0;
|
2017-07-03 00:23:29 +02:00
|
|
|
outline: thin dotted \9; // IE6-9
|
2017-07-03 00:09:46 +02:00
|
|
|
-webkit-box-shadow: 0 0 8px rgba(82,168,236,.6);
|
|
|
|
box-shadow: 0 0 8px rgba(82,168,236,.6);
|
|
|
|
}
|