Skip to content

Commit

Permalink
为信息框添加图标
Browse files Browse the repository at this point in the history
  • Loading branch information
fr1g committed Apr 18, 2024
1 parent 06cfb39 commit aabe457
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions .vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,39 @@ p.custom-block-title{
margin-top: 0 !important;
}

.tip>.custom-block-title::before{
content: '\e8fb';
font-weight: bolder;
transform: translateY(1.5px) scale(78%);
margin-right: 1.5px;
padding: .5px;
display: inline-block;
}
.info>.custom-block-title::before{
content: '\e946';
font-weight: bolder;
transform: translateY(2px);
margin-right: 2px;
padding: .5px;
display: inline-block;
}
.warning>.custom-block-title::before{
content: '\e7ba';
font-weight: bolder;
transform: translateY(1.5px);
margin-right: 1.5px;
padding: .5px;
display: inline-block;
}
.danger>.custom-block-title::before{
content: '\e894';
font-weight: bolder;
transform: translateY(2px);
margin-right: 1.5px;
padding: .5px;
display: inline-block;
}

*{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'ms-segoe-fluent' !important;
}
Expand Down
6 changes: 3 additions & 3 deletions zhCN/lxguide/settings/special/check-network.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@ LauncherX 在“**网络–>网络连接测试**”中准备了一套便捷的

::: info

###### (服务稳定)延迟:???ms [超时或出错?次]
**(服务稳定)延迟:???ms [超时或出错?次]**

这意味着您可以正常访问该服务,但是具体效果仍然视网络性能而定。

:::

::: warning

###### 服务出现波动,可能会出现暂时性的服务中断,或是由于您本地的网络问题导致丢包严重。
**服务出现波动,可能会出现暂时性的服务中断,或是由于您本地的网络问题导致丢包严重。**

这意味着您有可能会无法访问该服务。如果您无法进一步优化网络环境,则请多一些重试的耐心。

:::

::: danger

###### 服务出错,目前已停止提供服务,或是由于您本地网络的原因导致无法成功与服务器通讯。
**服务出错,目前已停止提供服务,或是由于您本地网络的原因导致无法成功与服务器通讯。**

在测试中许可的重试机会次数范围内没有一次是成功连接上该服务的,这意味着如果您必须使用该服务的话,您将必须为此优化您的网络连接。

Expand Down

0 comments on commit aabe457

Please sign in to comment.