Skip to content

Commit

Permalink
Merge pull request #31 from rhcs-dashboard/branding-4.0-buttons
Browse files Browse the repository at this point in the history
Adds alignment and branding to primary buttons
  • Loading branch information
Kanika Murarka authored Jan 17, 2019
2 parents 197de28 + 4c5a846 commit 606d9c0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@import '../../../../branding/branding';

button.disabled {
background-color: $color-patternfly-button-background !important;
opacity: 0.65;
border-color: $color-patternfly-button-border !important;
color: $color-disabled-button !important;
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
border-bottom: none;
padding: 5px;
position: relative;
text-align: left;
.oadatatableactions {
display: inline-block;
}
Expand Down
7 changes: 7 additions & 0 deletions src/pybind/mgr/dashboard/frontend/src/branding/branding.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
@import '../defaults';

$color-copper-black: #4d5258;
$color-sea-blue: #0088ce;
$color-dark-sea-blue: #00659c;

/* Login Screen */
$color-languages: $color-black;
$color-selected-language: $color-copper-black;

/* Buttons */
$color-patternfly-button-background: $color-sea-blue;
$color-patternfly-button-border: $color-dark-sea-blue;
$color-disabled-button: $color-white-gray;

0 comments on commit 606d9c0

Please sign in to comment.