Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New first run wizard #960

Merged
merged 1 commit into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ node_modules/
/vendor
/.php-cs-fixer.cache
/tests/.phpunit.result.cache
.DS_Store
36 changes: 30 additions & 6 deletions css/personalsettings.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
* SPDX-License-Identifer: AGPL-3.0-or-later
*/

.settings-mobile-desktop {
display: contents;
}

.clientslinks {
display: flex;
gap: 1rem;
Expand All @@ -11,12 +15,7 @@
margin-bottom: 20px;
}

.clientslinks a.button {
display: inline-block;
padding: 0.7rem 1rem;
}

.clientslinks .button .appsmall {
.settings-mobile-desktop .button .appsmall {
vertical-align: sub;
margin-right: 0.2rem;
filter: var(--background-invert-if-dark);
Expand All @@ -31,3 +30,28 @@
#endpoint-url {
width: 250px;
}

.settings-mobile-desktop .button {
position: relative;
width: fit-content;
overflow: hidden;
border: 0;
font-weight: bold;
min-height: var(--clickable-area);
min-width: var(--clickable-area);
display: flex !important;
align-items: center;
justify-content: center;
color: var(--color-primary-element-light-text);
background-color: var(--color-primary-element-light);
padding: 0.7rem 1rem;
}

.settings-mobile-desktop .button:hover:not(:disabled) {
color: var(--color-primary-element-light-text);
background-color: var(--color-primary-element-light-hover);
}

.settings-mobile-desktop .button img {
width: 20px;
}
Binary file modified img/Nextcloud.mp4
Binary file not shown.
Binary file modified img/Nextcloud.webm
Binary file not shown.
Binary file added img/androidBadge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed img/appstore.png
Binary file not shown.
Binary file removed img/intro.png
Binary file not shown.
Binary file added img/iosBadge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 77 additions & 0 deletions img/nextcloudLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion img/user.svg
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File is still used in notifications which are currently broken…

image not found: image:user.svg webroot: serverroot:/var/www/…

Was deletion intentional?
Will restore in a new PR.

This file was deleted.

4 changes: 2 additions & 2 deletions js/firstrunwizard-main.js

Large diffs are not rendered by default.

77 changes: 72 additions & 5 deletions js/firstrunwizard-main.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/

/*!
* Vue.js v2.7.14
* (c) 2014-2022 Evan You
Expand All @@ -24,10 +31,70 @@

/*! @license DOMPurify 3.0.5 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.5/LICENSE */

/*! For license information please see NcModal.js.LICENSE.txt */
/**
* @copyright Copyright (c) 2019 Georg Ehrke
*
* @author Georg Ehrke <[email protected]>
*
* @author Richard Steinmetz <[email protected]>
*
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

/**
* @copyright Copyright (c) 2019 Georg Ehrke
*
* @author Georg Ehrke <[email protected]>
*
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/

/*! Hammer.JS - v2.0.7 - 2016-04-22
* http://hammerjs.github.io/
/**
* @copyright Copyright (c) 2021 Christoph Wurst
*
* Copyright (c) 2016 Jorik Tangelder;
* Licensed under the MIT license */
* @author Christoph Wurst <[email protected]>
*
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
2 changes: 1 addition & 1 deletion js/firstrunwizard-main.js.map

Large diffs are not rendered by default.

Loading
Loading