Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
060dd35e
Unverified
Commit
060dd35e
authored
5 years ago
by
Roeland Jago Douma
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #18873 from nextcloud/design/install-page
Install page design fixes
parents
9daf35b7
d873236d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/css/guest.css
+5
-0
5 additions, 0 deletions
core/css/guest.css
core/js/setup.js
+0
-14
0 additions, 14 deletions
core/js/setup.js
core/templates/installation.php
+1
-0
1 addition, 0 deletions
core/templates/installation.php
with
6 additions
and
14 deletions
core/css/guest.css
+
5
−
0
View file @
060dd35e
...
@@ -649,6 +649,11 @@ form #selectDbType label span {
...
@@ -649,6 +649,11 @@ form #selectDbType label span {
box-shadow
:
none
!important
;
box-shadow
:
none
!important
;
}
}
#install-recommended-apps
+
label
span
{
display
:
inline-block
;
opacity
:
.7
;
}
/* Errors */
/* Errors */
/* Warnings and errors are the same */
/* Warnings and errors are the same */
.body-login-container
,
.body-login-container
,
...
...
This diff is collapsed.
Click to expand it.
core/js/setup.js
+
0
−
14
View file @
060dd35e
...
@@ -123,18 +123,4 @@ $(document).ready(function() {
...
@@ -123,18 +123,4 @@ $(document).ready(function() {
drawTitles
:
true
,
drawTitles
:
true
,
nonce
:
btoa
(
OC
.
requestToken
),
nonce
:
btoa
(
OC
.
requestToken
),
});
});
// centers the database chooser if it is too wide
if
(
$
(
'
#databaseBackend
'
).
width
()
>
300
)
{
// this somehow needs to wait 250 milliseconds
// otherwise it gets overwritten
setTimeout
(
function
(){
// calculate negative left margin
// half of the difference of width and default bix width of 300
// add 10 to clear left side padding of button group
var
leftMargin
=
((
$
(
'
#databaseBackend
'
).
width
()
-
300
)
/
2
+
10
)
*
-
1
;
$
(
'
#databaseBackend
'
).
css
(
'
margin-left
'
,
Math
.
floor
(
leftMargin
)
+
'
px
'
);
},
250
);
}
});
});
This diff is collapsed.
Click to expand it.
core/templates/installation.php
+
1
−
0
View file @
060dd35e
...
@@ -163,6 +163,7 @@ script('core', [
...
@@ -163,6 +163,7 @@ script('core', [
<input
type=
"checkbox"
id=
"install-recommended-apps"
name=
"install-recommended-apps"
class=
"checkbox checkbox--white"
checked
>
<input
type=
"checkbox"
id=
"install-recommended-apps"
name=
"install-recommended-apps"
class=
"checkbox checkbox--white"
checked
>
<label
for=
"install-recommended-apps"
>
<label
for=
"install-recommended-apps"
>
<?php
p
(
$l
->
t
(
'Install recommended apps'
));
?>
<?php
p
(
$l
->
t
(
'Install recommended apps'
));
?>
<span>
<?php
p
(
$l
->
t
(
'Calendar, Contacts, Talk & Mail'
));
?>
</span>
</label>
</label>
</p>
</p>
</fieldset>
</fieldset>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment