You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
503 B
28 lines
503 B
|
|
.link {
|
|
&.link-underline-none {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&.link-underline-hover {
|
|
text-decoration: none;
|
|
|
|
&:hover, &:focus-visible {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&.link-underline-always {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&.link-disabled {
|
|
cursor: default;
|
|
color: var(--palette-action-disabled) !important;
|
|
|
|
&:not(.link-underline-always) {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|