1. 12 Jun, 2022 4 commits
  2. 11 Jun, 2022 5 commits
  3. 10 Jun, 2022 7 commits
  4. 09 Jun, 2022 3 commits
  5. 08 Jun, 2022 6 commits
  6. 07 Jun, 2022 6 commits
  7. 06 Jun, 2022 6 commits
  8. 05 Jun, 2022 3 commits
    • Wim's avatar
      Update MAINTAINERS (#19896) · d9b50e4f
      Wim authored
      Added myself as maintainer
      [List of PRs](https://github.com/go-gitea/gitea/pulls?q=is%3Apr+author%3A42wim+is%3Aclosed)
      Unverified
      d9b50e4f
    • André Jaenisch's avatar
      Add alt text to logo (#19892) · 73382d21
      André Jaenisch authored
      
      The recommended way is to use the name of the organisation followed
      by "logo". however, since this is my first contribution, I am not
      entirely sure, whether this is the best approach here.
      
      The organisation is different from the organisation you can create as
      part of the application. Instead, it is more related to the site
      hosting the instance. Plus, I don't know how to best handle it when
      the logo image is swapped out. Therefore, I use plain "Logo" and hope
      that the person visiting the site has enough context.
      Signed-off-by: default avatarAndré Jaenisch <andre.jaenisch@posteo.de>
      Co-authored-by: default avatarLunny Xiao <xiaolunwen@gmail.com>
      Unverified
      73382d21
    • Martijn de Boer's avatar
      Limit max-height of CodeMirror editors for issue comment and wiki (#18271) · 89a8b3e1
      Martijn de Boer authored
      * Make the wiki editor bar sticky for longer wiki edits
      
      On codeberg community it was requested to make the wiki editor toolbar sticky for longer wiki posts, so one wouldn't have to scroll to the top to use it. (Reference; https://codeberg.org/Codeberg/Community/issues/533
      
      ).
      
      In order to make this happen, the .editor-toolbar class needs to become position: sticky, and we need to fix it's transparent background and border-bottom. Because the bottom disappears, we add it. This makes the border become a double border, because the CodeMirror area defines borders for all. As such I've added a border-top: none, on the wiki write tab for the CodeMirror class.
      
      * Make the issue bar in the issue view sticky for issue #10675
      
      In issue #10675 it's requested to make the issue bar sticky upon scrolling in the issue view. The proposed change changes inline html, which is not desirable. As such I've added the position sticky option to it's container, and fix the background upon scrolling.
      
      * Make linter happy on _repository.less
      
      Fix 0px -> 0 to make the linter happy.
      
      * Make linter happy on _editor.less
      
      Fix 0px -> 0 to make the linter happy.
      
      * Change z-index to the lowest boundary of 1
      
      As per review of @silverwind change the z-index to it's lowest requirement of 1.
      
      * Change z-index to the lowest boundary of 1
      
      As per review of @silverwind change the z-index to it's lowest requirement of 1.
      
      * Revert changes made to wiki editor (unsticky) and add max-height
      
      Fixes the max-height to 85vh, on the proposed 90vh it just came out just slightly too large.
      Unstickies the changes from the sticky commits.
      
      * Revert changes for the sticky title editor
      
      Removes the changes as done by the sticky title editor.
      
      * Add max-height definition to CodeMirror-scroll
      
      Add the max-height definition for the CodeMirror-scroll class in order to generalize the changes spoken about in PR #18271
      
      * Remove CodeMirror-scroll definition
      
      Remove the max-height in CodeMirror-scroll definition, in order to generalize it in the CodeMirror less file. As per discussion in #18271.
      
      * fine tune CodeMirror min-height/max-height
      Co-authored-by: default avatar6543 <6543@obermui.de>
      Co-authored-by: default avatarwxiaoguang <wxiaoguang@gmail.com>
      Co-authored-by: default avatarLunny Xiao <xiaolunwen@gmail.com>
      Unverified
      89a8b3e1