Add download item title links
This commit is contained in:
parent
7c0ef17513
commit
f9ea7303be
2 changed files with 17 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="download-beta-item">
|
||||
<div class="code">{{ code }}</div>
|
||||
<a class="code" :href="github" target="_blank">{{ code }}</a>
|
||||
<div class="released" :title="releasedString">{{ releasedRelativeString }}</div>
|
||||
<div class="buttons">
|
||||
<a class="github-button" :href="github" target="_blank" title="GitHub">
|
||||
|
@ -77,6 +77,11 @@ export default {
|
|||
font-family: 'Roboto', sans-serif;
|
||||
font-size: 24px;
|
||||
margin-bottom: 2px;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
.released {
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
<template>
|
||||
<div class="download-dev-item">
|
||||
<div class="title">{{ title }} <span class="number">#{{ number }}</span></div>
|
||||
<a
|
||||
class="title"
|
||||
:href="github"
|
||||
target="_blank">
|
||||
{{ title }} <span class="number">#{{ number }}</span>
|
||||
</a>
|
||||
<div class="subheader">
|
||||
<span class="build-number">{{ build }}</span>
|
||||
<span class="released" :title="releasedString">{{ releasedRelativeString }}</span>
|
||||
|
@ -92,6 +97,11 @@ export default {
|
|||
font-size: 20px;
|
||||
margin-bottom: 8px;
|
||||
line-height: 24px;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.number {
|
||||
color: #0009;
|
||||
|
|
Loading…
Reference in a new issue