Browse Source

Removes unused action styles

main
Keith Daulton 1 year ago
parent
commit
40ccb25861
2 changed files with 0 additions and 57 deletions
  1. +0
    -30
      src/webviews/apps/commitDetails/commitDetails.scss
  2. +0
    -27
      src/webviews/apps/plus/patchDetails/patchDetails.scss

+ 0
- 30
src/webviews/apps/commitDetails/commitDetails.scss View File

@ -1,31 +1 @@
@use '../shared/styles/details-base';
// TODO: "change-list__action" should be a separate component
.change-list__action {
box-sizing: border-box;
display: inline-flex;
justify-content: center;
align-items: center;
width: 2rem;
height: 2rem;
border-radius: 0.25em;
color: inherit;
padding: 2px;
vertical-align: text-bottom;
text-decoration: none;
}
.change-list__action:focus {
outline: 1px solid var(--vscode-focusBorder);
outline-offset: -1px;
}
.change-list__action:hover {
color: inherit;
background-color: var(--vscode-toolbar-hoverBackground);
text-decoration: none;
}
.change-list__action:active {
background-color: var(--vscode-toolbar-activeBackground);
}
.change-list__action.is-disabled {
opacity: 0.5;
}

+ 0
- 27
src/webviews/apps/plus/patchDetails/patchDetails.scss View File

@ -33,33 +33,6 @@ gk-menu-item {
margin-bottom: 0.52rem;
}
// TODO: "change-list__action" should be a separate component
.change-list__action {
box-sizing: border-box;
display: inline-flex;
justify-content: center;
align-items: center;
width: 2rem;
height: 2rem;
border-radius: 0.25em;
color: inherit;
padding: 2px;
vertical-align: text-bottom;
text-decoration: none;
}
.change-list__action:focus {
outline: 1px solid var(--vscode-focusBorder);
outline-offset: -1px;
}
.change-list__action:hover {
color: inherit;
background-color: var(--vscode-toolbar-hoverBackground);
text-decoration: none;
}
.change-list__action:active {
background-color: var(--vscode-toolbar-activeBackground);
}
.patch-base {
display: flex;
flex-direction: row;

Loading…
Cancel
Save