Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
AgeCommit message (Collapse)Author
2019-10-14Fix the conversations iconJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-10-09Add temporary message featureMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-10-09Create AdvancedInput componentMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-10-09Add MessageList component and DynamicScrollerMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-10-08Merge pull request #2281 from nextcloud/bugfix/noid/better-start-call-settingJoas Schilling
Better start call setting
2019-10-07Add lobby checkbox instead of radio buttons for enabling lobbyIvan Sein
Signed-off-by: Ivan Sein <ivan@nextcloud.com>
2019-10-07Increase the length of the input for other languagesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-09-26Add support for Talk sidebar in public share pagesDaniel Calviño Sánchez
When the public share page is loaded "publicshare.js" is initialized, which modifies the page to add a Talk sidebar. The default layout has the header, content and footer in a flex column; when the sidebar is added the layout id modified to still have the header and content in a flex column, but the content is now a flex row that includes "#app-content" and the sidebar, and the footer is moved inside "#app-content" so it does not affect the sidebar. The Talk sidebar includes a call container at the top, which is only shown during calls, and below it a call button and a chat view which are always shown. The CSS styles are a mix of the styles for the public share auth page and the Files app, as well as some rules copied from the main "style.scss" file. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-09-26Fix avatar container height during callsDaniel Calviño Sánchez
The absolute position causes the avatar container to have a different height when the contained div has a text (guest avatars) or not (user avatars, which use an image); now the flex property is propagated, which causes the container to always have the same size as the contained div. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-09-26Show volume indicator in greyscale when speaking while mutedDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-09-13Add lobby icon from "room service" Material Design iconDaniel Calviño Sánchez
Copied from "places/svg/production/ic_room_service_24px.svg" of "https://github.com/google/material-design-icons", tag 3.0.1. Material Desig icons 3.0.1 are licensed under the Apache 2 License. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-09-05Prevent chat from being compressed in narrow screensMarco Ambrosini
When the sidebar is shown the app content is compressed to make room for the sidebar. In narrow screens (and specially in very narrow screens) this broke the appearance of the app content (unreadable chat, unusable call view), so now the app content is forced to keep the full viewport width on narrow screens; this causes the sidebar to slide over the app content instead of compressing it. Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-08-28Add input to set the lobby timerDaniel Calviño Sánchez
Unfortunately the date picker component from Nextcloud only allows picking a date, but not a time; there is a date time picker for Vue, but integrating only that right now would require much effort. Therefore, for the time being, the start time needs to be introduced manually. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Add UI to set the lobby stateDaniel Calviño Sánchez
The lobby state can be set to no lobby or to lobby for non moderators from the room management menu; in this initial version no date can be set yet. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Replace "Copy link" tooltip with explicit labelDaniel Calviño Sánchez
Now that the management actions were moved to a menu there is enough room to show a label for the "Copy link" button. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Remove unneeded CSS rulesDaniel Calviño Sánchez
The rules just set the same values used by buttons by default. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Remove no longer needed parent element of "Copy link" buttonDaniel Calviño Sánchez
The "share-link-options" element acts as a spacer to move the room moderation menu button to the right. However, given that the call button width is limited to the 50% of its parent flex element and that element has the full width of the sidebar the same effect can be achieved by setting "margin-left: auto" on the room moderation button. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Reorder flex CSS rules for call buttonDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Move password from its own menu to the room moderation menuDaniel Calviño Sánchez
The password input is no longer the only element of the menu so pressing "Esc" does not close the menu. There is no longer a password button in the CallInfoView, so now the acceptance tests need to open the room moderation menu to know if the conversation is password protected or not. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Move checkbox to change between public and group room to a menuDaniel Calviño Sánchez
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Fix avatars of participants with contacts menu not focusableDaniel Calviño Sánchez
The avatar is a div, so it is not focusable by default. However, if it were focused it could not be properly "highlighted" with a border; the whole avatar is dimmed for offline participants, so the border colour would be different when "highlighting" the avatar of online and offline participants. Due to this the avatar is now wrapped in another div which is the focusable one (provided the avatar has a contacts menu) and the one that gets the border. Finally, when the Enter or space keys are pressed on the wrapper a click is triggered in the avatar, which shows the contacts menu. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Fix pointer cursor not shown on participants with a contacts menuDaniel Calviño Sánchez
When the current user is an actual user and not a guest clicking on the avatar of a participant shows the contacts menu (unless the participant is the current user or a guest), so when hovering on the avatar the cursor should be a pointer to imply a possible interaction. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Fix participant items being focusableDaniel Calviño Sánchez
The participant items were link elements, so they were taken into account in keyboard navigation. However, although it is possible to interact with some of its children, it is not possible to interact with the participant item as a whole, so they should not be focusable. As the link in the participant items led nowhere they are now simple span elements instead of links. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Remove unused CSS ruleDaniel Calviño Sánchez
The first link child of items in the participants list is the participant information, which includes the avatar, name... However, there is no direct "img" child of that element (the avatar image is a child of the avatar element), so the rule has no effect. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Fix edit button in EditableTextLabel not focusableDaniel Calviño Sánchez
The edit button was not an actual button but a span, so it was ignored in keyboard navigation. Moreover, the opacity was applied to its parent element instead of to the button itself, so it was not highlighted when focused. Also, after the input is hidden now the focus is given back to the edit button. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-28Fix select2 containers not highlighted when focusedDaniel Calviño Sánchez
The select2 containers have the same size as the "oca-spreedme-add-XXX" wrappers that contain them, so the borders can be moved from those wrappers to the containers themselves. This makes possible to set a stronger border when the select2 container is active/focused. Besides that now the text is stronger too when the select2 container is focused to show that more clearly. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-27Wait for the server response to rename the roomDaniel Calviño Sánchez
Until now the EditableTextLabel was not (visibly) updated until the server response was received, even if the model was updated as soon as the new value was submitted (although this updated the hidden label, which was shown again once the response was received). To provide feedback to the user that the value is being set now the confirm button is replaced by a working icon while waiting for the response. In a similar way the input is also disabled to prevent further requests while the previous one is ongoing. Besides that, renaming the room now waits for the server response before updating the model. This ensures that, in case of error, the label will still show the old value instead of the new one. An error message is now also shown to the user in that case. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-27Simplify CSS rules for confirm icon in editable text labelDaniel Calviño Sánchez
The input wrapper only contains the text input and the confirm button; as there will not be more than one confirm button there is no need to set its rules based on the text input. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-27Provide feedback while waiting for the server to set the passwordDaniel Calviño Sánchez
Due to its special nature the password is not stored in an attribute of the model. Nevertheless, a "changed:password" (always with an empty value) was triggered as soon as the password was submited. However, as there is no password attribute that event is not taken into account anywhere and the UI was not updated until the server response was received (with further updates once the rooms are fetched again). To provide feedback to the user that the password is being set now the confirm button is replaced by a working icon while waiting for the answer. In a similar way the input is also disabled to prevent further requests while the previous one is ongoing. Note that due to the aforementioned behaviour it is not really necessary to wait for the server response to update the model with the new password (as it will not be updated anyway), but it is done for consistency with other requests. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-08-27Wait for the server response to set the room as public or privateDaniel Calviño Sánchez
Until now the model was updated as soon as the checkbox was modified, which triggered a change event that in turn caused the UI to be updated. However, if the room could not be successfully set as public or private nothing was done and the model as well as the UI were kept with the wrong state (at least, until the model is fetched again). To prevent this now the model waits for a successful server response to update the attributes; in case of failure only the checkbox needs to be restored, as it is the only UI element that changed due to the direct interaction of the user (in case of success the whole view will be rendered again due to the room type change, so no need to do anything explicitly in that case). As the model is not changed until the successful server response is received now the checkbox is replaced by a working icon while waiting for the answer. In a similar way the checkbox is also disabled to prevent further requests while the previous one is ongoing. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-19Add volume indicator for the local audioDaniel Calviño Sánchez
The volume is shown as a vertical bar next to the audio icon that grows and shrinks (with a fixed bottom position) depending on the volume level. The bar is coloured with a gradient from green to yellow to red for better clarity of the current volume. The previous way of indicating speech (a pulse animation in the audio icon) has not been modified; this is an additional visualization (only for the local audio) to provide a more noticeable feedback to the user. Both the existing button and the new bar had to be wrapped in a helper div to include the volume bar in the old layout. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-15Merge pull request #1954 from ↵Joas Schilling
nextcloud/bugfix/noissue/message-date-tooltips-are-not-consistent Fixed inconsistent date tooltips in messages
2019-07-12Fixed inconsistent date tooltips in messagesMarco Ambrosini
The author row was covering the date on the right side of the chat view and preventing the date tooltip to be triggered by hovering on the date. This fix makes the author row slightly narrower (which was the same approach already used when the date is shown next to a message) in order to expose the date, thus allowing the date tooltip to be shown properly. Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-07-12Remove "not" CSS pseudo-class that always matchesDaniel Calviño Sánchez
The ".systemMessage" class is set on ".comment" elements, but not on ".comments" elements, so ".comments:not(.systemMessage)" is always the same as ".comments". Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-12Merge pull request #1822 from ↵Joas Schilling
nextcloud/bugfix/1795/contacts-menu-in-participant-list Use the contacts menu in the participant list
2019-07-12Fix missing left border of contacts popoverJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-07-11Merge pull request #1969 from ↵Ivan Sein
nextcloud/update-videoview-on-ice-disconnected-failed-with-mcu Update VideoView on ICE disconnected/failed with MCU
2019-07-09Reduce opacity of videos for peers that are not connectedDaniel Calviño Sánchez
Until now only the opacity of the avatar was reduced when the peer was not connected. However, if the video was being shown the avatar was hidden, so if there was an issue with the connection to the other peer it was not reflected in the VideoView. Note that the loading icon should be shown too in the video for long disconnections or failures, but ":after" CSS pseudo classes (which are used by the loading icon) do not work with video elements, so for now only the opacity is reduced. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-09Reduce opacity of avatars for peers that are not connectedDaniel Calviño Sánchez
Until now the opacity of the avatar was reduced when the peer was created until it got connected for the first time. Now the opacity of the avatar is reduced whenever the peer is not connected. In practice, the difference is that now the opacity is changed too when there are issues with the connection to the other peer. Note that the issues were already signaled using the loading icon, but only after a long disconnection; now the opacity is reduced as soon as there is a disconnection, which provides quicker feedback of the issue while keeping the previous behaviour (as the loading icon is still shown in a long disconnection). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-08Add trailing " ↗" to external links in chat messagesDaniel Calviño Sánchez
This is purely a visual hint, so it is added using the ":after" pseudo class of CSS. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-07-03Merge pull request #1941 from ↵Joas Schilling
nextcloud/bugfix/1765/sidebar-icons-are-over-the-scrollbar Prevent sidebar and fullscreen icons from overlapping with the scrollbar (issue 1765)
2019-07-02Restrict the CSS rules for the participant list to that listJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-07-02removed unnecessary paddingMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-07-02fixed the partially visible popovermenu on last user in the right sidebarMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-07-02Prevent sidebar and fullscreen icons from overlapping with the scrollbarMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-07-02Fix minor issues and recompile handlebarJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2019-07-02added a caption and improved the radio buttons descriptionsMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2019-06-11Fix message dates in public share authentication pageDaniel Calviño Sánchez
The chat messages are expected to have the full width of its content row, except for some space used for the date. However, as chat messages are left padded that padding must be included too in the width; otherwise there could be no room for the date. This is only a problem in the public share authentication page, as apps use by default "box-sizing: border-box" in all its elements. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2019-05-23Make rename button always visibleSascha Wiswedel
Rename buttons for guest participants and rooms should always be visible (at least with opacity) to make their very existence more obvious. Before they were always hidden and shown with full opacity when the cursor was on the label wrapper, even if it was possible to interact with the button only when the cursor was on it. Now, as the buttons are always visible with a low opacity, the full opacity is set only when the cursor is on the button itself and thus when it can be interacted with. Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
2019-05-13Better grouping of chat messagesJoas Schilling
* timestamp is shown after 5 messages or 30 seconds * author is shown after 20 messages or 1 hour Signed-off-by: Joas Schilling <coding@schilljs.com>