Commit 43f0f6c2 by Kyle Fiedler

Merge

parents 4dafe790 f56e69ff
...@@ -972,30 +972,30 @@ ul { ...@@ -972,30 +972,30 @@ ul {
.main-page h1 { .main-page h1 {
margin-right: 5px; } margin-right: 5px; }
.delete-icon { // .delete-icon {
margin-top: -1px; // margin-top: -1px;
float: left; // float: left;
height: 21px; // height: 21px;
width: 18px; // width: 18px;
display: block; // display: block;
line-height: 20px; // line-height: 20px;
text-align: center; // text-align: center;
background: #bbcdcd; // background: #bbcdcd;
cursor: default; // cursor: default;
color: #fff; // color: #fff;
border-top: #cfdbdb 1px solid; // border-top: #cfdbdb 1px solid;
font-family: Arial; // font-family: Arial;
border-top-right-radius: 4px; // border-top-right-radius: 4px;
border-bottom-right-radius: 4px; // border-bottom-right-radius: 4px;
-moz-border-radius-topright: 4px; // -moz-border-radius-topright: 4px;
-moz-border-radius-bottomright: 4px; // -moz-border-radius-bottomright: 4px;
-webkit-border-bottom-right-radius: 4px; // -webkit-border-bottom-right-radius: 4px;
-webkit-border-top-right-radius: 4px; // -webkit-border-top-right-radius: 4px;
text-shadow: 0px 1px 0px #7ea0a0; // text-shadow: 0px 1px 0px #7ea0a0;
-moz-text-shadow: 0px 1px 0px #7ea0a0; // -moz-text-shadow: 0px 1px 0px #7ea0a0;
-webkit-text-shadow: 0px 1px 0px #7ea0a0; // -webkit-text-shadow: 0px 1px 0px #7ea0a0;
&:hover { // &:hover {
background: #b32f2f; } } // background: #b32f2f; } }
.tag-number { .tag-number {
font-weight: normal; font-weight: normal;
......
...@@ -167,12 +167,24 @@ div.question-header { ...@@ -167,12 +167,24 @@ div.question-header {
div.comments-content { div.comments-content {
font-size: 13px; font-size: 13px;
div.comment { .block {
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
border-top: 1px solid #fff; border-top: 1px solid #fff;
padding: 15px 0; padding: 15px 0;
display: block; display: block;
&:first-child {
border-top: 0;
}
&:only-of-type {
border: 0;
}
}
form.post-comments {
}
div.comment {
&:first-child { &:first-child {
border-top: 0; border-top: 0;
} }
...@@ -181,26 +193,66 @@ div.question-header { ...@@ -181,26 +193,66 @@ div.question-header {
margin-bottom: 20px; margin-bottom: 20px;
} }
div.comment-votes { aside.comment-controls {
display: inline; background: none;
border: none;
.upvote { display: inline-block;
background: #ccc; margin-top: -8px;
display:inline-block; padding:0 2% 0 0;
margin: 0px; text-align: center;
padding-right: 17px; width: 5%;
padding-top: 2px;
height: 20px; div {
color: #777; background: none;
width: 20px; opacity: 0.6;
&:hover {
opacity: 1;
}
} }
}
div.comment-delete { div.comment-votes {
display: inline; @include transform(rotate(-90deg));
width: 16px;
a.upvote {
cursor: pointer;
font-size: 25px;
text-decoration: none;
}
}
div.comment-delete {
// display: inline;
color: $mit-red;
cursor: pointer;
font-size: 15px;
}
} }
div.comment-body { div.comment-body {
display: inline-block;
width: 95%;
div.comment-meta {
text-align: right;
a.author {
font-weight: bold;
}
a.edit {
@extend .button;
font-size: 12px;
padding: 2px 10px;
// @include border-radius(2px);
// background: #eee;
// color: #555;
// cursor: pointer;
// padding: 1px 10px;
// text-decoration: none;
}
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment