summaryrefslogtreecommitdiffstats
path: root/apps/comments
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-10-234-2/+4
|
* Merge pull request #11905 from nextcloud/design/noid/tab-iconsRoeland Jago Douma2018-10-191-0/+4
|\ | | | | Add icon to file sidebar tabs
| * Add icon to file sidebar tabsJulius Härtl2018-10-181-0/+4
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Add .l10nignore files for compiled assetsMorris Jobke2018-10-191-0/+2
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Move more comments to compiled handlebarsRoeland Jago Douma2018-10-155-27/+56
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-10-052-0/+2
|
* Remove leftover 'Roeland Jago Douma2018-10-043-5/+5
| | | | | | Followup to #11583 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move Comments to compiled handlebarsRoeland Jago Douma2018-10-046-56/+128
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Redirect guests to login if they follow the link of a comment ↵Joas Schilling2018-10-022-57/+121
| | | | | | mention-notification Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2018-09-252-12/+12
|
* [tx-robot] updated from transifexNextcloud bot2018-09-234-2/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-09-222-2/+2
|
* Merge pull request #11258 from nextcloud/fix-contacts-menu-on-mentionsblizzz2018-09-182-8/+12
|\ | | | | Fix contacts menu on mentions
| * Fix position of contacts menu shown on mentionsDaniel Calviño Sánchez2018-09-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | There are no default CSS rules for the contacts menu, as its position depends on the element on which it is shown. Note, however, that if no explicit rules are provided the contacts menu on mentions is affected by the rules for the contacts menu on shares from the sharing tab. The contacts menu is now positioned to show the tip of the arrow horizontally aligned with the center of the avatar, and with the top of the menu slightly below the bottom border of the mention. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Fix contacts menu not triggered on certain areas of a mentionDaniel Calviño Sánchez2018-09-151-8/+7
| | | | | | | | | | | | | | | | | | | | The contacts menu was triggered only when the avatar or the name of the user were clicked. Due to this, clicking on certain (small) areas of a mention (like the right end, or the space between the avatar and the name) did not show the contacts menu. Now the contacts menu is shown when any area of the mention is clicked. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Merge pull request #11257 from ↵blizzz2018-09-181-0/+3
|\ \ | |/ |/| | | | | nextcloud/prevent-comment-being-composed-from-overlapping-the-submit-button Prevent comment being composed from overlapping the submit button
| * Prevent comment being composed from overlapping the submit buttonDaniel Calviño Sánchez2018-09-061-0/+3
| | | | | | | | | | | | | | | | | | The submit button is placed in the text area using absolute positioning, so it is not taken into account when calculating the text layout. Due to this it is necessary to add an explicit padding to the right of the text area to prevent the text from overlapping the submit button. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | [tx-robot] updated from transifexNextcloud bot2018-09-144-0/+4
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-132-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2018-09-104-0/+4
|/
* Merge pull request #11064 from ↵Roeland Jago Douma2018-09-053-32/+55
|\ | | | | | | | | nextcloud/fix-markup-and-style-of-mentions-in-comments Fix markup and style of mentions in comments
| * Add new line at the end of fileDaniel Calviño Sánchez2018-09-051-1/+1
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Ensure that the avatar and the user name will be kept togetherDaniel Calviño Sánchez2018-09-051-0/+4
| | | | | | | | | | | | | | Otherwise a line break could be added between the avatar and the user name when the wrapper is close to the right border of the message. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Remove unneeded CSS rule for mentionsDaniel Calviño Sánchez2018-09-051-1/+5
| | | | | | | | | | | | | | | | Most of the properties of the rule are not needed for mentions, so the rule is no longer applied to them; the only needed property was moved to the main rule for mentions. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Fix pointer cursor not shown on avatarsDaniel Calviño Sánchez2018-09-051-1/+3
| | | | | | | | | | | | | | | | | | | | When the cursor is on an avatar wrapper the cursor is shown as a pointer to inform the user that it can be clicked (which will either show the contacts menu or insert a mention, depending on the case); the cursor must be explicitly defined for the "img" element that shows the avatar too, or otherwise the default cursor would be shown. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Highlight mentions to the current userDaniel Calviño Sánchez2018-09-051-0/+4
| | | | | | | | | | | | | | Like done in Talk, mentions to the current user are now shown with the primary colors to make them more prominent. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Ensure that the user name is shown in bold in mentionsDaniel Calviño Sánchez2018-09-051-0/+5
| | | | | | | | | | | | | | | | | | Different browsers use different font weights for strong elements (Chromium uses "bold", but Firefox uses "bolder", which is relative to the font weight of the parent), so now the user name in mentions is explicitly shown with a bold weight. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Reformat embedded HTML code to resemble HTML codeDaniel Calviño Sánchez2018-09-051-27/+31
| | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Remove space between avatar and user nameDaniel Calviño Sánchez2018-09-051-3/+3
| | | | | | | | | | | | | | | | | | | | | | The avatar should be shown immediately after the avatar to be able to accurately define the space between them using only CSS rules. Note that in the case of the "atwho" menu it is not really needed, as a whitespace removal seems to be done automatically by the plugin, but it was modified for its displayed elements too for consistency. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
| * Show avatar using "span" instead of "div"Daniel Calviño Sánchez2018-09-052-8/+8
| | | | | | | | | | | | | | | | Visually it makes no difference, but as the ".avatar" element is inside a "span" element it can not be a block element to be compliant with the HTML specification. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | Update version requirements and versions of shipped appsJoas Schilling2018-09-051-2/+2
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2018-09-012-0/+2
|
* Merge pull request #10913 from ↵Morris Jobke2018-08-301-16/+20
|\ | | | | | | | | nextcloud/do-not-parse-html-in-user-id-and-display-name Do not parse HTML in user id and display name
| * Do not parse HTML in user id and display nameJoas Schilling2018-08-281-16/+20
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | [tx-robot] updated from transifexNextcloud bot2018-08-302-0/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2018-08-292-0/+2
|/
* [tx-robot] updated from transifexNextcloud bot2018-08-272-0/+2
|
* Fix contactsmenu for mentioned users in commentsJulius Härtl2018-08-251-1/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2018-08-252-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-08-2410-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-08-2336-36/+0
|
* [tx-robot] updated from transifexNextcloud bot2018-08-132-0/+2
|
* Bump autoloadersRoeland Jago Douma2018-08-101-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-08-082-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-07-282-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-07-272-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2018-07-26130-130/+130
|
* Merge pull request #9222 from ↵Morris Jobke2018-07-258-48/+421
|\ | | | | | | | | nextcloud/feature/noid/search-for-files-by-comments Allow to search files by comments
| * Brighter comments iconMorris Jobke2018-07-251-1/+3
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
| * Add pagination supportJoas Schilling2018-07-251-17/+30
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>