mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-02-02 11:32:30 -06:00
update version and final polish
This commit is contained in:
parent
20546b9dd4
commit
85e7073cb9
5 changed files with 4 additions and 9 deletions
|
@ -3256,11 +3256,6 @@ select {
|
||||||
background-color: rgba(var(--color-neutral-300), var(--tw-bg-opacity));
|
background-color: rgba(var(--color-neutral-300), var(--tw-bg-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-neutral-400 {
|
|
||||||
--tw-bg-opacity: 1;
|
|
||||||
background-color: rgba(var(--color-neutral-400), var(--tw-bg-opacity));
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-neutral-500\/50 {
|
.bg-neutral-500\/50 {
|
||||||
background-color: rgba(var(--color-neutral-500), 0.5);
|
background-color: rgba(var(--color-neutral-500), 0.5);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ if (typeof auth !== 'undefined') {
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleLoaders(node){
|
function toggleLoaders(node){
|
||||||
var classesString = "animate-pulse inline-block text-transparent max-h-3 rounded-full mt-[-2px] align-middle bg-neutral-400 dark:bg-neutral-400"
|
var classesString = node.className;
|
||||||
var classes = classesString.split(" ");
|
var classes = classesString.split(" ");
|
||||||
for(var i in classes){
|
for(var i in classes){
|
||||||
node.classList.toggle(classes[i])
|
node.classList.toggle(classes[i])
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<span id="likes_{{ .File.Path }}"
|
<span id="likes_{{ .File.Path }}"
|
||||||
{{ end }}
|
{{ end }}
|
||||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full mt-[-2px] align-middle bg-neutral-400 dark:bg-neutral-400" title="likes">loading</span>
|
class="animate-pulse inline-block text-transparent max-h-3 rounded-full mt-[-2px] align-middle bg-neutral-300 dark:bg-neutral-400" title="likes">loading</span>
|
||||||
<span class="inline-block align-text-bottom">{{ partial "icon.html" "heart" }}</span>
|
<span class="inline-block align-text-bottom">{{ partial "icon.html" "heart" }}</span>
|
||||||
</span>
|
</span>
|
||||||
{{- /* Trim EOF */ -}}
|
{{- /* Trim EOF */ -}}
|
|
@ -6,7 +6,7 @@
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<span id="views_{{ .File.Path }}"
|
<span id="views_{{ .File.Path }}"
|
||||||
{{ end }}
|
{{ end }}
|
||||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full mt-[-2px] align-middle bg-neutral-400 dark:bg-neutral-400" title="views">loading</span>
|
class="animate-pulse inline-block text-transparent max-h-3 rounded-full mt-[-2px] align-middle bg-neutral-300 dark:bg-neutral-400" title="views">loading</span>
|
||||||
<span class="inline-block align-text-bottom">{{ partial "icon.html" "eye" }}</span>
|
<span class="inline-block align-text-bottom">{{ partial "icon.html" "eye" }}</span>
|
||||||
</span>
|
</span>
|
||||||
{{- /* Trim EOF */ -}}
|
{{- /* Trim EOF */ -}}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hugo-blowfish-theme",
|
"name": "hugo-blowfish-theme",
|
||||||
"version": "2.46.0",
|
"version": "2.47.0",
|
||||||
"description": "Blowfish theme for Hugo",
|
"description": "Blowfish theme for Hugo",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"fullinstall": "npm run preinstall && npm install && npm run postinstall",
|
"fullinstall": "npm run preinstall && npm install && npm run postinstall",
|
||||||
|
|
Loading…
Reference in a new issue