summaryrefslogtreecommitdiffstats
path: root/public
Commit message (Collapse)AuthorAgeFilesLines
* Fix fork button (#6223)John Olheiser2019-03-052-1/+21
|
* Make organization dropdown scrollable when using mouse wheel (#5988)Muhammed TİFTİKÇİ2019-03-042-28/+7
| | | * Fix #5580
* UI: Fix race in update issue labels and assignees (#6194)silverwind2019-02-284-31/+34
| | | | | | | | | | Fix #6191 * fix issue update race condition * fix similar race same race when clearing assignee * always load promise polyfill * replace es6-promise with promise-polyfill * move promise-polyfill to <head>
* UI: Style tweaks to issue selection (#6196)silverwind2019-02-272-2/+5
| | | | - Prevent jump in layout when selecting the first issue - Remove useless padding on top of first issue
* UI: Fix scrollbar always present on page body (#6177)silverwind2019-02-252-3/+3
|
* UI: Make document body a flexbox (#6139)silverwind2019-02-2410-17/+6
| | | | | | | | | | | | * UI: Make document body a flexbox Fixes: https://github.com/go-gitea/gitea/issues/6118 * ie11 fixes * increase padding to 80px * add flex-grow
* Minor UI tweaks (#5980)John Olheiser2019-02-195-33/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove all CommitStatus when a repo is deleted Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor UI tweaks (#5782) Added 'No License' option Added link and octicon change for external issue trackers Reset password now notifies right away if the code is invalid Signed-off-by: jolheiser <john.olheiser@gmail.com> * More UI tweaks More info in PR * Generate stylesheet for arc-green * Make gofmt work * Change PR integration since the button is changed * Rebase * Generate stylesheet * UI updates Made the PR button a "basic" button Vertically centered the issue checkboxes Labels will update only once after modal is closed * Commit to reference related issues Resolves #5782 Resolves #5861 Addresses original question in #5993 * Change the comment wording since PR button is no longer little and green. * Revert changes that made Windows work * Regenerate stylesheet * Regenerate stylesheets * make generate-stylesheets * Update integration again, changed button style Signed-off-by: jolheiser <john.olheiser@gmail.com> * Added ID to PR button Changed integration to use the ID to avoid breaking in the future * Added missing semi-colons * Added back distinction between issue actions and filters (overlooked it before) Moved action button over next to other action dropdowns * Remove extra tab formatting in list.tmpl * Remove more formatting from GoLand * Replace hardcoded "No License" with i18n license helper.
* Fix heatmap and repository menu display in Internet Explorer 9+ (#6117)Lauris BH2019-02-194-8/+120
|
* dashboard: sort Repositories widget by most recently updated (issue #3963) ↵Allen Wild2019-02-191-1/+3
| | | | | | | | (#4599) Similar to Github and other git hosting sites, sort the user's repos on the dashboard by last updated rather than alphabetically. An alphabetic sort isn't very useful once a user has more than 15 repos and wants quick access to recent ones that aren't in the first part of the alphabet.
* Allow labels to contain emoji (#6063)John Olheiser2019-02-162-7/+11
| | | | | | | | | | | | | | | | | | | * Add emoji to labels Minor cleanup of tribute code in footer.tmpl Signed-off-by: jolheiser <john.olheiser@gmail.com> * Quick find/replace in other i18n files containing label translations Signed-off-by: jolheiser <john.olheiser@gmail.com> * Revert "Quick find/replace in other i18n files containing label translations" This reverts commit ec3e1a3a1775989301bb2c1cd08e8871b317688d. * Add style to overwrite emoji height in labels * Revert Makefile change that makes Windows work
* Revert "Fix wrapping long code lines in UI" (#6074)silverwind2019-02-153-8/+22
| | | | | This reverts commit e5cd80e0219f10818f43e8cab6b9c814cb1cd796. Fixes: https://github.com/go-gitea/gitea/issues/6064
* Add autoprefixer to css build (#6029)silverwind2019-02-114-19/+1
| | | | | | * Add autoprefixer to css build * also use autoprefixer on theme files
* UI: Make dashboard navbar and footer full-width (#6013)silverwind2019-02-093-3/+11
| | | | | | | | * UI: Make dashboard navbar full-width * more tweaks: full-width footer and consistent padding * fix page layout causing unneccesary scrollbars on small pages
* UI: Make navbar full width (#5998)silverwind2019-02-082-1/+7
|
* UI: Fix repo header issues (#5995)silverwind2019-02-072-7/+4
| | | Fixes: https://github.com/go-gitea/gitea/issues/5985
* Support n as a line highlight prefix (#5987)Monty Taylor2019-02-061-2/+2
| | | | | | | | | | | | | | | We're working on rolling out gitea as a replacement for a fairly large cgit installation. Part of this involves a metric ton of mod_rewrite rules so that links people have out in the wild will still work. Unfortunately, cgit uses #n1 in the url to indicate a single line highlight, which doesn't get passed to the server and therefore can't be rewritten. We've got a local workaround by shoving a script block into a custom header template, but thought it might be nicer to upstream a simple patch to support #n as a prefix for single line highlights. (luckily for simplicity, cgit does not support ranges) Signed-off-by: Monty Taylor <mordred@inaugust.com>
* UI: Dashboard tweaks (#5974)silverwind2019-02-062-3/+2
| | | | | - Don't show divider below heatmap when it's hidden via media-query - Make divider between user menu adhere to container width - Remove excessiv margins on heatmap
* UI: Repo header tweaks (#5945)silverwind2019-02-054-9/+36
| | | | | | | | | | | | | | | | * UI: Repo header tweaks - Use basic buttons on the header buttons, matching gogs - Make 'Manage topic' text smaller, remove margin-left with no topics present - Move various inline styles to CSS - Use flexbox on header title and buttons * fix indentation * reverse media query wrapping * fix inconsisten whitespace
* UI: Fixes for repo topic editor (#5971)silverwind2019-02-051-8/+7
| | | | - Properly hides the edit interface when saving a empty topic list - Align the Done button with the edit box
* Fix wrapping long code lines in UI (#5927)silverwind2019-02-023-22/+8
| | | | | | | | | | | | | Wrapping was initially added in https://github.com/go-gitea/gitea/pull/2789 but it is currently disabled because the rule that applies wrapping to the wrap class did not have enough CSS specificity. Resolved the issue by using a general selector that matches all code boxes. The previous wrap class was removed because it had only been inconsistenly applied to various code boxes and because I found no easy way to add classes to code boxes rendered in Markdown. Also removed a seemingly useless :before on code view and added padding to restore the spacing.
* UI: Correct footer height if screen-width is to small (fixes #5878) (#5889) ↵EpicCoder2019-01-293-8/+10
| | | | (#5889)
* UI: Change GPG Validation colors and remove inline CSS; fixes #5404 (#5896)EpicCoder2019-01-294-4/+19
|
* Feature: Archive repos (#5009)kolaente2019-01-232-1/+9
|
* Add the ability to use multiple labels as filters(#5786)Lauris BH2019-01-222-3/+6
|
* Allow markdown table to scroll (#4401)pgodwin2019-01-212-1/+2
| | | | | | * Allow markdown table to scroll `overflow:auto` isn't effective when a table is wider than the container. Adding `display:block` fixes this issue.
* Don't list an issue on its own dependency list UI. (#5658)Harshit Bansal2019-01-151-1/+7
| | | Fixes: #4684.
* Discord Oauth2 support (#4476)techknowlogick2019-01-131-0/+0
| | | | | | | | | | | | | | * add discord auth * add vendor for discord * fix syntax error * make fmt * update version of goth in use * update markbates/goth
* Display branch name in delete branch confirmation modal. (#5654)Harshit Bansal2019-01-061-2/+2
| | | Fixes: #5630.
* Fix wrong text getting saved on editing second comment on an issue. (#5608)Harshit Bansal2018-12-311-1/+1
| | | | | | | | | | | | | | | | * comments: Fix an incorrent DOM element selection. This commit fixes a bug that was causing text from previously edited comment to get saved when two comments were edited one after other. Text area with id of `#content` isn't unique on the page but it was being treated as unique by the event handling code. Fixes: #5581. * templates: Remove `id` from textarea in commit edit form. An element is assigned an `id` only if it is unique for the whole page but in this case there can be multiple textarea so it should have one.
* LDAP via simple auth separate bind user and search base (#5055)Tony Homrich2018-12-271-2/+4
|
* Immediate fix to htmlEncode user added text (#5570)zeripath2018-12-211-5/+9
| | | | | There are likely problems remaining with the way that initCommentForm is creating its elements. I suspect that a malformed avatar url could be used maliciously.
* Fix heatmap colors for Chrome/Safari (#5421)Lauris BH2018-11-281-1/+6
|
* Create Progressive Web App (#4730)SohnyBohny2018-11-272-0/+0
| | | | | | | | | | | | | | | | | | | | | | * Create manifest and serviceworker * Create templates and add AppSubUrl * Add JSRenderer * fix ctx type * Add JSRenderer to static.go * Complete adding {{AppSubUrl}} * Add more fonts to urlsToCache * Add 512px and 192px icons * Hardcode font MD5 * Default theme doesn't have a specific CSS file
* Refactor heatmap to vue component (#5401)Lauris BH2018-11-2711-350/+236
|
* Fix dependent issue searching when gitea is run in subpath (#5392)Lauris BH2018-11-251-1/+1
|
* Show review summary in pull requests (#5132)kolaente2018-11-222-1/+33
|
* Implement pasting image from clipboard for browsers that supports that (#5317)Lauris BH2018-11-141-0/+82
|
* Fix U2F if gitea is configured in subpath (#5302)Lauris BH2018-11-081-9/+9
|
* Fix #5226 by adding CSRF checking to api reqToken and add CSRF to the POST ↵zeripath2018-11-031-0/+4
| | | | | | | | | | header for deadline (#5250) * Add CSRF checking to reqToken and place CSRF in the post for deadline creation Fixes #5226, #5249 * /api/v1/admin/users routes should have reqToken middleware
* Fixed wrong api request url for instances running in subfolders (#5247)kolaente2018-11-031-1/+1
|
* Fix emojis not showing in commit messages (#5168)James Anderson2018-10-291-0/+5
| | | | | Fixes #5150 Signed-off-by: James Anderson <james@jamesa.me>
* User action heatmap (#5131)kolaente2018-10-239-1/+387
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added basic heatmap data * Added extra case for sqlite * Built basic heatmap into user profile * Get contribution data from api & styling * Fixed lint & added extra group by statements for all database types * generated swagger spec * generated swagger spec * generated swagger spec * fixed swagger spec * fmt * Added tests * Added setting to enable/disable user heatmap * Added locale for loading text * Removed UseTiDB * Updated librejs & moment.js * Fixed import order * Fixed heatmap in postgresql * Update docs/content/doc/advanced/config-cheat-sheet.en-us.md Co-Authored-By: kolaente <konrad@kola-entertainments.de> * Added copyright header * Fixed a bug to show the heatmap for the actual user instead of the currently logged in * Added integration test for heatmaps * Added a heatmap on the dashboard * Fixed timestamp parsing * Hide heatmap on mobile * optimized postgresql group by query * Improved sqlite group by statement
* fix fading menu in arc-green theme (#5128)glaszig2018-10-202-1/+6
| | | | | | | | | | | * fix fading menu in arc-green theme the menu faded white because it missed proper styling. only visible on viewports narrower than 1200px. * Generate minimized css * compiled arc-green.less to apply changes from 76e4f9a58
* Fix #rrggbbaa color to rgba for better browser compatibility (#4990)SagePtr2018-09-292-3/+3
|
* Fix layout of the topics editing form (#4971)Iwasa Kazmi2018-09-293-4/+3
| | | | | | | | | | | | | | | | | | | | | * Fix layout of the topic edit. - made right-hand column wider so that it has enough space for "Done" button. - fixed issue that jQuery's .show() breaks functionality of the Semantic UI Grid. * Improve switching visibility of the topic edit Changes to support old browsers that doesn't support 'flex' keyword. - Removed style "display: none" from index.css so that the grid can be displayed without specifying new "display" style. - Added style "display:none" to the grid element in HTML template as the initial style. - In index.js, visibility of the grid element is changed by set "display:none" style to the element or removing it from the element.
* Fix user menu item styling (#4985)silverwind2018-09-272-1/+6
|
* Fix preview when adding new code review comment (#4975)Lauris BH2018-09-251-10/+3
|
* Code review UI improvements and bugfixes (#4682)Lauris BH2018-09-175-16/+68
| | | | | | | | | | | | | | | | * Code review UI improvements * More fixes to dark theme * Style fix * Fix to allow add code review comments only on review files tab * More readability dark style fixes * Fix commenting on deleted files. Fixes #4752 * Fix line blame getting for multiple corner cases
* fix: Crippled diff (#4726) (#4900)Toni Villena2018-09-092-1/+4
| | | | | | * fix: Crippled diff (#4726) * Regenerate css
* Improve dependency UI (#4503)Lauris BH2018-09-073-1/+13
|