Skip to content

Commit fcee623

Browse files
committed
vueconf us banner offline
1 parent 54d0d23 commit fcee623

File tree

3 files changed

+17
-83
lines changed

3 files changed

+17
-83
lines changed

.vitepress/inlined-scripts/restorePreference.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
restore('vue-docs-prefer-composition', 'prefer-composition', true)
99
restore('vue-docs-prefer-sfc', 'prefer-sfc', true)
1010

11-
window.__VUE_BANNER_ID__ = 'vueconf2025'
12-
restore(`vue-docs-banner-${__VUE_BANNER_ID__}`, 'banner-dismissed')
11+
// window.__VUE_BANNER_ID__ = ''
12+
// restore(`vue-docs-banner-${__VUE_BANNER_ID__}`, 'banner-dismissed')
1313
})()

.vitepress/theme/components/Banner.vue

Lines changed: 13 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,16 @@ function dismiss() {
2222

2323
<template>
2424
<div class="banner" v-if="open">
25-
<p class="vt-banner-text">
26-
<span class="vt-text-primary">
27-
Vueconf.US
28-
</span>
29-
<span class="vt-tagline"> · The official Vue.js conf</span>
30-
<span class="vt-place"> · Tampa, USA</span>
31-
<span class="vt-date"> · 19-21 May 2025</span>
32-
<a target="_blank" class="vt-primary-action"
33-
href="https://vueconf.us/?utm_source=vuejs&utm_content=top_banner">
34-
Register
35-
</a>
36-
</p>
25+
<a target="_blank"></a>
3726
<button @click="dismiss">
3827
<VTIconPlus class="close" />
3928
</button>
40-
<p class="vt-banner-text vt-coupon">
41-
<span class="vt-text-primary">Use</span> VUEJSDOCS
42-
<span class="vt-text-primary"> $200 off</span>
43-
</p>
4429
</div>
4530
</template>
4631

4732
<style>
4833
html:not(.banner-dismissed) {
49-
--vt-banner-height: 60px;
34+
--vt-banner-height: 30px;
5035
}
5136
</style>
5237

@@ -65,12 +50,12 @@ html:not(.banner-dismissed) {
6550
font-weight: 600;
6651
color: #fff;
6752
background-color: var(--vt-c-green);
68-
background: #0f172a;
69-
display: flex;
70-
justify-content: center;
71-
align-items: center;
72-
73-
53+
background: linear-gradient(
54+
90deg,
55+
rgba(66, 184, 131, 1) 0%,
56+
rgba(39, 179, 137, 1) 19%,
57+
rgba(100, 126, 255, 1) 100%
58+
);
7459
}
7560
7661
.banner-dismissed .banner {
@@ -85,7 +70,7 @@ button {
8570
position: absolute;
8671
right: 0;
8772
top: 0;
88-
padding: 10px 10px;
73+
padding: 5px;
8974
}
9075
9176
.close {
@@ -94,61 +79,10 @@ button {
9479
fill: #fff;
9580
transform: rotate(45deg);
9681
}
97-
98-
.vt-banner-text {
99-
color: #fff;
100-
font-size: 16px;
101-
}
102-
103-
.vt-text-primary {
104-
color: #75c05e;
105-
}
106-
107-
.vt-primary-action {
108-
background: #75c05e;
109-
color: #121c1a;
110-
padding: 8px 15px;
111-
border-radius: 5px;
112-
font-size: 14px;
113-
text-decoration: none;
114-
margin: 0 10px;
115-
font-weight: bold;
116-
}
117-
118-
.vt-primary-action:hover {
119-
text-decoration: none;
120-
background: #c4d141;
121-
}
122-
123-
@media (max-width: 1280px) {
124-
.banner .vt-banner-text {
125-
font-size: 14px;
126-
}
127-
128-
129-
}
130-
131-
@media (max-width: 780px) {
132-
.vt-tagline {
133-
display: none;
134-
}
135-
.vt-primary-action {
136-
margin: 0 10px;
137-
padding: 5px 5px;
138-
}
139-
140-
.vt-time-now {
141-
display: none;
142-
}
143-
}
144-
145-
@media (max-width: 560px) {
146-
147-
.vt-place {
82+
/*
83+
@media (max-width: 720px) {
84+
a > span {
14885
display: none;
14986
}
150-
.vt-date {
151-
display: none;
152-
}
153-
}
87+
} */
15488
</style>

.vitepress/theme/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import {
1111
import SponsorsAside from './components/SponsorsAside.vue'
1212
import VueSchoolLink from './components/VueSchoolLink.vue'
1313
import ScrimbaLink from './components/ScrimbaLink.vue'
14-
import Banner from './components/Banner.vue'
14+
// import Banner from './components/Banner.vue'
1515
// import TextAd from './components/TextAd.vue'
1616

1717
export default Object.assign({}, VPTheme, {
1818
Layout: () => {
1919
// @ts-ignore
2020
return h(VPTheme.Layout, null, {
21-
banner: () => h(Banner),
21+
// banner: () => h(Banner),
2222
'sidebar-top': () => h(PreferenceSwitch),
2323
'sidebar-bottom': () => h(SecurityUpdateBtn),
2424
'aside-mid': () => h(SponsorsAside)

0 commit comments

Comments
 (0)