123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //
- // Thread Map
- // --------------------------------------------------
- .thread-map {
- .user-avatar {
- img {
- border-radius: @border-radius-small;
- width: 32px;
- }
- }
- .media-heading {
- background: none;
- border-bottom: none;
- margin-bottom: 0px;
- color: @text-muted;
- .user-name {
- color: @state-default;
- font-weight: bold;
- }
- a.user-name {
- &:link, &:visited {
- color: @state-hover;
- }
- &:hover {
- color: @state-hover;
- text-decoration: text-underline;
- }
- &:active, &:focus {
- color: @state-clicked;
- text-decoration: text-underline;
- }
- }
- .separator {
- margin-left: @font-size-base / 3;
- margin-right: @font-size-base / 3;
- }
- .post-date {
- &:link, &:visited {
- color: @state-default;
- }
- &:hover, &:focus {
- color: @state-hover;
- text-decoration: underline;
- }
- &:active {
- color: @state-clicked;
- text-decoration: underline;
- }
- }
- }
- .post-preview {
- display: block;
- font-size: @font-size-small;
- &:link, &:active, &:visited, &:hover {
- color: @text-color;
- text-decoration: none;
- }
- }
- .map-tail {
- margin-bottom: 0px;
- }
- }
|