1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // Posts List Event
- // --------------------------------------------------
- // Event style
- .posts-list .event {
- margin-bottom: @line-height-computed / 4;
- color: @text-muted;
- }
- // Event icon
- .posts-list .event .post-avatar {
- .material-icon {
- height: @event-icon-size;
- width: @event-icon-size;
- font-size: @event-icon-size;
- line-height: @event-icon-size;
- text-align: center;
- }
- }
- // Event first and second rows
- .posts-list .event .event-message {
- margin: 0px;
- font-size: @font-size-base;
- }
- .posts-list .event .event-info {
- margin: 0px;
- font-size: @font-size-small;
- li {
- margin-right: @line-height-computed / 4;
- }
- }
- // Event controls
- .posts-list .event .event-controls {
- .btn-link {
- border: 0px;
- margin: 0px;
- margin-right: @line-height-computed / 4;
- padding: 0px;
- font-size: @font-size-small;
- }
- }
|