diff --git a/docs/tips-and-tricks.md b/docs/tips-and-tricks.md index 992bc0e8..8317ecd0 100644 --- a/docs/tips-and-tricks.md +++ b/docs/tips-and-tricks.md @@ -6,7 +6,8 @@ Here is a collection of neat tips and tricks that Homer users have come up with! Great source to find service icons -- +- +- ## Use Homer as a custom "new tab" page diff --git a/public/assets/config-demo.yml.dist b/public/assets/config-demo.yml.dist index 566c0eee..79799cfd 100644 --- a/public/assets/config-demo.yml.dist +++ b/public/assets/config-demo.yml.dist @@ -69,9 +69,17 @@ services: url: "https://github.com/bastienwirtz/homer/blob/main/docs/customservices.md" - name: "Dashboard icons" icon: "fa-solid fa-icons" - subtitle: "Dashboard icons" tag: "setup" - url: "https://github.com/walkxcode/dashboard-icons" + url: "" + quick: + - name: "selfh.st" + url: "https://selfh.st/icons/" + icon: "fa-solid fa-arrow-up-right-from-square" + target: "_blank" + - name: "homarr-labs" + url: "https://github.com/homarr-labs/dashboard-icons" + icon: "fa-solid fa-arrow-up-right-from-square" + target: "_blank" - name: "Buy me a coffee!" subtitle: "Sponsor this project" icon: "fa-solid fa-mug-hot" @@ -116,18 +124,19 @@ services: icon: "fa-regular fa-bookmark" class: highlight-inverted items: - - name: "r/selfhosted" + - name: "Selfhosted community" icon: "fa-brands fa-reddit-alien" - subtitle: "selfhosted community on Reddit" tag: "community" - url: "https://www.reddit.com/r/selfhosted/" - target: "_blank" - - name: "c/selfhosted" - logo: "https://icons.iconarchive.com/icons/simpleicons-team/simple/256/lemmy-icon.png" - subtitle: "selfhosted community on Lemmy" - tag: "community" - url: "https://lemmy.world/c/selfhosted" - target: "_blank" + url: "" + quick: + - name: "r/selfhosted" + url: "https://www.reddit.com/r/selfhosted/" + icon: "fa-solid fa-arrow-up-right-from-square" + target: "_blank" + - name: "c/selfhosted" + url: "https://lemmy.world/c/selfhosted" + icon: "fa-solid fa-arrow-up-right-from-square" + target: "_blank" - name: "Awesome selfhosted" icon: "fa-solid fa-star" subtitle: "Another application" diff --git a/src/assets/themes/classic.scss b/src/assets/themes/classic.scss index 35833dbf..7d7865bf 100644 --- a/src/assets/themes/classic.scss +++ b/src/assets/themes/classic.scss @@ -26,7 +26,7 @@ --text: #eaeaea; --text-header: #ffffff; --text-title: #fafafa; - --text-subtitle: #b6b6b6; + --text-subtitle: #b6b6b6; --card-shadow: rgba(0, 0, 0, 0.4); --link: #3273dc; --link-hover: #144aa2; diff --git a/src/components/services/Generic.vue b/src/components/services/Generic.vue index 5dc38929..c95e3194 100644 --- a/src/components/services/Generic.vue +++ b/src/components/services/Generic.vue @@ -19,6 +19,19 @@

{{ item.name }}

+

{{ item.subtitle }}

@@ -61,4 +74,23 @@ export default { object-fit: contain; } } + +a[href=""] { + pointer-events: none; + cursor: default; +} + +.quicklinks { + float: right; + a { + font-size: 0.75rem; + padding: 3px 6px; + margin-left: 6px; + border-radius: 100px; + background-color: var(--background); + z-index: 9999; + pointer-events: all; + } +} +