This is an automated email from the ASF dual-hosted git repository. peacewong pushed a commit to branch dev in repository https://gitbox.apache.org/repos/asf/incubator-linkis-website.git
commit 673cfe7892e6c3dd03dab81499effb7f2df6db60 Author: lucaszhu <[email protected]> AuthorDate: Mon Oct 18 15:32:19 2021 +0800 UPDATE: 优化细节 --- src/pages/download.vue | 4 ++-- src/pages/team/team.vue | 10 +++++----- src/pages/team/teamdata_en.js | 3 +-- src/pages/team/teamdata_zh.js | 3 +-- src/style/base.less | 7 +++++++ 5 files changed, 16 insertions(+), 11 deletions(-) diff --git a/src/pages/download.vue b/src/pages/download.vue index 025cbdd..34a4aa6 100644 --- a/src/pages/download.vue +++ b/src/pages/download.vue @@ -1,7 +1,7 @@ <template> <div class="ctn-block normal-page download-page"> - <h3 class="team-title">Download</h3> - <p class="team-desc">Use the links below to download the Apache Linkis (Incubating) Releases. See all Linkis releases in <a class="desc-link" href="">Github release page</a></p> + <h3 class="normal-title">Download</h3> + <p class="normal-desc">Use the links below to download the Apache Linkis (Incubating) Releases. See all Linkis releases in <a class="desc-link" href="">Github release page</a></p> <ul class="download-list"> <li class="download-item"> <h3 class="item-title"><span>Linkis-1.0.2</span><span><span class="release-date">Release Date: </span>2021-9-2</span></h3> diff --git a/src/pages/team/team.vue b/src/pages/team/team.vue index b1286b6..c64f1d2 100644 --- a/src/pages/team/team.vue +++ b/src/pages/team/team.vue @@ -1,7 +1,7 @@ <template> <div class="ctn-block normal-page team-page"> - <h3 class="team-title">PMC</h3> - <p class="team-desc">{{jsonData.info.desc}}</p> + <h3 class="normal-title">PMC</h3> + <p class="normal-desc" v-html="jsonData.info.desc"></p> <ul class="character-list"> <li v-for="(item,index) in jsonData.list" :key="index" class="character-item text-center"> <img class="character-avatar" :src="item.avatarUrl" :alt="item.name"/> @@ -10,9 +10,9 @@ </div> </li> </ul> - <p class="team-desc" v-html="jsonData.info.tip"></p> - <!-- <h3 class="team-title">Contributors</h3> - <p class="team-desc">Use the links below to download the Apache Linkis (Incubating) Releases. See all Linkis releases in Github release page.</p> + <p class="normal-desc" v-html="jsonData.info.tip"></p> + <!-- <h3 class="normal-title">Contributors</h3> + <p class="normal-desc">Use the links below to download the Apache Linkis (Incubating) Releases. See all Linkis releases in Github release page.</p> ]<ul class="contributor-list"> <li class="contributor-item">apache/apisix-go-plugin-runner</li> </ul>--> diff --git a/src/pages/team/teamdata_en.js b/src/pages/team/teamdata_en.js index e61ddb0..c596640 100644 --- a/src/pages/team/teamdata_en.js +++ b/src/pages/team/teamdata_en.js @@ -1,7 +1,6 @@ const data = { info: { - desc: "The Linkis team is comprised of Members and Contributors. Members have direct access to the source of Linkis project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. All contributions to Linkis are greatly appreciated, whether for trivial cleanups, big new features or other material rewards.", - tip: "If you want to contribute, you can go directly to the <a href=\"https://github.com/apache/incubator-linkis/\" target=\"_blank\" rel=\"noopener noreferrer\">Apache Linkis</a> and fork it." + desc: "The Linkis team is comprised of Members and Contributors. Members have direct access to the source of Linkis project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. All contributions to Linkis are greatly appreciated, whether for trivial cleanups, big new features or other material rewards.<br>If you want to contribute, you can go direct [...] }, list: [ { diff --git a/src/pages/team/teamdata_zh.js b/src/pages/team/teamdata_zh.js index 75a96a5..c14dd7a 100644 --- a/src/pages/team/teamdata_zh.js +++ b/src/pages/team/teamdata_zh.js @@ -1,7 +1,6 @@ const data = { info: { - desc: "Linkis 团队由成员和贡献者组成。 成员可以直接访问 Linkis 项目的源代码并积极开发代码库。 贡献者通过提交补丁和向成员提供建议来改进项目。 项目的贡献者数量不限。 非常感谢对 Linkis 的所有贡献,无论是琐碎的修改或清理、重大的新特性新功能,还是其他的物质奖励。", - tip: '如果你想参与贡献,可以直接去<a href="https://github.com/apache/incubator-linkis" target="_blank" rel="noopener noreferrer" >Apache Linkis</a> 并fork.' + desc: "Linkis 团队由成员和贡献者组成。 成员可以直接访问 Linkis 项目的源代码并积极开发代码库。 贡献者通过提交补丁和向成员提供建议来改进项目。 项目的贡献者数量不限。 非常感谢对 Linkis 的所有贡献,无论是琐碎的修改或清理、重大的新特性新功能,还是其他的物质奖励。<br>如果你想参与贡献,可以直接去<a class=\"link\" href=\"https://github.com/apache/incubator-linkis\" target=\"_blank\" rel=\"noopener noreferrer\" >Apache Linkis</a> 并fork." }, list: [ { diff --git a/src/style/base.less b/src/style/base.less index 7e6cd4c..dd3f237 100644 --- a/src/style/base.less +++ b/src/style/base.less @@ -135,5 +135,12 @@ a:visited { .normal-desc{ color: @enhance-color; font-weight: 400; + .link{ + color: @active-color; + text-decoration: underline; + &:hover{ + text-decoration: none; + } + } } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
