481 lines
9.1 KiB
SCSS
481 lines
9.1 KiB
SCSS
@mixin blue-button {
|
|
display: block;
|
|
height: 33px;
|
|
margin: 12px;
|
|
padding: 0 15px;
|
|
border-radius: 3px;
|
|
border: 1px solid #4697c1;
|
|
background: -webkit-linear-gradient(top, #6dccf1, #38a8e5);
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
line-height: 30px;
|
|
color: #fff;
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 1px 1px rgba(0, 0, 0, .15);
|
|
|
|
&:hover {
|
|
border-color: #297095;
|
|
background: -webkit-linear-gradient(top, #4fbbe4, #2090d0);
|
|
}
|
|
}
|
|
|
|
.discussion-body {
|
|
|
|
.vote-btn {
|
|
float: right;
|
|
display: block;
|
|
height: 27px;
|
|
padding: 0 8px;
|
|
border-radius: 5px;
|
|
border: 1px solid #b2b2b2;
|
|
background: -webkit-linear-gradient(top, #fff 35%, #ebebeb);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
line-height: 25px;
|
|
color: #333;
|
|
|
|
.plus-icon {
|
|
float: left;
|
|
margin-right: 6px;
|
|
font-size: 18px;
|
|
color: #17b429;
|
|
}
|
|
|
|
&.is-cast {
|
|
border-color: #379a42;
|
|
background: -webkit-linear-gradient(top, #50cc5e, #3db84b);
|
|
color: #fff;
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, .3);
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset, 0 1px 2px rgba(0, 0, 0, .2);
|
|
|
|
.plus-icon {
|
|
color: #336a39;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .4);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.new-post-btn {
|
|
@include blue-button;
|
|
float: right;
|
|
}
|
|
|
|
.new-post-icon {
|
|
display: block;
|
|
float: left;
|
|
width: 16px;
|
|
height: 17px;
|
|
margin: 7px 7px 0 0;
|
|
font-size: 16px;
|
|
padding-right: $baseline/2;
|
|
vertical-align: middle;
|
|
color: $white;
|
|
}
|
|
|
|
.post-search {
|
|
float: right;
|
|
}
|
|
|
|
.post-search-field {
|
|
width: 280px;
|
|
height: 30px;
|
|
padding: 0 15px 0 30px;
|
|
margin-top: 14px;
|
|
border: 1px solid #acacac;
|
|
border-radius: 30px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .1) inset, 0 1px 0 rgba(255, 255, 255, .5);
|
|
background: url(../images/search-icon.png) no-repeat 8px center #fff;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-weight: 400;
|
|
font-size: 13px;
|
|
line-height: 30px;
|
|
color: #333;
|
|
outline: 0;
|
|
-webkit-transition: border-color .1s;
|
|
|
|
&:focus {
|
|
border-color: #4697c1;
|
|
}
|
|
}
|
|
|
|
h1, ul, li, a, ol {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
outline: 0;
|
|
font-size: 100%;
|
|
font: inherit;
|
|
vertical-align: baseline;
|
|
}
|
|
ul, li {
|
|
list-style-type: none;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #009fe2;
|
|
}
|
|
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
height: 500px;
|
|
background: #fff;
|
|
border-radius: 3px;
|
|
border: 1px solid #aaa;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
|
|
.sidebar {
|
|
display: table-cell;
|
|
vertical-align: top;
|
|
width: 27.7%;
|
|
background: #f6f6f6;
|
|
border-radius: 3px 0 0 3px;
|
|
border-right: 1px solid #bcbcbc;
|
|
.post-list {
|
|
background-color: #ddd;
|
|
|
|
li:last-child a {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
a {
|
|
position: relative;
|
|
display: block;
|
|
height: 36px;
|
|
padding: 0 10px;
|
|
margin-bottom: 1px;
|
|
background: #fff;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
line-height: 34px;
|
|
color: #333;
|
|
|
|
&.read .title {
|
|
font-weight: 400;
|
|
color: #737373;
|
|
}
|
|
|
|
&.followed:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
background: url(../images/following-flag.png) no-repeat;
|
|
}
|
|
|
|
&.active {
|
|
background: -webkit-linear-gradient(top, #96e0fd, #61c7fc);
|
|
border-color: #4697c1;
|
|
box-shadow: 0 1px 0 #4697c1, 0 -1px 0 #4697c1;
|
|
|
|
.title {
|
|
color: #333;
|
|
}
|
|
|
|
.votes-count,
|
|
.comments-count {
|
|
background: -webkit-linear-gradient(top, #3994c7, #4da7d3);
|
|
color: #fff;
|
|
|
|
&:after {
|
|
color: #4da7d3;
|
|
}
|
|
}
|
|
|
|
&.followed:after {
|
|
background-position: 0 -12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.title {
|
|
display: block;
|
|
float: left;
|
|
width: 70%;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.votes-count,
|
|
.comments-count {
|
|
display: block;
|
|
float: right;
|
|
width: 32px;
|
|
height: 16px;
|
|
margin-top: 9px;
|
|
border-radius: 2px;
|
|
background: -webkit-linear-gradient(top, #d4d4d4, #dfdfdf);
|
|
font-size: 9px;
|
|
font-weight: 700;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
color: #767676;
|
|
}
|
|
|
|
.comments-count {
|
|
position: relative;
|
|
margin-left: 4px;
|
|
|
|
&:after {
|
|
content: '◥';
|
|
display: block;
|
|
position: absolute;
|
|
top: 11px;
|
|
right: 3px;
|
|
font-size: 6px;
|
|
color: #dfdfdf;
|
|
}
|
|
|
|
&.new {
|
|
background: -webkit-linear-gradient(top, #84d7fe, #99e0fe);
|
|
color: #333;
|
|
|
|
&:after {
|
|
color: #99e0fe;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.board-drop-btn {
|
|
display: block;
|
|
height: 60px;
|
|
border-bottom: 1px solid #a3a3a3;
|
|
border-radius: 3px 0 0 0;
|
|
background: -webkit-linear-gradient(top, #ebebeb, #d9d9d9);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
line-height: 58px;
|
|
text-align: center;
|
|
color: #333;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
|
|
}
|
|
|
|
.sort-bar {
|
|
height: 27px;
|
|
border-bottom: 1px solid #a3a3a3;
|
|
background: -webkit-linear-gradient(top, #cdcdcd, #b6b6b6);
|
|
box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset;
|
|
|
|
a {
|
|
display: block;
|
|
float: right;
|
|
height: 27px;
|
|
margin-right: 10px;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
line-height: 23px;
|
|
color: #333;
|
|
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
|
|
|
|
.sort-label {
|
|
font-size: 9px;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.global-discussion-actions {
|
|
height: 60px;
|
|
background: -webkit-linear-gradient(top, #ebebeb, #d9d9d9);
|
|
border-radius: 0 3px 0 0;
|
|
border-bottom: 1px solid #bcbcbc;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.discussion-article {
|
|
position: relative;
|
|
display: table-cell;
|
|
vertical-align: top;
|
|
width: 72.3%;
|
|
padding: 40px;
|
|
|
|
h1 {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.posted-details {
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
color: #888;
|
|
}
|
|
|
|
p + p {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.dogear {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
right: -1px;
|
|
width: 52px;
|
|
height: 51px;
|
|
background: url(../images/follow-dog-ear.png) 0 -51px no-repeat;
|
|
|
|
&.is-followed {
|
|
background-position: 0 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.discussion-post header,
|
|
.responses li header {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.responses {
|
|
margin-top: 40px;
|
|
|
|
> li {
|
|
margin: 0 -10px;
|
|
padding: 30px;
|
|
border-radius: 3px;
|
|
border: 1px solid #b2b2b2;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
|
|
}
|
|
|
|
.posted-by {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
.endorse-btn {
|
|
display: block;
|
|
float: right;
|
|
width: 27px;
|
|
height: 27px;
|
|
margin-right: 10px;
|
|
border-radius: 27px;
|
|
border: 1px solid #a0a0a0;
|
|
background: -webkit-linear-gradient(top, #fff 35%, #ebebeb);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
|
|
|
|
.check-icon {
|
|
display: block;
|
|
width: 13px;
|
|
height: 12px;
|
|
margin: 8px auto;
|
|
background: url(../images/endorse-icon.png) no-repeat;
|
|
}
|
|
|
|
&.is-endorsed {
|
|
border: 1px solid #4697c1;
|
|
background: -webkit-linear-gradient(top, #6dccf1, #38a8e5);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, .4) inset;
|
|
|
|
.check-icon {
|
|
background-position: 0 -12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.comments {
|
|
margin-top: 20px;
|
|
border-top: 1px solid #ddd;
|
|
|
|
li {
|
|
background: #f6f6f6;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
p {
|
|
font-size: 13px;
|
|
padding: 10px 20px;
|
|
|
|
.posted-details {
|
|
font-size: 11px;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
|
|
.comment-form {
|
|
padding: 8px 20px;
|
|
}
|
|
|
|
.comment-form-input {
|
|
width: 100%;
|
|
height: 31px;
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
border: 1px solid #b2b2b2;
|
|
border-radius: 3px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .1) inset;
|
|
-webkit-transition: border-color .1s;
|
|
outline: 0;
|
|
|
|
&:focus {
|
|
border-color: #4697c1;
|
|
}
|
|
}
|
|
|
|
.moderator-actions {
|
|
margin-top: 20px;
|
|
@include clearfix;
|
|
|
|
li {
|
|
float: left;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
height: 26px;
|
|
padding: 0 12px;
|
|
border-radius: 3px;
|
|
border: 1px solid #b2b2b2;
|
|
background: -webkit-linear-gradient(top, #fff 35%, #ebebeb);
|
|
font-size: 13px;
|
|
line-height: 24px;
|
|
color: #737373;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
|
|
|
.delete-icon {
|
|
display: block;
|
|
float: left;
|
|
width: 10px;
|
|
height: 10px;
|
|
margin: 8px 4px 0 0;
|
|
background: url(../images/moderator-delete-icon.png) no-repeat;
|
|
}
|
|
|
|
.edit-icon {
|
|
display: block;
|
|
float: left;
|
|
width: 10px;
|
|
height: 10px;
|
|
margin: 7px 4px 0 0;
|
|
background: url(../images/moderator-edit-icon.png) no-repeat;
|
|
}
|
|
}
|
|
}
|