summaryrefslogtreecommitdiffstats
path: root/public/css
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve suppressed diff boxes (#3193)silverwind2017-12-141-1/+1
|
* Rework button styles on repo and commit page (#3104)silverwind2017-12-071-1/+1
|
* fix button heights on commits page (#3091)silverwind2017-12-051-1/+1
|
* Add reactions to issues/PR and comments (#2856)Lauris BH2017-12-041-1/+1
|
* Remove box-shadow from UI, fix dashboard issue (#3065)silverwind2017-12-031-1/+1
|
* Fix misalignment issue in repo header (#3062)silverwind2017-12-021-1/+1
|
* Dashboard: Fix line height problem in issue titles (#3054)silverwind2017-12-021-1/+1
|
* Expandable commit bodies (#2980)Sondre Nilsen2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Initial working state of expandable commit bodies * Fix all commits having showing button for multiline commits * Refactor checking multiline messages method * Force newlines with <br> in commit body * Show multiple lines in the list view of repositories * Fixed proper newlines and minor refactor Use <pre> instead of <p>, this is so we can use \n instead of having to manually place <br> into the HTML. Makes it easier to display commit bodies. * Fix commit list messages jumping around * Fix indentation in view_list.tmpl * Use vertical-align: baseline instead of top * Refactor commit button toggle function * Remove RenderCommitBodyLink function * Add comments * Add newline at the end of _repository.less * Fix long commit bodies not properly wrapping inside <pre> * Don't split on double newlines * Show the commit body in commit view * Update stylesheets * Add/fix comments and run make fmt * Fix spaces not being tabs
* Fix attachments icon size on zoom in/out (#2853)Jakub2017-11-051-1/+1
| | | | | | * fix attachments icon size on zoom in/out * make public/css/index.css
* Code/repo search (#2582)Ethan Koenig2017-10-271-1/+1
| | | Indexed search of repository contents (for default branch only)
* Add wrapping to long diff lines (#2789)Lauris BH2017-10-271-1/+1
| | | | | | | | | | * Add wrapping to long diff lines to fix #1827 * Fix css class and make changes to source (less) files * Fix wrong space indentation * Fix indentation inconsistencies and remove very old WebKit workaround
* Add branch overiew page (#2108)Bwko2017-10-261-1/+1
| | | | | | | | * Add branch overiew page * fix changed method name on sub menu * remove unused code
* Fix activity css conflit with semantic ui (#2758)Lauris BH2017-10-211-1/+1
|
* Render plain text README.txt monospaced (#2721)Jonas Franz2017-10-171-1/+1
| | | Signed-off-by: Jonas Franz <info@jonasfranz.software>
* Create new branch from branch selection dropdown (#2130)Lauris BH2017-10-151-1/+1
| | | | | | | | | | * Create new branch from branch selection dropdown and rewrite it to VueJS * Make updateLocalCopyToCommit as not exported * Move branch name validation to model * Fix possible race condition
* Add Activity page to repository (#2674)Lauris BH2017-10-151-1/+1
| | | | | | | | | | | | | | * Add Activity page to repository * Add request data for activity * Add issue data for activity * Add user unit right checks * Add releases to activity * Log repository unit loading error
* Use Semantic UI's Search component for user and repo search (#2636)harry2017-10-031-1/+1
| | | | | | | | | | | | | | | | * Use search component on org invitation user input. * Search component for collaboration and members. * Search component for repo search. * minCharacters for search input * Display full_name for user search. * Fixed missing uid query parameter for repo search. * Removed unused comment.
* Compress css with nodejs (#2580)Morlinest2017-09-241-1/+1
|
* Use standard lessc and minify CSS using Node.js (#2337)silverwind2017-09-211-3131/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use standard lessc and minify CSS using Node.js This changes the previous nonstandard `lessc` to the official one and enables CSS minification via the clean-css module. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally in node_modules so there is no dependency on binaries in PATH. Benefits include: - Allows one to have a standard lessc in PATH. - Can now use command line switches on lessc. - Minified CSS brings faster page load times and also has the benefit of discouraging contributors from editing CSS directly. To build CSS, Node.js is required along with a `npm install` to get the tools installed locally based on the information in `package.json`. The 'make stylesheet' task was modified to run without condition. This makes it easier to work on the make task itself without having to delete files. Also fixes: https://github.com/go-gitea/gitea/issues/2198 * install node, npm and modules on drone * .PHONY * use 'minify' to minify CSS
* Implementation of all repositories of a user from user->settings (#1740)Rémy Boulanouar2017-09-141-0/+3
| | | | | | | | | | | | * Implementation of all repositories of a user from user->settings * Update message when no repository found * Update according to comments * Change UI to have a better look * improved user repositories UI
* improve protected branch to add whitelist support (#2451)Lunny Xiao2017-09-141-0/+24
| | | | | | | | | | | | | | | | | | | | * improve protected branch to add whitelist support * fix lint * fix style check * fix tests * fix description on UI and import * fix test * bug fixed * fix tests and languages * move isSliceInt64Eq to util pkg; improve function names & typo
* fix wrong rendering of commit detail page (#2503)David Schneiderbauer2017-09-141-6/+6
| | | Signed-off-by: David Schneiderbauer <dschneiderbauer@gmail.com>
* * Fix fileview rendering bug #2470 (#2477)Albert2017-09-101-0/+12
|
* Move themes to plugin directory. Fixes #2372 (#2375)Michael Lustfield2017-08-2416-1356/+0
|
* Moved vendored js/css into `public/vendor` and documented sources (#1484) ↵Michael Lustfield2017-08-234-28/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#2241) * Cleaning up public/ and documenting js/css libs. This commit mostly addresses #1484 by moving vendor'ed plugins into a vendor/ directory and documenting their upstream source and license in vendor/librejs.html. This also proves gitea is using only open source js/css libraries which helps toward reaching #1524. * Removing unused css file. The version of this file in use is located at: vendor/plugins/highlight/github.css * Cleaned up librejs.html and added javascript header A SafeJS function was added to templates/helper.go to allow keeping comments inside of javascript. A javascript comment was added in the header of templates/base/head.tmpl to mark all non-inline source as free. The librejs.html file was updated to meet the current librejs spec. I have now verified that the librejs plugin detects most of the scripts included in gitea and suspect the non-free detections are the result of a bug in the plugin. I believe this commit is enough to meet the C0.0 requirement of #1534. * Updating SafeJS function per lint suggestion * Added VERSIONS file, per request
* Fix and improve dashboard repo UI (#2285)Morlinest2017-08-171-0/+11
| | | | | | | | | | | | | | | | * Fix and improve dashboard repo UI * Change order of scripts loading * Remove "mirror" tab * Remove single tab panel for "org user" * Add localization strings * Create vue component and change event for search * Add "mirrors" filter
* More tweaks to repo top panel (#2267)silverwind2017-08-131-1/+4
| | | | | | | | | | * More tweaks to repo top panel * undo hiding of compare button on master * attempt to fix ci issue * another ci attempt
* File path tweaks in UI (#2264)silverwind2017-08-061-0/+7
|
* Prevent selection of diff line numbers (#2240)silverwind2017-08-011-0/+4
|
* Remove unit types commits and settings (#2161)Lauris BH2017-07-171-0/+3
| | | | | | | | | | * Remove unit types commits and settings * Can not limit units in administrator teams * Limit changing units only to teams with read and write access mode * Small code optimization
* Fix repository settings collobration list display (#2151)Lauris BH2017-07-121-0/+3
|
* Add verify changed less-file step to Makefile (#1861)Bo-Yi Wu2017-07-121-8/+8
|
* Use monospace font in githook editor (#1958)silverwind2017-06-131-0/+3
|
* Support CRLF when splitting code lines for display (#1862)silverwind2017-06-101-1/+1
| | | | | | | | | | | | * Support CRLF when splitting code lines for display * refactor, fix mixed match * fmt * split on both LF and CRLF, use raw literals in regexes * simplify
* Prevent accidential selection of line numbers in code view (#1860)silverwind2017-06-051-0/+4
|
* Remove annoying difference in button heights. (#1853)Hussain Khalil2017-06-031-1/+0
| | | | | | | | | | * Remove annoying difference in button heights. Why was that even there? See before & after: http://imgur.com/a/yKdUR * (2/2) Remove annoying difference in button heights
* Make navbar scroll on overflow (#1777)Patrick G2017-05-241-0/+36
| | | | | | | | | | * Scrollbars on overflow of horizontal nav * Update _base.less * Add fade out on right side of overflowing nav * Update _base.less
* Add configuration option for default permission to create Organizations (#1686)Lauris BH2017-05-081-2/+2
|
* Remove sha1 hash display in repository table and add latest commit GPG check ↵Lauris BH2017-05-051-7/+14
| | | | (#1678)
* Fix static files permission under public/ (#1675)Peter Dave Hello2017-05-0516-0/+0
|
* Fix CSS for wiki markdown (#1660)Jonas Östanbäck2017-05-031-7/+7
|
* Additional OAuth2 providers (#1010)Willem van Dreumel2017-05-011-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add google+ * sort signin oauth2 providers based on the name so order is always the same * update auth tip for google+ * add gitlab provider * add bitbucket provider (and some go fmt) * add twitter provider * add facebook provider * add dropbox provider * add openid connect provider incl. new format of tips section in "Add New Source" * lower the amount of disk storage for each session to prevent issues while building cross platform (and disk overflow) * imports according to goimport and code style * make it possible to set custom urls to gitlab and github provider (only these could have a different host) * split up oauth2 into multiple files * small typo in comment * fix indention * fix indentation * fix new line before external import * fix layout of signin part * update "broken" dependency
* Fix #1418 (#1456)Antoine GIRARD2017-04-071-59/+11
|
* Simplify settings pages with item list (#1389)Antoine GIRARD2017-03-301-47/+35
| | | | | | | | | | * Remove point column on ssh key setting page * Remove un-used css * Some cleaning * Use octicon-key
* GPG commit validation (#1150)Antoine GIRARD2017-03-221-2/+33
| | | | | | | | | | | | * GPG commit validation * Add translation + some little fix * Move hash calc after retrieving of potential key + missing translation * Add some little test
* Improve style of user OpenID setting page (#1324)Sandro Santilli2017-03-201-23/+25
| | | * Improve user openid list CSS and regenerate CSS
* Fix missing less sources for oauth (#1288)Antoine GIRARD2017-03-171-32/+32
|
* Cleaner ui for admin, repo settings, and user settings page (#1269) (#1270)Patrick G2017-03-151-0/+8
|
* Cleaner UI for explore page (#1253) (#1255)Patrick G2017-03-151-0/+8
| | | | | | | * Take navbar out of column * Add styles to navbar * Changed navbar classes * Remove unneeded !important from index.css * Remove unneeded !important from _explore.less
* Batch updates for issues (#926)Ethan Koenig2017-03-151-0/+3
|