Commit 58634dfb authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

New class names in notes css

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 71d44746
...@@ -117,11 +117,11 @@ $ -> ...@@ -117,11 +117,11 @@ $ ->
# Commit show suppressed diff # Commit show suppressed diff
$(".content").on "click", ".supp_diff_link", -> $(".diff-content").on "click", ".supp_diff_link", ->
$(@).next('table').show() $(@).next('table').show()
$(@).remove() $(@).remove()
$(".content").on "click", ".js-details-expand", -> $(".diff-content").on "click", ".js-details-expand", ->
$(@).next('.js-details-contain').removeClass("hide") $(@).next('.js-details-contain').removeClass("hide")
$(@).remove() $(@).remove()
......
...@@ -47,13 +47,13 @@ ul.notes { ...@@ -47,13 +47,13 @@ ul.notes {
.discussion-body { .discussion-body {
margin-left: 50px; margin-left: 50px;
.file, .diff-file,
.discussion-hidden, .discussion-hidden,
.notes { .notes {
@extend .borders; @extend .borders;
background-color: #F9F9F9; background-color: #F9F9F9;
} }
.file .notes { .diff-file .notes {
/* reset */ /* reset */
background: inherit; background: inherit;
border: none; border: none;
...@@ -114,7 +114,7 @@ ul.notes { ...@@ -114,7 +114,7 @@ ul.notes {
} }
} }
.file .notes_holder { .diff-file .notes_holder {
font-size: 13px; font-size: 13px;
line-height: 18px; line-height: 18px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
...@@ -184,7 +184,7 @@ ul.notes { ...@@ -184,7 +184,7 @@ ul.notes {
} }
} }
} }
.file .note .note-actions { .diff-file .note .note-actions {
right: 0; right: 0;
top: 0; top: 0;
} }
...@@ -195,7 +195,7 @@ ul.notes { ...@@ -195,7 +195,7 @@ ul.notes {
* Line note button on the side of diffs * Line note button on the side of diffs
*/ */
.file tr.line_holder { .diff-file tr.line_holder {
.add-diff-note { .add-diff-note {
background: url("diff_note_add.png") no-repeat left 0; background: url("diff_note_add.png") no-repeat left 0;
height: 22px; height: 22px;
...@@ -235,22 +235,25 @@ ul.notes { ...@@ -235,22 +235,25 @@ ul.notes {
.reply-btn { .reply-btn {
@extend .btn-primary; @extend .btn-primary;
} }
.file .content tr.line_holder:hover { .diff-file .diff-content {
&> td.line_content { tr.line_holder:hover {
background: $hover !important; &> td.line_content {
border-color: darken($hover, 10%) !important; background: $hover !important;
border-color: darken($hover, 10%) !important;
}
&> td.new_line,
&> td.old_line {
background: darken($hover, 4%) !important;
border-color: darken($hover, 10%) !important;
}
} }
&> td.new_line,
&> td.old_line { tr.line_holder:hover > td .line_note_link {
background: darken($hover, 4%) !important; opacity: 1.0;
border-color: darken($hover, 10%) !important; filter: alpha(opacity=100);
} }
} }
.file .content tr.line_holder:hover > td .line_note_link { .diff-file,
opacity: 1.0;
filter: alpha(opacity=100);
}
.file,
.discussion { .discussion {
.new_note { .new_note {
margin: 0; margin: 0;
......
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