Skip to content

Instantly share code, notes, and snippets.

@webflo-dev
Forked from lorens-osman-dev/vscodeCss.css
Created January 13, 2025 09:22
Show Gist options
  • Save webflo-dev/96569f7b52013d11e8e753a8a11a4af2 to your computer and use it in GitHub Desktop.
Save webflo-dev/96569f7b52013d11e8e753a8a11a4af2 to your computer and use it in GitHub Desktop.
/* selected file list item */
.part.sidebar.right.pane-composite-part {
border: none !important;
}
.monaco-workbench .part > .content {
width: 100% !important;
}
/* comments */
/* //: */
div.view-line .ced-1-TextEditorDecorationType3-1 {
font-style: normal !important;
position: relative;
color: #414e58 !important ;
border: 1px solid #414e58;
padding-right: 10px;
}
/* //_ */
div.view-line .ced-1-TextEditorDecorationType4-1 {
font-style: normal !important;
position: relative;
color: #080c13 !important ;
background-color: #414e58;
border: 1px solid #414e58;
padding-right: 10px;
}
/* //= */
div.view-line .ced-1-TextEditorDecorationType5-1 {
font-style: normal !important;
position: relative;
color: #414e58 !important ;
}
div.view-line .ced-1-TextEditorDecorationType5-1:last-child::after {
content: "";
display: block;
position: absolute;
height: 1px;
width: 175px;
background-color: #414e58;
top: 50%;
right: -175px;
transform: translate(10px, -50%);
}
/* //# */
div.view-line .ced-1-TextEditorDecorationType9-1 {
font-style: normal !important;
position: relative;
color: #414e58 !important ;
}
div.view-line .ced-1-TextEditorDecorationType9-1:last-child::after {
content: "";
display: block;
position: absolute;
height: 1px;
width: 75px;
background-color: #414e58;
top: 50%;
right: -75px;
transform: translate(10px, -50%);
}
/* //. */
div.view-line .ced-1-TextEditorDecorationType10-1 {
font-style: normal !important;
position: relative;
color: #dedede !important ;
background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
background: linear-gradient(to right, #00f26199, #0576e6a2);
color: transparent;
}
/* //1 */
div.view-line:has(.ced-1-TextEditorDecorationType11-1) {
overflow: hidden;
}
div.view-line .ced-1-TextEditorDecorationType11-1 {
font-style: normal !important;
position: relative;
color: #e76d3a !important ;
background-color: #25282f;
border: 1px solid #25282f;
padding-right: 10px;
/* border-top-left-radius: 6px;
border-bottom-left-radius: 6px; */
}
div.view-line .ced-1-TextEditorDecorationType11-1:last-child::after {
content: "";
display: block;
position: absolute;
height: 18px;
width: 8px;
background-color: #e76d3a;
top: 50%;
right: -6px;
transform: translate(0, -50%);
}
/* //2 */
div.view-line .ced-1-TextEditorDecorationType12-1 {
font-style: normal !important;
position: relative;
color: #ba2c5c !important ;
background-color: #25282f;
border: 1px solid #25282f;
padding-right: 10px;
border-radius: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment