Skip to content

Commit

Permalink
Contrast colors fix for try button and focus selection (#1239)
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrik authored Apr 12, 2021
1 parent 373edf4 commit 1297610
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/themes/designer/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $toolbox-background: #fff;
$toolbox-btn-size: 45px;
$toolbox-btn-padding: 5px;
$toolbox-btn-active-bg: #F9FBFC;
$toolbox-btn-active-border: #96989A;
$toolbox-btn-active-border: #767676;
$toolbox-border-radius: 10px;
$toolbox-padding: 8px;

Expand Down
5 changes: 4 additions & 1 deletion src/themes/website/styles/breadcrumbs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
padding: 0;
margin-bottom: 20px;
list-style: none;
background-color: none
background-color: none;
a {
text-decoration: underline;
}
}

.breadcrumb-item+.breadcrumb-item {
Expand Down
4 changes: 2 additions & 2 deletions src/themes/website/styles/docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,13 @@ operation-console {
border-radius: 4px;
transition-duration: .4s;
height: 30px;
background-color: #218739;
background-color: #128930;
color: white;
cursor: pointer;
white-space: nowrap;

&:hover {
color: #218739;
color: #128930;
background-color: white;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/themes/website/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $z-index-balloon: 9101;

$badge-background-color: #e1e1e1;
$list-item-selected: #def0fe;
$tag-background-color: #797878;
$tag-background-color: #767676;
$icon-font-path: "fonts/";

/* Defaults */
Expand Down

0 comments on commit 1297610

Please sign in to comment.