Skip to content

Commit

Permalink
增加更新红点提示
Browse files Browse the repository at this point in the history
优化按钮图标样式
移动端优化
  • Loading branch information
wushuo894 committed Sep 7, 2024
1 parent 1aed9a7 commit ab9e126
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 3 additions & 1 deletion UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
增加更新红点提示

优化按钮图标样式
优化按钮图标样式

移动端优化
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ani.rss</groupId>
<artifactId>ani-rss</artifactId>
<version>1.0.81</version>
<version>1.0.82</version>

<properties>
<maven.compiler.source>11</maven.compiler.source>
Expand Down
13 changes: 12 additions & 1 deletion ui/src/Config.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,11 @@
<div v-if="about.markdownBody" v-html="about.markdownBody"></div>
</div>
</div>
<div v-loading="actionLoading">
<div v-loading="actionLoading" id="menu">
<el-button type="success" v-if="about.update" @click="update" text bg icon="Top">更新</el-button>
<div style="margin: 6px;"></div>
<el-button type="warning" @click="stop(0)" text bg icon="RefreshRight">重启 ani-rss</el-button>
<div style="margin: 6px;"></div>
<el-button type="danger" @click="stop(1)" text bg icon="SwitchButton">关闭 ani-rss</el-button>
</div>
</div>
Expand Down Expand Up @@ -310,3 +312,12 @@ defineExpose({
showConfig
})
</script>


<style>
@media (min-width: 900px) {
#menu > div {
display: inline-block;
}
}
</style>

0 comments on commit ab9e126

Please sign in to comment.