summaryrefslogtreecommitdiff
path: root/themes/LoveIt/assets/css/_mixin/_link.scss
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2022-10-21 21:01:11 +0200
committerChristoph Cullmann <cullmann@kde.org>2022-10-21 21:01:11 +0200
commit582a8a33aff644a6b07534aaf677973abc6f154c (patch)
tree069a34670b1b91041ef9f3fcb73192dd05c60963 /themes/LoveIt/assets/css/_mixin/_link.scss
parent038eabdda56dbfdbbba4328ac035cc4d77e8d80d (diff)
use different theme that is a lot slimer
Diffstat (limited to 'themes/LoveIt/assets/css/_mixin/_link.scss')
-rw-r--r--themes/LoveIt/assets/css/_mixin/_link.scss36
1 files changed, 0 insertions, 36 deletions
diff --git a/themes/LoveIt/assets/css/_mixin/_link.scss b/themes/LoveIt/assets/css/_mixin/_link.scss
deleted file mode 100644
index f12ac22..0000000
--- a/themes/LoveIt/assets/css/_mixin/_link.scss
+++ /dev/null
@@ -1,36 +0,0 @@
-@mixin link($light, $dark) {
- a, a::before, a::after {
- text-decoration: none;
-
- @if $light {
- color: $global-link-color;
- } @else {
- color: $single-link-color;
- }
-
- [theme=dark] & {
- @if $dark {
- color: $global-link-color-dark;
- } @else {
- color: $single-link-color-dark;
- }
- }
- }
-
- a:active,
- a:hover {
- @if $light {
- color: $global-link-hover-color;
- } @else {
- color: $single-link-hover-color;
- }
-
- [theme=dark] & {
- @if $dark {
- color: $global-link-hover-color-dark;
- } @else {
- color: $single-link-hover-color-dark;
- }
- }
- }
-}