This commit is contained in:
lutinglt
2025-06-10 17:34:09 +08:00
parent 8e1a01e444
commit 2207d56a4e
11 changed files with 222 additions and 45 deletions

View File

@@ -97,12 +97,8 @@
// 手动工作流下拉列表
#runWorkflowDispatchForm {
// 分支选择按钮
.ui.dropdown.button.branch-selector-dropdown {
padding: 8px 24px 8px 8px;
svg.octicon-git-branch {
margin-right: 6px;
}
.ui.dropdown.button.branch-selector-dropdown .svg.octicon-git-branch {
margin-right: 6px;
}
}

View File

@@ -24,7 +24,6 @@
svg {
color: #9198a1;
margin-right: 6px;
}
}
@@ -101,7 +100,7 @@
background: #f78166;
border-radius: 0.375rem;
bottom: calc(50% - 1.8rem);
content: '';
content: "";
height: 2px;
position: absolute;
right: 50%;
@@ -199,7 +198,7 @@
}
}
.ui.sha.label {
.ui.label {
display: none;
}
}
@@ -290,12 +289,14 @@
}
.flex-item {
padding: 10px 0 0 0;
.flex-item-title {
margin-top: 2px;
}
.flex-item-body {
padding: 8px 0;
padding: 8px 0 0 0;
.repo-description {
color: #f0f6fc;

View File

@@ -1,5 +1,6 @@
// Made by Luting ^-^
.ui.button {
min-height: unset;
font-weight: 500;
padding: 9px 16px;
}

View File

@@ -72,7 +72,7 @@
.item {
display: block;
padding: 11px 16px;
padding: 8px 10px;
text-align: left;
text-transform: none;
line-height: 1em;
@@ -98,6 +98,10 @@
overflow: hidden auto;
box-shadow: 0px 0px 0px 0.5px #30363d, 0px 6px 12px -3px #01040966, 0px 6px 18px 0px #01040966;
animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running overlay-appear;
>.item {
padding: 8px 10px !important;
}
}
.ui.dropdown .menu,

View File

@@ -45,14 +45,12 @@ span,
color: var(--color-blue);
background-color: #388bfd33;
border: 1px solid var(--color-blue);
border-radius: 25px;
}
&.basic.primary.label {
color: var(--color-blue);
background-color: #388bfd33 !important;
border-color: #1f6feb !important;
border-radius: 25px !important;
}
// 发布&Runner 状态标签
@@ -103,7 +101,7 @@ a.ui.ui.ui {
}
}
&:not(.basic, .sha) {
&:not(.basic, .sha, .commit-id-short, .commit-sign-badge) {
color: var(--color-blue);
background: #121d2f;
border-radius: 25px;
@@ -139,7 +137,7 @@ a.ui.ui.ui {
opacity: 1;
}
}
a.ui.label:not(.basic, .sha):hover {
a.ui.label:not(.basic, .sha, .commit-id-short, .commit-sign-badge):hover {
color: #fff;
background: #1f6feb;
border-radius: 25px;
@@ -148,35 +146,9 @@ a.ui.label:not(.basic, .sha):hover {
border: 0 !important;
}
.repository #commits-table .commit-list .ui.label.sha {
.repository #commits-table .commit-list .sha .ui.label {
line-height: 18px;
margin-top: 0.375rem;
margin-bottom: 0.375rem;
margin-left: -2px;
}
.repository {
#commits-table td.sha,
#repo-files-table,
#repo-file-commit-box,
#rev-list,
.timeline-item.commits-list .singular-commit {
.sha.label {
.detail.icon {
border: 0;
background: unset;
}
&.isSigned {
&.isWarning,
&.isVerified,
&.isVerifiedUntrusted,
&.isVerifiedUnmatched {
.detail.icon {
border: 0;
background: unset;
}
}
}
}
}
}

View File

@@ -7,3 +7,9 @@
color: #3fb950 !important;
}
}
.svg {
&.octicon-issue-closed {
color: #ab7df8 !important;
}
}