summaryrefslogtreecommitdiffstats
path: root/apps/settings/css
Commit message (Collapse)AuthorAgeFilesLines
* style(settings): align icons at legacy help navigationMaksim Sukharev2024-07-261-1/+9
| | | | Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
* chore(assets): Recompile assetsnextcloud-command2024-01-112-2/+2
| | | | Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix styling of development-noticeSimon L2024-01-111-8/+5
| | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* Add link for opening app detailsjulia.kirschenheuter2023-11-153-14/+6
| | | | | | Add `alt` for `AppScore` image Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Create semantically right table for the "OAuth 2.0 clients"julia.kirschenheuter2023-10-273-8/+5
| | | | | | Adapt styles Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* address reviewSimon L2023-10-173-9/+3
| | | | | Signed-off-by: Simon L <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix profile visibility settings being too wideSimon L2023-10-173-2/+8
| | | | | Signed-off-by: Simon L <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix several admin settings problemsSimon L2023-10-133-3/+30
| | | | | Signed-off-by: Simon L <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Fix my-apps view on mobileSimon L2023-10-123-3/+19
| | | | | Signed-off-by: Simon L <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* address reviewSimon L2023-10-061-0/+13
| | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* Move inline docs to online documentationSimon L2023-10-051-10/+26
| | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* Create right table viewjulia.kirschenheuter2023-09-053-11/+3
| | | | Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* chore: Compile assetsChristopher Ng2023-07-122-2/+2
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* enh(a11y): Users tableChristopher Ng2023-07-122-279/+1
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* chore: Compile assetsFerdinand Thiessen2023-06-302-2/+2
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* fix(settings): Migrate away from deprecated `NcPopoverMenu`Ferdinand Thiessen2023-06-301-44/+8
| | | | | | | | | * Replace popover menu with `NcActions` * Deduplicate user actions code between `UserRow` and `UserRowSimple` * Fix user action to cover whole row heigh to prevent dropdown from shining through the actions * Fix user action popover to be overlayed by current edited row actions Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* Replace plain input fields with NcTextField fields and NcMultiSelect fields ↵julia.kirschenheuter2023-06-283-8/+4
| | | | | | with NcSelect fields Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Compile JS assetsJonas2023-06-192-2/+2
| | | | Signed-off-by: Jonas <jonas@freesources.org>
* duplicate css for subadmins to allow for both class names being usedSilke Suck2023-06-152-1/+3
| | | | Signed-off-by: Silke Suck <silke.suck@adacor.com>
* align subadmins css class name with actually used class name subAdminsGroups ↵Silke Suck2023-06-152-3/+3
| | | | | | to fix display issue when users are in many groups Signed-off-by: Silke Suck <silke.suck@adacor.com>
* Revert "Fix table view"julia.kirschenheuter2023-05-253-3/+14
| | | | | | This reverts commit cb852ef6 Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Finally no with seams better to be relevant with other fieldsJérôme Herbinet2023-05-163-6/+2
| | | | | Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Fix : Share Expire After N Days widthJérôme Herbinet2023-05-161-1/+1
| | | Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
* Use the color-primary-element* variablesSimon L2023-05-133-8/+8
| | | | | Signed-off-by: Simon L <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* feat(users): Store and load a user's managerChristoph Wurst2023-05-123-2/+5
| | | | | Co-Authored-By: hamza221 <hamzamahjoubi221@gmail.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix table viewjulia.kirschenheuter2023-05-113-14/+3
| | | | Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Show loading spinner until share settings are fully loadedDaniel Calviño Sánchez2023-05-103-2/+6
| | | | | | | | | | | | | | | | | The inputs of the sharing settings are generated in a template in the server, but the listeners to react to changes in the elements and save the values in the server are loaded in the client once the DOM finishes loading. If the DOM takes long to load the user can start to interact with the settings before the listeners were set up and, therefore, the changes would not be saved in the server. However, as the inputs are modified the user would think that the changes were already saved. To address that now when the sharing settings are open a loading spinner is shown instead of the contents of the sharing settings, and only once the listeners to save the changes were set up the spinner is removed and the contents shown. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* npm run sassJérôme Herbinet2023-04-052-2/+2
| | | | Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
* UI : Improved presentation of personal informationJérôme Herbinet2023-04-051-0/+7
| | | | | Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
* Create `<h3>` headings for profile page. Replace `<label>` which have no ↵julia.kirschenheuter2023-03-243-4/+3
| | | | | | conncted `<input>` with `<h3>` heading Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Compress SASS outputChristopher Ng2023-01-112-1475/+2
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* Fix profile visibility not appearingCarl Schwan2022-12-063-42/+3
| | | | | | | And refactor how the grid works (now it's automatically using the correct size instead of harcoding it) Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Bump sass from 1.52.1 to 1.56.1dependabot[bot]2022-12-052-7/+2
| | | | | | | | | | | | | | | | | Bumps [sass](https://github.com/sass/dart-sass) from 1.52.1 to 1.56.1. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.52.1...1.56.1) --- updated-dependencies: - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix remaining user settings issuesSimon L2022-11-233-7/+17
| | | | | Signed-off-by: Simon L <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* scroll if too much groupsJohn Molakvoæ2022-11-233-1/+13
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Fix user settings layoutJohn Molakvoæ2022-11-233-1/+12
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Refactor profile info settingsCarl Schwan2022-11-213-95/+34
| | | | | | | | | - Make it possible to add the new property whiout chaning foundamentally how the layout work each time - Use only one grid instead of multiple nested grid - Better mobile reponsiveness Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Add mastodon personal info fieldCarl Schwan2022-11-213-11/+7
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* build npm run sassJérôme Herbinet2022-09-222-1/+6
| | | | | Signed-off-by: Jérôme Herbinet 33763786+Jerome-Herbinet@users.noreply.github.com Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
* User list : Display name CSS changeJérôme Herbinet2022-09-221-0/+4
| | | | | | Signed-off-by: Jérôme Herbinet jerome.herbinet@arawa.fr Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
* Remake locale saving with VueChristopher Ng2022-09-163-18/+3
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* Remake group and quota details section with VueChristopher Ng2022-09-153-51/+1
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* Cleanup updatenotificationCarl Schwan2022-09-153-11/+1
| | | | | | | | | | | - Port away from jquery inside vue - Use modern vue components when possible - Fix some readability isssues particularly on dark theme - Use IInitialState - Use php7.4 Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* fix 2FA iconsszaimen2022-09-083-1/+3
| | | | | Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* Remake profile picture saving with VueChristopher Ng2022-09-023-134/+1
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* Some more fixesJulius Härtl2022-09-013-5/+7
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Bump bundled filesJulius Härtl2022-09-012-6/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix settings scrollingJulius Härtl2022-09-011-3/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #33641 from nextcloud/bugfix/noid/primary-element-varsJohn Molakvoæ2022-08-262-2/+2
|\
| * Adjust settings to new css variableJulius Härtl2022-08-262-2/+2
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>