Skip to content

Commit

Permalink
Adds branding to progress bar
Browse files Browse the repository at this point in the history
Signed-off-by: Kanika Murarka <[email protected]>
  • Loading branch information
Kanika Murarka committed Jan 28, 2019
1 parent fd5d49d commit 7de63e1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@import '../../../../branding/branding';

.progress-bar {
background-color: $color-patternfly-progressbar !important;
-webkit-box-shadow: $shadow-patternfly-progressbar;
box-shadow: $shadow-patternfly-progressbar;
}

.progress-bar-info {
background-color: $color-patternfly-progressinfo !important;
}
6 changes: 6 additions & 0 deletions src/pybind/mgr/dashboard/frontend/src/branding/branding.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
$color-copper-black: #4d5258;
$color-sea-blue: #0088ce;
$color-dark-sea-blue: #00659c;
$color-patternfly-blue: #39a5dc;

/* Navigation */
$color-branding-nav-hover: linear-gradient(to bottom, #72757a 0, #64686c 100%);
Expand All @@ -15,3 +16,8 @@ $color-selected-language: $color-copper-black;
$color-patternfly-button-background: $color-sea-blue;
$color-patternfly-button-border: $color-dark-sea-blue;
$color-disabled-button: $color-white-gray;

/* Progress Bar */
$color-patternfly-progressbar: $color-grad-gray;
$shadow-patternfly-progressbar: inset 0 0 1px rgba(3, 3, 3, 0.25);
$color-patternfly-progressinfo: $color-patternfly-blue;

0 comments on commit 7de63e1

Please sign in to comment.