Add glow image
parent
9efbcd3f77
commit
0f1d1a673f
|
@ -1,11 +1,11 @@
|
||||||
.DocSearch-Button {
|
.DocSearch-Button {
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
width: 24rem;
|
border: 1px solid var(--surface-border);
|
||||||
|
height: 2rem;
|
||||||
|
background-color: var(--surface-card);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
transition: border-color .3s;
|
transition: border-color .3s;
|
||||||
border: 1px solid transparent;
|
padding: 0 .5rem;
|
||||||
height: 2.5rem;
|
|
||||||
padding: 0 .75rem;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: var(--primary-color);
|
border-color: var(--primary-color);
|
||||||
|
@ -17,8 +17,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.DocSearch-Search-Icon {
|
.DocSearch-Search-Icon {
|
||||||
width: 1.25rem;
|
width: 1rem;
|
||||||
height: 1.25rem;
|
height: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.DocSearch-Button-Keys {
|
.DocSearch-Button-Keys {
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
background: var(--docsearch-key-gradient);
|
background: transparent;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
justify-content: end;
|
justify-content: end;
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 13.5px;
|
line-height: normal;
|
||||||
svg{
|
svg{
|
||||||
height: 14.5px;
|
height: 14.5px;
|
||||||
}
|
}
|
||||||
|
@ -126,6 +126,12 @@
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.DocSearch-Button-Placeholder {
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: .875rem;
|
||||||
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--docsearch-searchbox-focus-background: var(--surface-card);
|
--docsearch-searchbox-focus-background: var(--surface-card);
|
||||||
--docsearch-text-color: var(--text-color);
|
--docsearch-text-color: var(--text-color);
|
||||||
|
@ -144,19 +150,3 @@
|
||||||
--docsearch-hit-active-color: var(--primary-color-text);
|
--docsearch-hit-active-color: var(--primary-color-text);
|
||||||
}
|
}
|
||||||
|
|
||||||
.DocSearch-Button-Placeholder {
|
|
||||||
text-align: center;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-light {
|
|
||||||
.DocSearch-Button {
|
|
||||||
background: #edf0f3;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-light {
|
|
||||||
.DocSearch-Dark {
|
|
||||||
background: var(--surface-100);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
.landing, .layout-wrapper {
|
||||||
|
&:before {
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 236px;
|
||||||
|
content: "";
|
||||||
|
display: block;
|
||||||
|
z-index: 0;
|
||||||
|
background-image: var(--glow-image);
|
||||||
|
position: fixed;
|
||||||
|
background-position: top;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,7 +30,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#docsearch {
|
#docsearch {
|
||||||
margin-left: auto;
|
|
||||||
margin-right: .5rem;
|
margin-right: .5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
width: calc(100% - var(--scrollbar-width, 0px));
|
width: calc(100% - var(--scrollbar-width, 0px));
|
||||||
z-index: 1100;
|
z-index: 1100;
|
||||||
transition: background-color 1s;
|
transition: background-color 1s;
|
||||||
border-bottom: 1px solid var(--surface-border);
|
border-bottom: 1px solid var(--topbar-border);
|
||||||
|
|
||||||
&.layout-topbar-sticky {
|
&.layout-topbar-sticky {
|
||||||
backdrop-filter: blur(8px);
|
backdrop-filter: blur(8px);
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
.layout-dark {
|
.layout-dark {
|
||||||
|
--glow-image: url(https://www.primefaces.org/cdn/primevue/images/layout/top-pattern-light.png);
|
||||||
|
--topbar-border: var(--surface-border);
|
||||||
--home-highlight-color:#10b981;
|
--home-highlight-color:#10b981;
|
||||||
--home-highlight-darker-color:#059669;
|
--home-highlight-darker-color:#059669;
|
||||||
--home-highlight-fore-color:#ffffff;
|
--home-highlight-fore-color:#ffffff;
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
.layout-light {
|
.layout-light {
|
||||||
|
--glow-image: url(https://www.primefaces.org/cdn/primevue/images/layout/top-pattern-light.png);
|
||||||
|
--topbar-border: rgba(0,0,0,.05);
|
||||||
--home-highlight-color:#10b981;
|
--home-highlight-color:#10b981;
|
||||||
--home-highlight-darker-color:#059669;
|
--home-highlight-darker-color:#059669;
|
||||||
--home-highlight-fore-color:#ffffff;
|
--home-highlight-fore-color:#ffffff;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
@charset 'UTF-8';
|
@charset 'UTF-8';
|
||||||
|
|
||||||
@import './_core';
|
@import './_core';
|
||||||
|
@import './_glow';
|
||||||
@import './_topbar';
|
@import './_topbar';
|
||||||
@import './_sidebar';
|
@import './_sidebar';
|
||||||
@import './_content';
|
@import './_content';
|
||||||
|
|
|
@ -59,9 +59,11 @@
|
||||||
</svg>
|
</svg>
|
||||||
</PrimeVueNuxtLink>
|
</PrimeVueNuxtLink>
|
||||||
</div>
|
</div>
|
||||||
<div id="docsearch"></div>
|
|
||||||
|
|
||||||
<ul class="flex list-none m-0 p-0 gap-2 align-items-center">
|
<ul class="flex list-none m-0 p-0 gap-2 align-items-center">
|
||||||
|
<li>
|
||||||
|
<div id="docsearch"></div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href="https://github.com/primefaces/primevue"
|
href="https://github.com/primefaces/primevue"
|
||||||
|
|
Loading…
Reference in New Issue