summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/valo/components/_link.scss
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_link.scss')
-rw-r--r--WebContent/VAADIN/themes/valo/components/_link.scss14
1 files changed, 7 insertions, 7 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_link.scss b/WebContent/VAADIN/themes/valo/components/_link.scss
index e02a64f678..73e2cb114a 100644
--- a/WebContent/VAADIN/themes/valo/components/_link.scss
+++ b/WebContent/VAADIN/themes/valo/components/_link.scss
@@ -3,9 +3,9 @@ $v-link-text-decoration: underline !default;
$v-link-cursor: pointer !default;
-@mixin v-valo-link ($primary-stylename: v-link) {
+@mixin valo-link ($primary-stylename: v-link) {
.#{$primary-stylename} {
- @include v-valo-link-style;
+ @include valo-link-style;
a {
cursor: inherit;
@@ -23,9 +23,9 @@ $v-link-cursor: pointer !default;
}
-@mixin v-valo-link-style {
+@mixin valo-link-style {
cursor: $v-link-cursor;
- color: v-valo-link-font-color();
+ color: valo-link-font-color();
text-decoration: $v-link-text-decoration;
font-weight: inherit;
@@ -34,13 +34,13 @@ $v-link-cursor: pointer !default;
}
&:hover {
- color: lighten(v-valo-link-font-color(), 10%);
+ color: lighten(valo-link-font-color(), 10%);
}
}
-@function v-valo-link-font-color ($color: null, $context: null) {
- $link-color: $color or $v-link-font-color or v-valo-focus-color($color: $color, $context: $context);
+@function valo-link-font-color ($color: null, $context: null) {
+ $link-color: $color or $v-link-font-color or valo-focus-color($color: $color, $context: $context);
@return $link-color;
} \ No newline at end of file