Scroll to top button not getting themed (#144224)

* updated background-color for scroll to top

* updated colors as per button specs
This commit is contained in:
Karan Kakroo 2022-03-03 00:16:45 +00:00 committed by GitHub
parent 0f6d61a0d3
commit 2cd2f539ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -824,7 +824,7 @@ export class ExtensionEditor extends EditorPane {
height: 40px;
right: 25px;
bottom: 25px;
background-color:#444444;
background-color:var(--vscode-button-background);
border-radius: 50%;
cursor: pointer;
box-shadow: 1px 1px 1px rgba(0,0,0,.25);
@ -835,7 +835,7 @@ export class ExtensionEditor extends EditorPane {
}
#scroll-to-top:hover {
background-color:#007acc;
background-color:var(--vscode-button-hoverBackground);
box-shadow: 2px 2px 2px rgba(0,0,0,.25);
}