diff options
author | Benno <blueworrybear@gmail.com> | 2019-11-15 10:52:59 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-11-15 10:52:59 +0800 |
commit | 149a9df9e8e7e91c813232fb82e644b0d3369b09 (patch) | |
tree | cfb677cde7578ad448a201224522c50b227a6097 /public/css | |
parent | 42ada741e3360b14ede8772aa1a2dd3e83209033 (diff) | |
download | gitea-149a9df9e8e7e91c813232fb82e644b0d3369b09.tar.gz gitea-149a9df9e8e7e91c813232fb82e644b0d3369b09.zip |
Expand/Collapse Files and Blob Excerpt while Reviewing/Comparing code (#8924)
* update #8659 fold/unfold code diffs
* add fold button style
* update #8659 implement expand up/down codes (blob excerpt)
* fix golint errors
* fix expand direction
* remove debug message
* update css style for blob exceprt
* fix typo in comment
* update style sheet with less
* update expect diff (add SectionInfo)
* update #8942 accept suggested change (fix typo)
* close reader and check file type before get tail section
* adjust button position and check file type before insert fold button
* move index js to web_src
* merge index.js with master
* generate index.js
* update js coding style
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/index.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/public/css/index.css b/public/css/index.css index a6bed125e5..100870c1b2 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -898,6 +898,7 @@ tbody.commit-list{vertical-align:baseline} .repo-buttons .disabled-repo-button a.button:hover{background:0 0!important;color:rgba(0,0,0,.6)!important;box-shadow:0 0 0 1px rgba(34,36,38,.15) inset!important} .repo-buttons .ui.labeled.button>.label{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} +td.blob-excerpt{background-color:#fafafa} .issue-keyword{border-bottom:1px dotted #959da5;display:inline-block} .file-header{display:flex;justify-content:space-between;align-items:center;padding:8px 12px!important} .file-info{display:flex;align-items:center} @@ -1068,4 +1069,8 @@ tbody.commit-list{vertical-align:baseline} .comment-code-cloud .footer:after{clear:both;content:"";display:block} .comment-code-cloud button.comment-form-reply{margin:.5em .5em .5em 4.5em} .comment-code-cloud form.comment-form-reply{margin:0 0 0 4em} -.file-comment{font:12px 'SF Mono',Consolas,Menlo,'Liberation Mono',Monaco,'Lucida Console',monospace;color:rgba(0,0,0,.87)}
\ No newline at end of file +.file-comment{font:12px 'SF Mono',Consolas,Menlo,'Liberation Mono',Monaco,'Lucida Console',monospace;color:rgba(0,0,0,.87)} +.ui.fold-code{margin-right:1em;padding-left:5px;cursor:pointer;width:22px;font-size:12px} +.ui.fold-code:hover{color:#428bca} +.ui.blob-excerpt{display:block;line-height:20px;font-size:16px;cursor:pointer} +.ui.blob-excerpt:hover{color:#428bca}
\ No newline at end of file |