Skip to content

Commit

Permalink
update version and final polish
Browse files Browse the repository at this point in the history
  • Loading branch information
nunocoracao committed Dec 6, 2023
1 parent 20546b9 commit 85e7073
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions assets/css/compiled/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3256,11 +3256,6 @@ select {
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 {
background-color: rgba(var(--color-neutral-500), 0.5);
}
Expand Down
2 changes: 1 addition & 1 deletion assets/js/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (typeof auth !== 'undefined') {
}

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(" ");
for(var i in classes){
node.classList.toggle(classes[i])
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/meta/likes.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{ else }}
<span id="likes_{{ .File.Path }}"
{{ 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>
{{- /* Trim EOF */ -}}
2 changes: 1 addition & 1 deletion layouts/partials/meta/views.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{{ else }}
<span id="views_{{ .File.Path }}"
{{ 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>
{{- /* Trim EOF */ -}}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hugo-blowfish-theme",
"version": "2.46.0",
"version": "2.47.0",
"description": "Blowfish theme for Hugo",
"scripts": {
"fullinstall": "npm run preinstall && npm install && npm run postinstall",
Expand Down

0 comments on commit 85e7073

Please sign in to comment.