2014-01-10 07:14:55 -05:00
|
|
|
html {
|
|
|
|
overflow-y: scroll;
|
2014-01-22 21:07:01 -05:00
|
|
|
|
|
|
|
&.touch .tooltip { display: none !important; }
|
2015-12-02 09:04:29 -05:00
|
|
|
}
|
2015-01-14 21:42:25 -05:00
|
|
|
|
2015-12-02 09:04:29 -05:00
|
|
|
body {
|
2015-12-03 12:51:44 -05:00
|
|
|
&.navless {
|
2016-11-30 08:25:25 -05:00
|
|
|
background-color: $white-light !important;
|
2015-12-03 12:51:44 -05:00
|
|
|
}
|
2017-02-15 08:49:14 -05:00
|
|
|
|
|
|
|
&.card-content {
|
|
|
|
background-color: $gray-darker;
|
|
|
|
|
|
|
|
.content-wrapper {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
.container-fluid,
|
|
|
|
.container-limited {
|
|
|
|
background-color: $gray-darker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-10 07:14:55 -05:00
|
|
|
}
|
|
|
|
|
2017-03-20 17:16:55 -04:00
|
|
|
.content-wrapper {
|
|
|
|
padding-bottom: 100px;
|
2017-04-17 16:54:26 -04:00
|
|
|
|
|
|
|
&:not(.page-with-layout-nav) {
|
|
|
|
margin-top: $header-height;
|
|
|
|
}
|
2017-03-20 17:16:55 -04:00
|
|
|
}
|
|
|
|
|
2014-01-10 07:14:55 -05:00
|
|
|
.container {
|
|
|
|
padding-top: 0;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container .content {
|
2016-03-18 17:18:00 -04:00
|
|
|
margin: 0;
|
2014-01-10 07:14:55 -05:00
|
|
|
}
|
2015-01-14 20:22:36 -05:00
|
|
|
|
2015-01-14 21:42:25 -05:00
|
|
|
.navless-container {
|
2015-12-03 12:51:44 -05:00
|
|
|
margin-top: $header-height;
|
|
|
|
padding-top: $gl-padding * 2;
|
2015-01-14 21:42:25 -05:00
|
|
|
}
|
2015-08-26 05:51:28 -04:00
|
|
|
|
|
|
|
.container-limited {
|
|
|
|
max-width: $fixed-layout-width;
|
2016-11-30 15:37:54 -05:00
|
|
|
|
|
|
|
&.limit-container-width {
|
|
|
|
max-width: $limited-layout-width;
|
|
|
|
}
|
2017-06-12 07:47:46 -04:00
|
|
|
|
|
|
|
&.limit-container-width-sm {
|
2017-06-23 06:33:47 -04:00
|
|
|
max-width: $limited-layout-width-sm;
|
2017-06-12 07:47:46 -04:00
|
|
|
}
|
2015-08-26 05:51:28 -04:00
|
|
|
}
|
2016-10-18 13:03:10 -04:00
|
|
|
|
2016-12-16 15:30:28 -05:00
|
|
|
.alert-wrapper {
|
|
|
|
.alert {
|
|
|
|
margin-bottom: 0;
|
2016-12-20 18:21:02 -05:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: $gl-padding;
|
|
|
|
}
|
2016-12-16 15:30:28 -05:00
|
|
|
}
|
2016-12-16 15:38:01 -05:00
|
|
|
|
2017-01-03 14:13:47 -05:00
|
|
|
.alert-link-group {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Center alert text and alert action links on smaller screens */
|
|
|
|
@media (max-width: $screen-sm-max) {
|
|
|
|
.alert {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-link-group {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 15:38:01 -05:00
|
|
|
/* Stripe the background colors so that adjacent alert-warnings are distinct from one another */
|
|
|
|
.alert-warning {
|
|
|
|
transition: background-color 0.15s, border-color 0.15s;
|
2017-03-23 12:04:25 -04:00
|
|
|
background-color: $orange-500;
|
|
|
|
border-color: $orange-500;
|
2016-12-16 15:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-warning + .alert-warning {
|
2017-03-23 12:04:25 -04:00
|
|
|
background-color: $orange-600;
|
|
|
|
border-color: $orange-600;
|
2016-12-16 15:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-warning + .alert-warning + .alert-warning {
|
2017-03-23 12:04:25 -04:00
|
|
|
background-color: $orange-700;
|
|
|
|
border-color: $orange-700;
|
2016-12-16 15:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-warning + .alert-warning + .alert-warning + .alert-warning {
|
2017-03-23 12:04:25 -04:00
|
|
|
background-color: $orange-800;
|
|
|
|
border-color: $orange-800;
|
2016-12-16 15:38:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-warning:only-of-type {
|
2017-03-23 12:04:25 -04:00
|
|
|
background-color: $orange-500;
|
|
|
|
border-color: $orange-500;
|
2016-12-16 15:38:01 -05:00
|
|
|
}
|
2016-12-16 15:30:28 -05:00
|
|
|
}
|
|
|
|
|
2017-08-02 19:13:47 -04:00
|
|
|
.page-with-sidebar > .content-wrapper {
|
|
|
|
min-height: calc(100vh - #{$header-height});
|
2016-10-18 13:03:10 -04:00
|
|
|
}
|
2017-07-18 08:00:55 -04:00
|
|
|
|
2017-07-31 04:07:51 -04:00
|
|
|
.with-performance-bar .page-with-sidebar {
|
|
|
|
margin-top: $header-height + $performance-bar-height;
|
|
|
|
}
|
2017-08-06 12:44:18 -04:00
|
|
|
|
2017-08-07 17:56:07 -04:00
|
|
|
.vertical-center {
|
|
|
|
min-height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2017-08-07 22:15:45 -04:00
|
|
|
}
|