1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // Typography
- // --------------------------------------------------
- .item-title {
- color: @state-hover;
- &:link, &:hover, &:visited {
- color: @state-hover;
- }
- &:active {
- color: @state-clicked;
- }
- &.combined {
- &:hover {
- text-decoration: none;
- &>span {
- text-decoration: underline;
- }
- }
- &:active {
- text-decoration: none;
- &>span {
- text-decoration: underline;
- }
- }
- }
- }
- .text-muted {
- strong {
- color: darken(@text-muted, 20%);
- font-weight: normal;
- }
- a:link, a:visited, a:active, a:hover {
- color: @link-muted-color;
- }
- .item-title {
- color: darken(@text-muted, 20%);
- font-weight: bold;
- &:link, &:visited {
- color: darken(@text-muted, 20%);
- }
- &:hover {
- color: @state-hover;
- }
- &:active {
- color: @state-clicked;
- }
- }
- }
- .label-solo {
- font-size: @font-size-base;
- }
|