mirror of
				https://github.com/flarum/core.git
				synced 2025-10-26 21:21:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			406 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			406 lines
		
	
	
		
			6.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // ------------------------------------
 | |
| // Sidebar
 | |
| 
 | |
| .discussion-nav {
 | |
|   & > ul {
 | |
|     padding: 0;
 | |
|     margin: 0;
 | |
|     list-style: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @tablet, @desktop, @desktop-hd {
 | |
|   .discussion-nav {
 | |
|     float: right;
 | |
| 
 | |
|     &, & > ul {
 | |
|       width: 150px;
 | |
|     }
 | |
|     & > ul {
 | |
|       position: fixed;
 | |
|       margin-top: 30px;
 | |
| 
 | |
|       & > li {
 | |
|         margin-bottom: 10px;
 | |
|       }
 | |
|     }
 | |
|     & .btn-group, & .btn {
 | |
|       width: 100%;
 | |
|     }
 | |
|     & .btn-group:not(.item-count-1) {
 | |
|       & .btn {
 | |
|         width: 77%;
 | |
|       }
 | |
|       & .dropdown-toggle {
 | |
|         width: 22%;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| // ------------------------------------
 | |
| // Stream
 | |
| 
 | |
| .discussion-posts {
 | |
|   margin-top: 40px;
 | |
| 
 | |
|   & .item {
 | |
|     margin-bottom: 40px;
 | |
|   }
 | |
| }
 | |
| .gap {
 | |
|   padding: 30px 0;
 | |
|   text-align: center;
 | |
|   color: #aaa;
 | |
|   cursor: pointer;
 | |
|   border: 2px dashed @fl-body-bg;
 | |
|   background: #f2f2f2;
 | |
|   text-transform: uppercase;
 | |
|   font-size: 12px;
 | |
|   font-weight: bold;
 | |
|   overflow: hidden;
 | |
|   position: relative;
 | |
|   .transition(padding 0.2s);
 | |
| 
 | |
|   &:hover, &.loading, &.active {
 | |
|     padding: 50px 0;
 | |
| 
 | |
|     &.up:before, &.down:after {
 | |
|       opacity: 1;
 | |
|     }
 | |
|   }
 | |
|   &.loading {
 | |
|     .transition(none);
 | |
|   }
 | |
|   &:before, &:after {
 | |
|     font-family: 'FontAwesome';
 | |
|     display: block;
 | |
|     opacity: 0;
 | |
|     transition: opacity 0.2s;
 | |
|     height: 15px;
 | |
|     color: #aaa;
 | |
|   }
 | |
|   &.up:before {
 | |
|     content: '\f077';
 | |
|     margin-top: -25px;
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
|   &.down:after {
 | |
|     content: '\f078';
 | |
|     margin-bottom: -25px;
 | |
|     margin-top: 10px;
 | |
|   }
 | |
|   &:only-child {
 | |
|     background: none;
 | |
|     border: 0;
 | |
|     color: @fl-primary-color;
 | |
|     &:before, &:after {
 | |
|       display: none;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @phone {
 | |
|   .gap {
 | |
|     margin-left: -15px;
 | |
|     margin-right: -15px;
 | |
|     border-left: 0;
 | |
|     border-right: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @tablet, @desktop, @desktop-hd {
 | |
|   .discussion-posts {
 | |
|     margin-right: 200px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| // ------------------------------------
 | |
| // Posts
 | |
| 
 | |
| .post {
 | |
|   padding-bottom: 1px;
 | |
|   transition: 0.2s box-shadow;
 | |
| 
 | |
|   & .contextual-controls {
 | |
|     float: right;
 | |
|     margin-left: 10px;
 | |
|   }
 | |
| }
 | |
| .item.highlight .post {
 | |
|   border: 8px solid rgba(255, 255, 0, 0.2);
 | |
|   border-radius: 8px;
 | |
|   padding: 15px;
 | |
|   margin: -23px;
 | |
| }
 | |
| .post-header {
 | |
|   margin-bottom: 10px;
 | |
|   color: @fl-body-muted-color;
 | |
| 
 | |
|   & > ul {
 | |
|     list-style-type: none;
 | |
|     padding: 0;
 | |
|     margin: 0;
 | |
| 
 | |
|     &, & a {
 | |
|       color: @fl-body-muted-color;
 | |
|     }
 | |
|     & > li {
 | |
|       display: inline;
 | |
|       margin-right: 10px;
 | |
|     }
 | |
|   }
 | |
|   & .post-user {
 | |
|     margin: 0;
 | |
|     display: inline;
 | |
|     font-weight: bold;
 | |
|     font-size: 15px;
 | |
| 
 | |
|     &, & a {
 | |
|       color: @fl-body-heading-color;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| .post-body {
 | |
|   font-size: 14px;
 | |
|   line-height: 1.6em;
 | |
| }
 | |
| .post.is-hidden {
 | |
|   & .post-user, & .post-header > ul, & .post-header > ul a:not(.btn) {
 | |
|     color: @fl-body-muted-more-color;
 | |
|   }
 | |
|   &:not(.reveal-content) {
 | |
|     & .post-body, & .post-footer, & .avatar {
 | |
|       display: none;
 | |
|     }
 | |
|   }
 | |
|   &.reveal-content {
 | |
|     & .post-body, & .post-footer, & .avatar {
 | |
|       opacity: 0.5;
 | |
|     }
 | |
|   }
 | |
|   & .btn-more {
 | |
|     background: #eee;
 | |
|     color: @fl-body-muted-more-color;
 | |
|   }
 | |
| }
 | |
| .post-meta {
 | |
|   width: 400px;
 | |
|   padding: 10px;
 | |
|   color: @fl-body-muted-color;
 | |
| 
 | |
|   & .number {
 | |
|     color: @fl-body-color;
 | |
|     font-weight: bold;
 | |
|   }
 | |
|   & .time {
 | |
|     margin-left: 5px;
 | |
|   }
 | |
|   & .permalink {
 | |
|     margin-top: 10px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .post-icon {
 | |
|   float: left;
 | |
| }
 | |
| .post-activity {
 | |
|   &, & a {
 | |
|     color: @fl-body-muted-color;
 | |
|   }
 | |
|   & a {
 | |
|     font-weight: bold;
 | |
|   }
 | |
| }
 | |
| .post-activity-info {
 | |
|   font-size: 15px;
 | |
|   margin-bottom: 5px;
 | |
| }
 | |
| .post-renamed {
 | |
|   & .old-title, & .new-title {
 | |
|     font-weight: normal;
 | |
|     font-style: italic;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .post-footer, .post-actions {
 | |
|   & > ul {
 | |
|     list-style-type: none;
 | |
|     padding: 0;
 | |
|     margin: 0;
 | |
|   }
 | |
|   &, & a {
 | |
|     color: @fl-body-muted-color;
 | |
|   }
 | |
| }
 | |
| .post-footer {
 | |
|   & > ul {
 | |
|     & > li {
 | |
|       margin-bottom: 5px;
 | |
|     }
 | |
|   }
 | |
|   & .fa {
 | |
|     font-size: 14px;
 | |
|     margin-right: 5px;
 | |
|   }
 | |
| }
 | |
| .post-actions {
 | |
|   margin-top: 10px;
 | |
|   opacity: 0;
 | |
|   .transition(opacity 0.2s);
 | |
| 
 | |
|   & > ul {
 | |
|     & > li {
 | |
|       margin-right: 10px;
 | |
|       display: inline-block;
 | |
|     }
 | |
|   }
 | |
|   .post:hover & {
 | |
|     opacity: 1;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @phone {
 | |
|   .post-header {
 | |
|     & .avatar {
 | |
|       .avatar-size(32px);
 | |
|       vertical-align: middle;
 | |
|       margin-right: 5px;
 | |
|     }
 | |
|   }
 | |
|   .post-activity {
 | |
|     padding-left: 30px;
 | |
|   }
 | |
|   .post-icon {
 | |
|     font-size: 18px;
 | |
|     margin-left: -30px;
 | |
|     margin-top: 2px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @tablet, @desktop, @desktop-hd {
 | |
|   .post {
 | |
|     padding-left: 90px;
 | |
| 
 | |
|     & .contextual-controls {
 | |
|       visibility: hidden;
 | |
|     }
 | |
|     &:hover .contextual-controls, & .contextual-controls.open {
 | |
|       visibility: visible;
 | |
|     }
 | |
|   }
 | |
|   .item.highlight .post {
 | |
|     padding-left: 90px + 15px;
 | |
|   }
 | |
|   .post-header {
 | |
|     & .avatar {
 | |
|       margin-left: -90px;
 | |
|       float: left;
 | |
|       .avatar-size(64px);
 | |
|     }
 | |
|   }
 | |
|   .post-icon {
 | |
|     text-align: right;
 | |
|     margin-left: -90px;
 | |
|     width: 64px;
 | |
|     font-size: 22px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| // ------------------------------------
 | |
| // Scrubber
 | |
| 
 | |
| .scrubber {
 | |
|   & a {
 | |
|     margin-left: -5px;
 | |
|     color: @fl-body-muted-color;
 | |
|     & .fa {
 | |
|       font-size: 14px;
 | |
|       margin-right: 2px;
 | |
|     }
 | |
|     &:hover, &:focus {
 | |
|       text-decoration: none;
 | |
|       color: @link-hover-color;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| .scrubber-scrollbar {
 | |
|   margin: 8px 0 8px 3px;
 | |
|   height: 300px;
 | |
|   min-height: 50px; // JavaScript sets a max-height
 | |
|   position: relative;
 | |
| }
 | |
| .scrubber-before, .scrubber-after {
 | |
|   border-left: 1px solid @fl-body-secondary-color;
 | |
| }
 | |
| .scrubber-slider {
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
|   padding: 5px 0;
 | |
| }
 | |
| .scrubber-handle {
 | |
|   height: 100%;
 | |
|   width: 5px;
 | |
|   background: @fl-body-primary-color;
 | |
|   border-radius: 4px;
 | |
|   float: left;
 | |
|   margin-left: -2px;
 | |
|   transition: background 0.2s;
 | |
|   .disabled & {
 | |
|     background: @fl-body-secondary-color;
 | |
|   }
 | |
| }
 | |
| .scrubber-info {
 | |
|   height: (2em * @line-height-base);
 | |
|   margin-top: (-1em * @line-height-base);
 | |
|   position: absolute;
 | |
|   top: 50%;
 | |
|   width: 100%;
 | |
|   left: 15px;
 | |
|   & strong {
 | |
|     display: block;
 | |
|   }
 | |
|   & .description {
 | |
|     color: @fl-body-muted-color;
 | |
|   }
 | |
| }
 | |
| .scrubber-highlights {
 | |
|   position: absolute;
 | |
|   left: 0;
 | |
|   right: 0;
 | |
|   top: 0;
 | |
|   bottom: 0;
 | |
|   list-style-type: none;
 | |
|   pointer-events: none;
 | |
| }
 | |
| .scrubber-highlights li {
 | |
|   position: absolute;
 | |
|   right: -6px;
 | |
|   background: #fc0;
 | |
|   height: 8px;
 | |
|   width: 13px;
 | |
|   border-radius: 4px;
 | |
|   box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
 | |
|   opacity: 0.99;
 | |
| }
 | |
| 
 | |
| @media @phone {
 | |
|   .stream-scrubber {
 | |
|     & .dropdown-toggle {
 | |
|       font-size: 14px;
 | |
|     }
 | |
|     & .dropdown-menu {
 | |
|       padding: 30px;
 | |
|       font-size: 14px;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media @tablet, @desktop, @desktop-hd {
 | |
|   .stream-scrubber {
 | |
|     margin: 30px 0 0 0;
 | |
| 
 | |
|     .expand-dropdown();
 | |
|   }
 | |
| }
 |