1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-26 11:28:27 +00:00

Fix global search result CSS, misc CSS tweaks (#7789)

- Fixes double line-numbers and padding in Explore > Code > Search
- Moved code-view specific CSS out of their parents to share those
styles better.
- Fix misc issues discovered in code,diff and blame view, especially for
the dark theme.
This commit is contained in:
silverwind
2019-08-08 16:46:03 +02:00
committed by Lunny Xiao
parent e54814dcaa
commit a21a7d438b
5 changed files with 178 additions and 210 deletions

View File

@@ -403,115 +403,6 @@
pre {
overflow: auto;
}
.code-view {
* {
font-size: 12px;
font-family: @monospaced-fonts, monospace;
line-height: 20px;
}
table {
width: 100%;
}
.lines-num {
vertical-align: top;
text-align: right;
color: #999999;
background: #f5f5f5;
width: 1%;
user-select: none;
span {
line-height: 20px;
padding: 0 10px;
cursor: pointer;
display: block;
}
}
.lines-num,
.lines-code {
padding: 0;
pre,
ol,
.hljs {
background-color: white;
margin: 0;
padding: 0 !important;
li {
display: block;
width: 100%;
&.active {
background: #ffffdd;
}
&:before {
content: ' ';
}
}
}
}
.lines-commit {
vertical-align: top;
color: #999999;
padding: 0;
background: #f5f5f5;
width: 1%;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none;
.blame-info {
width: 350px;
max-width: 350px;
display: block;
user-select: none;
padding: 0 0 0 10px;
.blame-data {
display: flex;
font-family: @default-fonts;
.blame-message {
flex-grow: 2;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 20px;
}
.blame-time,
.blame-avatar {
flex-shrink: 0;
}
}
}
.ui.avatar.image {
height: 18px;
width: 18px;
}
}
.lines-num,
.lines-code,
.lines-commit {
.bottom-line {
border-bottom: 1px solid #eaecef;
}
}
.active {
background: #ffffdd;
}
}
}
.sidebar {
@@ -1420,7 +1311,7 @@
font-size: 12px;
td {
padding: 0 0 0 10px;
padding: 0 0 0 10px !important;
border-top: 0;
}
@@ -1428,7 +1319,7 @@
border-color: #d4d4d5;
border-right-width: 1px;
border-right-style: solid;
padding: 0 5px;
padding: 0 5px !important;
}
tbody {
@@ -1438,23 +1329,6 @@
width: 49%;
}
&.tag-code td,
td.tag-code {
background-color: #f0f0f0 !important;
border-color: #d3cfcf !important;
padding-top: 8px;
padding-bottom: 8px;
// td.selected-line, td.selected-line pre {
// background-color: #ffffdd !important;
// }
}
// &.same-code {
// td.selected-line, td.selected-line pre {
// background-color: #ffffdd !important;
// }
// }
.removed-code {
background-color: #ff9999;
}
@@ -1547,12 +1421,6 @@
}
}
.code-view {
overflow: auto;
overflow-x: auto;
overflow-y: hidden;
}
.repo-search-result {
padding-top: 10px;
padding-bottom: 10px;
@@ -2408,3 +2276,11 @@ tbody.commit-list {
border-left: 0 !important;
margin: 0 !important;
}
.tag-code,
.tag-code td {
background-color: #f0f0f0 !important;
border-color: #d3cfcf !important;
padding-top: 8px;
padding-bottom: 8px;
}