Compare commits

..

5 Commits

Author SHA1 Message Date
lutinglt
a624d5ff58 提高日志 Hover 亮度 2025-01-10 12:02:10 +08:00
lutinglt
c787dea53e 弹窗添加动画, 优化 Action 的日志动画 2025-01-10 11:46:31 +08:00
lutinglt
e95a272071 添加默认过渡动画 2025-01-10 11:24:31 +08:00
lutinglt
f4ed01f60c 仓库编程语言字体颜色同步 Github 2025-01-09 17:10:43 +08:00
lutinglt
22b690da8f 仓库编程语言字体颜色调整 2025-01-09 16:32:28 +08:00
4 changed files with 23 additions and 5 deletions

5
.github/release.md vendored
View File

@@ -1,3 +1,2 @@
同步 Gitea 版本 1.23.0
工作流状态弹窗添加过渡动画
添加默认过渡动画
弹窗添加动画, 优化 Action 的日志动画

View File

@@ -7,7 +7,7 @@
color: var(--color-text);
&:hover {
color: var(--color-console-fg);
color: #fff;
}
}

View File

@@ -181,3 +181,8 @@
color: #919894;
}
}
// 编程语言仅语言文字颜色
.language-stats-details .item .tw-font-semibold {
color: #f0f6fc;
}

View File

@@ -1,4 +1,16 @@
// Made by Luting ^-^
@keyframes overlay-appear {
0% {
opacity: 0;
transform: translateY(-5%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
input,
textarea,
tr,
@@ -8,7 +20,7 @@ details summary,
#navbar .item,
.header-wrapper .ui.tabular.menu .item,
.job-step-summary,
.job-log-line,
.job-step-logs,
.job-brief-item,
.menu .item,
.page-content.repository .flex-item .flex-item-title a,
@@ -29,6 +41,7 @@ details summary,
.ui.form input[type='time'],
.ui.form input[type='url'],
.ui.label,
.ui.modal,
.ui.selection.dropdown,
.ui.checkbox label:before,
.ui.checkbox input:checked ~ label:before,
@@ -43,4 +56,5 @@ details summary,
.ui.vertical.menu .header.item,
.ui.secondary.menu .item {
transition: 0.2s;
animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running overlay-appear;
}