Fix text colours on pf info plus others

Some text colours were incorrect.
This commit is contained in:
marjohn56 2018-01-23 22:51:48 +00:00 committed by Franco Fichtner
parent 85755322bc
commit 88ef19b7bd
5 changed files with 15 additions and 12 deletions

View file

@ -81,7 +81,7 @@
.btn,
.dropup > .btn {
> .caret {
border-top-color: #000 !important;
border-top-color: #ddd !important;
}
}
.label {

View file

@ -17,7 +17,9 @@ $gray-dark: lighten(#000, 20%) !default; // #333
$gray: lighten(#000, 33.5%) !default; // #555
//$gray-light: lighten(#000, 46.7%) !default; // #777
$gray-light: #DDd !default; // #777
$gray-lighter: lighten(#000, 10.0%) !default; // #approx #343434
$gray-lighter: lighten(#000, 10.0%) !default; // #333
$whitish-text: #d1d1d1;
$darkgrey: #c8c8c8;
$brand-primary: map-get($colors, orange) !default;
$brand-success: #9BD275 !default;
@ -352,11 +354,11 @@ $navbar-padding-vertical: 15px;
$navbar-collapse-max-height: 340px !default;
$navbar-default-color: map-get($colors, lightgrey) !default;
$navbar-default-bg: map-get($colors, darkgrey) !default;
$navbar-default-bg: map-get($colors, rebelgrey) !default;
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
// Navbar links
$navbar-default-link-color: map-get($colors, lightgrey) !default;
$navbar-default-link-color: map-get($colors, darkgrey) !default;
$navbar-default-link-hover-color: map-get($colors, orange) !default;
$navbar-default-link-hover-bg: transparent !default;
$navbar-default-link-active-color: #aaa !default;
@ -584,9 +586,9 @@ $modal-title-padding: 15px !default;
$modal-title-line-height: $line-height-base !default;
//** Background color of modal content area
$modal-content-bg: #443 !default;
$modal-content-bg: #333 !default;
//** Modal content border color
$modal-content-border-color: rgba(0,0,0,.2) !default;
$modal-content-border-color: rgba(255,255,255,.6) !default;
//** Modal content border color **for IE8**
$modal-content-fallback-border-color: #999 !default;
@ -698,7 +700,7 @@ $panel-border-radius: $border-radius-base !default;
$panel-inner-border: #ddd !default;
$panel-footer-bg: #484848 !default;
$panel-default-text: $gray-dark !default;
$panel-default-text: #c1c1c1 !default;
$panel-default-border: #ddd !default;
$panel-default-heading-bg: #484848 !default;
@ -822,7 +824,7 @@ $kbd-color: #fff !default;
$kbd-bg: #333 !default;
$pre-bg: #484848 !default;
$pre-color: $gray-dark !default;
$pre-color: $whitish-text !default;
$pre-border-color: #ccc !default;
$pre-scrollable-max-height: 340px !default;

File diff suppressed because one or more lines are too long

View file

@ -2,8 +2,9 @@ $colors: (
orange: #EA7105,
lightgrey: #2B2B2B,
lightergrey: #232323,
darkgrey: #C1C1C1,
darkgrey: #C1C1c1,
bordergrey: #E5E5E5,
rebelgrey: #404040,
);
$zindex: (
@ -126,7 +127,7 @@ body{
}
.page-head{
background: map-get($colors, darkgrey);
background: map-get($colors, rebelgrey);
top: 0;
left: 0;
position: fixed;

View file

@ -1325,7 +1325,7 @@ pre {
line-height: 1.428571429;
word-break: break-all;
word-wrap: break-word;
color: #333333;
color: #d1d1d1;
background-color: #484848;
border: 1px solid #ccc;
border-radius: 3px; }