123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- //
- // Posts Flavor
- // --------------------------------------------------
- // Post body
- .panel-post {
- background: @post-bg;
- border: 1px solid @post-border;
- .shadow-2dp();
- }
- // Post side
- .post-side {
- color: @gray-light;
- .poster-avatar {
- border-radius: @border-radius-base;
- }
- .user-title {
- color: @gray;
- a, a:link, a:visited,
- a:focus, a:hover, a:active {
- color: @gray;
- }
- }
- }
- // Header
- .post-heading {
- .label-unread {
- background-color: @post-unread-label;
- margin-right: @padding-large-horizontal;
- }
- .label-protected {
- background-color: transparent;
- margin-left: @padding-base-horizontal * 2;
- position: relative;
- top: 1px;
- color: @post-protected-icon;
- .material-icon {
- margin-right: 2px;
- position: relative;
- top: -1px;
- font-size: 16px;
- line-height: 16px;
- }
- }
- &>.btn-link {
- padding-left: 0px;
- padding-right: 0px;
- &, &:link, &:visited {
- color: @gray-light;
- }
- &:hover, &:focus, &:focus:active, &:active {
- color: @text-color;
- text-decoration: none;
- }
- }
- .btn-see-edits {
- margin-left: @padding-base-horizontal * 2;
- }
- }
- // Status
- .post-status-message {
- border-radius: @border-radius-base;
- margin-top: @line-height-computed / 2;
- padding: @padding-base-vertical @padding-base-horizontal;
-
- @media screen and (max-width: @screen-xs-max) {
- font-size: @font-size-small;
- .material-icon {
- margin-top: 3px;
- }
- p {
- margin-top: 0px;
- }
- }
- }
- // Post body
- .post-body:last-child {
- padding-bottom: @line-height-computed / 2;
- }
- // Attachments
- .post-attachments {
- background-color: darken(@panel-bg, 5%);
- border: none;
- border-radius: @border-radius-base;
- margin-bottom: @line-height-computed * 1.5;
- &:last-child {
- margin-bottom: @line-height-computed / 2;
- }
- @media screen and (max-width: @screen-xs-max) {
- border-radius: 0px;
- margin: 0px -15px;
- margin-bottom: @line-height-computed;
- }
- }
- // Footer
- .post-footer {
- &>.btn-link {
- padding-left: 0px;
- padding-right: 0px;
- &, &:link, &:visited {
- color: @gray-light;
- }
- &:hover, &:focus, &:focus:active, &:active {
- color: @text-color;
- text-decoration: none;
- }
- }
- p {
- color: @gray-light;
- font-size: @font-size-small;
- }
- }
- // Hidden and invalid messages
- .post-body-hidden, .post-body-invalid {
- padding-top: @line-height-computed / 2;
- padding-bottom: @line-height-computed / 2;
-
- .lead {
- margin-bottom: @line-height-computed / 2;
- }
- .text-muted {
- margin-bottom: 0px;
- font-size: @font-size-small;
- }
- }
- // Fade out hidden posts a little
- .post-hidden {
- .opacity(0.75);
- }
|