0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-15 09:24:11 +00:00

Simplify jumbotron CSS

This commit is contained in:
Pēteris Caune 2021-08-18 16:36:09 +03:00
parent a2fe5653c0
commit eb25cde241
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
4 changed files with 2 additions and 13 deletions

View file

@ -1,7 +1,3 @@
.jumbotron {
background-color: var(--jumbotron-bg);
}
.btn-default {
color: var(--btn-default-color);
background-color: var(--btn-default-bg);

View file

@ -4089,7 +4089,7 @@ a.badge:focus {
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eeeeee;
background-color: var(--jumbotron-bg);
}
.jumbotron h1,
.jumbotron .h1 {
@ -4100,9 +4100,6 @@ a.badge:focus {
font-size: 21px;
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 3px;

View file

@ -21,10 +21,6 @@
font-weight: 200;
}
> hr {
border-top-color: darken(@jumbotron-bg, 10%);
}
.container &,
.container-fluid & {
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container

View file

@ -487,7 +487,7 @@
@jumbotron-padding: 30px;
@jumbotron-color: inherit;
@jumbotron-bg: @gray-lighter;
@jumbotron-bg: var(--jumbotron-bg);
@jumbotron-heading-color: inherit;
@jumbotron-font-size: ceil((@font-size-base * 1.5));
@jumbotron-heading-font-size: ceil((@font-size-base * 4.5));