-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bba90ef
commit 910d1c7
Showing
6 changed files
with
2,148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* git 待提交数量徽章样式 */ | ||
.activitybar > .content :not(.monaco-menu) > .monaco-action-bar .badge .badge-content { | ||
background-image: linear-gradient(45deg, #d44a8e, #ffcb99); | ||
border-width: 0 !important; | ||
color: rgb(70 70 70) !important; | ||
} | ||
|
||
/* 选中标签栏上边框 */ | ||
@keyframes tabBorderTopMoveGradient { | ||
from { | ||
background-position: 0%; | ||
} | ||
to { | ||
background-position: 100%; | ||
} | ||
} | ||
.tab.tab-actions-right.sizing-fit.has-icon.tab-border-top.active { | ||
--tab-border-top-color: transparent !important; | ||
position: relative; | ||
} | ||
.tab.tab-actions-right.sizing-fit.has-icon.tab-border-top.active:after { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 2px; | ||
z-index: 1; | ||
background-image: linear-gradient(to right, #eacd61, #ea618e, #3cec85, #61afea); | ||
animation: tabBorderTopMoveGradient 3s infinite alternate; | ||
background-size: 200%; | ||
} | ||
|
||
/* html标签属性 */ | ||
:not(.cursor).mtk7 { | ||
color: #d19a66; | ||
background-image: linear-gradient(45deg, #cb5c4f, #ffcb99); | ||
-webkit-text-fill-color: transparent; | ||
-webkit-background-clip: text; | ||
font-weight: 700; | ||
font-style: italic; | ||
} | ||
|
||
/* html标签 */ | ||
:not(.cursor).mtk9 { | ||
color: #e06c75; | ||
background-image: linear-gradient(45deg, #df3389, #cc9696); | ||
-webkit-text-fill-color: transparent; | ||
-webkit-background-clip: text; | ||
font-weight: 700; | ||
} |
Oops, something went wrong.