-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: link to previous blames in view blame page #15171
Changes from all commits
f11b40e
0499082
7ee46f0
36d3b83
9353120
caeffdb
c6170cd
45b83dc
78ed60a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1382,6 +1382,14 @@ a.ui.label:hover { | |
margin-right: 0; | ||
} | ||
|
||
.lines-blame-btn { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
text-align: right !important; | ||
background-color: #f5f5f5; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This background color needs to overridden in
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think we should use css vars There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. silverwind did the transition to them for colors ... So you dont have to touch our dark theme! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In that case, the existing override for |
||
width: 2%; | ||
} | ||
|
||
.lines-num { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
|
@@ -1510,6 +1518,10 @@ a.ui.label:hover { | |
} | ||
} | ||
|
||
.bottom-line-blame { | ||
border-bottom: 1px solid var(--color-secondary); | ||
} | ||
|
||
.lines-code, | ||
.lines-commit { | ||
.bottom-line { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we rename this to
"Rows"
?