summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar/sidebar.jade
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix member permission modificationMaxime Quandalle2015-09-051-10/+12
| | | | Fixes #280
* Hide feature non-member users can't useMaxime Quandalle2015-08-281-2/+3
| | | | | Fixes #206 Fixes #244
* Adds new app store metadata to sandstorm package definitionMaxime Quandalle2015-08-201-10/+11
| | | | | | | | We still miss some branding stuff, such as screenshots, icons, and a description. This commit also hides an option related to user permissions managment in the sandstorm package.
* Switch the font to robotoMaxime Quandalle2015-08-201-7/+6
|
* profile name changed fullname and comma hotfix.Yasar icli2015-07-181-4/+4
|
* (Re-)implement default avatar using user initialsMaxime Quandalle2015-06-101-7/+9
| | | | | We use a embedded svg to scale the initials text to its container size. The user is free to overwrite its initials in the profile form.
* Re-factor the avatar system and support avatar uploadsMaxime Quandalle2015-06-091-6/+2
| | | | | | | | | | | | | | | The user is now able to upload an avatar, and pick one in a list. This functionality should eventually be abstracted in a community package but we still need to work on a great public API. We rely on collectionFS to manage uploaded avatars. We also removed bengott:avatar which was trying to solve the wrong problem (namely displaying the avatar, which is as simple as displaying an image), and not a avatar system as it should be. Gravatar support is coming (back) soon. We may also want to have a list of default fun avatars the user can choose instead of uploading its own one.
* Restore the popup to add a member to the boardMaxime Quandalle2015-06-061-2/+48
|
* Start designing the card details paneMaxime Quandalle2015-06-051-4/+4
| | | | Implement a dynamic overflow to focus sight on the pane.
* Implement presence indicatorsMaxime Quandalle2015-05-301-1/+2
|
* Implement multi-selectionMaxime Quandalle2015-05-301-33/+6
| | | | | | The UI and the internal APIs are still rough around the edges but the feature is basically working. You can now select multiple cards and move them together or (un|)assign them a label.
* Implement a new system to handle "escape actions"Maxime Quandalle2015-05-261-5/+1
| | | | | | | | The new EscapeActions object decide what to do when the user press the Escape key (such as closing a opened popup or inlined form). This commit also re-introduced the sidebar current view as a sidebar component local state.
* Improve scrollingMaxime Quandalle2015-05-241-0/+103
We now replace native scrollbar by custom ones on the list card (which is required by the new ergonomics in the parent commit), but the "scrolling engine", is still native, we just hide the scrollbar and draw our own in HTML/CSS using the perfect-scrollbar package (from bower). This commit also implements component scrolling when certain actions are performed, eg scroll to the bottom when the new card composer is opened.