diff options
author | Unknwon <u@gogs.io> | 2017-07-14 16:50:49 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-07-14 16:50:49 -0400 |
commit | c970c4ee41bc98515ed37a92dfc7dbe125e213e1 (patch) | |
tree | e9ae7c8b98c360bb836b368c2175637e8fc10f80 /public/css/gogs.css | |
parent | 3a6623104f7725905e2b14582579abea1590cec3 (diff) |
css: not include line numbers in diff selection (#4584)
Changed template file in order to make CSS work properly.
Diffstat (limited to 'public/css/gogs.css')
-rw-r--r-- | public/css/gogs.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index e3e5b573..4c3b03db 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -2140,6 +2140,9 @@ footer .ui.language .menu { padding: 0 5px; user-select: none; } +.repository .diff-file-box .code-diff .lines-num::before { + content: attr(data-line-number); +} .repository .diff-file-box .code-diff .lines-num.lines-num-old, .repository .diff-file-box .code-diff .lines-num.lines-num-new { cursor: pointer; |