43 lines
704 B
CSS
43 lines
704 B
CSS
.textLink {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: var(--Space-x05);
|
|
padding: var(--Space-x025) 0;
|
|
}
|
|
|
|
.disabled {
|
|
color: var(--Text-Interactive-Disabled);
|
|
text-decoration: none;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.inline {
|
|
padding: 0;
|
|
}
|
|
|
|
.theme-primary:not(.disabled) {
|
|
color: var(--Text-Interactive-Secondary);
|
|
|
|
&:hover {
|
|
color: var(--Text-Interactive-Secondary-Hover);
|
|
}
|
|
}
|
|
|
|
.theme-inverted:not(.disabled) {
|
|
color: var(--Text-Inverted);
|
|
|
|
&:hover {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
.theme-interactive-default:not(.disabled) {
|
|
color: var(--Text-Interactive-Default);
|
|
|
|
&:hover {
|
|
color: var(--Text-Interactive-Default-Hover);
|
|
}
|
|
}
|