Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 设置页文案修改 & 修复 message 提示颜色覆盖问题 #197

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/pages/inject/WordMark/app.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,13 @@

.link {
color: @link-color;
text-decoration: none;
outline-style: none;

&:visited, &:hover {
color: @link-color;
text-decoration: none;
outline-style: none;
}
}

2 changes: 0 additions & 2 deletions src/pages/setting/shortcut/index.module.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
display: flex;
justify-content: space-between;
color: @text-primary;
padding-bottom: 24px;
border-bottom: 1px solid @border-light-color;

.setting {
margin-left: auto;
Expand Down
7 changes: 0 additions & 7 deletions src/pages/setting/shortcut/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ function Shortcut() {
</div>
</div>
<div className={styles.configCard}>
<div className={styles.h2Title}>{__i18n('侧边栏')}</div>
<div className={styles.body}>
<div className={styles.configItem}>
<div className={styles.desc}>{__i18n('快捷唤起侧边栏')}</div>
Expand All @@ -36,12 +35,6 @@ function Shortcut() {
readonly
/>
</div>
</div>
</div>

<div className={styles.configCard}>
<div className={styles.h2Title}>{__i18n('剪藏方式')}</div>
<div className={styles.body}>
<div className={styles.configItem}>
<div className={styles.desc}>{__i18n('选取剪藏')}</div>
<ShortcutItem defaultShortcut={shortcutMap.selectArea} readonly />
Expand Down
Loading