Skip to content
Snippets Groups Projects
Commit b86a784e authored by Nur Rony's avatar Nur Rony
Browse files

resolves lowercase issue in system note for labels, label description and title

removes unnecessary changelog entry

makes toggle commit list and compare link as secondary

removes unnecessary function call
parent 60c2d590
No related branches found
No related tags found
Loading
Loading
Loading
@@ -113,6 +113,7 @@
$(document).off("click", ".js-note-discard");
$(document).off("keydown", ".js-note-text");
$(document).off('click', '.js-comment-resolve-button');
$(document).off("click", '.system-note-commit-list-toggler');
$('.note .js-task-list-container').taskList('disable');
return $(document).off('tasklist:changed', '.note .js-task-list-container');
};
Loading
Loading
Loading
Loading
@@ -43,12 +43,25 @@ ul.notes {
}
 
.system-note-message {
text-transform: lowercase;
display: inline-block;
&::first-letter {
text-transform: lowercase;
}
 
a {
color: $gl-link-color;
text-decoration: none;
}
p {
display: inline-block;
margin: 0;
&::first-letter {
text-transform: lowercase;
}
}
}
 
.timeline-content {
Loading
Loading
@@ -62,6 +75,11 @@ ul.notes {
display: none;
padding: 10px 0 0;
cursor: pointer;
&:hover {
color: $gl-link-color;
text-decoration: underline;
}
}
 
.note-text {
Loading
Loading
@@ -87,6 +105,16 @@ ul.notes {
display: none;
}
 
p:last-child {
a {
color: $gl-text-color;
&:hover {
color: $gl-link-color;
}
}
}
&::after {
content: '';
width: 100%;
Loading
Loading
@@ -188,11 +216,6 @@ ul.notes {
padding-bottom: 3px;
padding-right: 20px;
 
p {
display: inline;
margin: 0;
}
@media (min-width: $screen-sm-min) {
padding-right: 0;
}
Loading
Loading
Loading
Loading
@@ -16,7 +16,7 @@
commented
- if note.system
%span{class: 'system-note-message'}
= h(note.note_html.downcase.html_safe)
= note.redacted_note_html
%a{ href: "##{dom_id(note)}" }
= time_ago_with_tooltip(note.created_at, placement: 'bottom', html_class: 'note-created-ago')
- unless note.system?
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment