Skip to content

Commit

Permalink
work for #6061 Wrong icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Nov 14, 2024
1 parent 03f5ae2 commit 2970e74
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
.svc-logo-image-placeholder {
@include ctrLargeFont;
color: $foreground-light;
opacity: 0.25;
white-space: nowrap;
word-break: keep-all;
padding: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class TabControlModel extends Base {
private updateExpandCollapseAction() {
this.expandCollapseAction.iconName = this.sidePanel.visible ? "icon-collapse-panel" : "icon-expand-panel";
this.expandCollapseAction.css = this.sidePanel.visible ? "svd-grid-hide" : "svd-grid-expand";
this.expandCollapseAction.locTitleName = this.sidePanel.visible ? "ed.hidePanel" : "ed.showPanel";
this.expandCollapseAction.locTooltipName = this.sidePanel.visible ? "ed.hidePanel" : "ed.showPanel";
}

private createToggleAction() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

.spg-boolean-switch__button--checked {
background: var(--ctr-toggle-button-background-color-checked, #19b394);
box-shadow: none;

.spg-boolean-switch__thumb--left {
background: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
.sd-body,
.sl-body {
min-width: calcSize(78);
padding: 0;
}
}

Expand Down

0 comments on commit 2970e74

Please sign in to comment.