mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-30 23:46:24 +00:00
74 lines
1.0 KiB
Plaintext
74 lines
1.0 KiB
Plaintext
a, .link {
|
|
font-weight: @font-weight-normal;
|
|
color: @text-dark;
|
|
text-decoration: none;
|
|
|
|
&:hover, &:focus {
|
|
color: darken(@text-dark, 15%);
|
|
text-decoration: underline;
|
|
}
|
|
&:focus {
|
|
.tab-focus;
|
|
}
|
|
}
|
|
|
|
.link-brand {
|
|
color: @text-brand;
|
|
|
|
&:hover, &:focus {
|
|
color: darken(@text-brand, 15%);
|
|
}
|
|
}
|
|
|
|
.link-brand-soft {
|
|
color: @text-brand-soft;
|
|
|
|
&:hover, &:focus {
|
|
color: darken(@text-brand-soft, 15%);
|
|
}
|
|
}
|
|
|
|
.link-underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.link-plain {
|
|
&:hover, &:focus {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.link-soft {
|
|
color: @text-dark-soft;
|
|
|
|
&:hover, &:focus {
|
|
color: @text-dark;
|
|
}
|
|
}
|
|
|
|
.link-muted {
|
|
color: @text-dark-muted;
|
|
|
|
&:hover, &:focus {
|
|
color: @text-dark;
|
|
}
|
|
}
|
|
|
|
.link-light {
|
|
color: @text-light;
|
|
|
|
&:hover, &:focus {
|
|
color: @text-light;
|
|
}
|
|
}
|
|
|
|
.link-light-muted {
|
|
color: @text-light-muted;
|
|
|
|
&:hover, &:focus {
|
|
color: @text-light-soft;
|
|
}
|
|
}
|
|
|
|
|