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
8aac43c1
Commit
8aac43c1
authored
13 years ago
by
Dawid Opis
Browse files
Options
Downloads
Patches
Plain Diff
fixed width for three database type buttons, more highlighted when selected
parent
99790d68
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/css/styles.css
+4
-3
4 additions, 3 deletions
core/css/styles.css
core/templates/installation.php
+2
-1
2 additions, 1 deletion
core/templates/installation.php
with
6 additions
and
4 deletions
core/css/styles.css
+
4
−
3
View file @
8aac43c1
...
@@ -76,9 +76,10 @@ legend { padding:.2em; font-size:1.2em; }
...
@@ -76,9 +76,10 @@ legend { padding:.2em; font-size:1.2em; }
#login
form
ul
.errors
{
background
:
#fed7d7
;
border
:
1px
solid
#f00
;
list-style-indent
:
inside
;
margin
:
0
0
4em
0
;
padding
:
1em
1em
1em
5em
;
}
#login
form
ul
.errors
{
background
:
#fed7d7
;
border
:
1px
solid
#f00
;
list-style-indent
:
inside
;
margin
:
0
0
4em
0
;
padding
:
1em
1em
1em
5em
;
}
#login
form
#selectDbType
{
text-align
:
center
;
}
#login
form
#selectDbType
{
text-align
:
center
;
}
#login
form
#selectDbType
label
{
position
:
static
;
background
:
#F8F8F8
none
;
border
:
1px
solid
#DDD
;
box-shadow
:
0
1px
1px
#FFF
,
0
1px
0
#BBB
inset
;
color
:
#555
;
font-size
:
1em
;
margin
:
0
-0.3em
1em
;
padding
:
0.6em
0.5em
0.4em
;
cursor
:
pointer
;
width
:
7.5em
;}
#login
form
#selectDbType
label
{
position
:
static
;
background
:
#F8F8F8
none
;
border
:
1px
solid
#DDD
;
box-shadow
:
0
1px
1px
#FFF
,
0
1px
0
#BBB
inset
;
color
:
#555
;
font-size
:
1em
;
margin
:
0
-0.3em
1em
;
cursor
:
pointer
;
}
#login
form
#selectDbType
label
span
{
cursor
:
pointer
;
}
#login
form
#selectDbType
label
span
{
cursor
:
pointer
;
font-size
:
0.9em
;
text-shadow
:
0
0
1em
#FFF
;}
#login
form
#selectDbType
label
.ui-state-hover
,
#login
form
#selectDbType
label
.ui-state-active
{
color
:
#333
;
background-color
:
#FFF
;
}
#login
form
#selectDbType
label
.ui-state-hover
span
,
#login
form
#selectDbType
label
.ui-state-active
span
{
text-shadow
:
0
0
1em
#FFF
;
color
:
#FFF
;
}
#login
form
#selectDbType
label
.ui-state-hover
,
#login
form
#selectDbType
label
.ui-state-active
{
color
:
#333
;
background-color
:
#35537A
;
}
/* NAVIGATION ------------------------------------------------------------- */
/* NAVIGATION ------------------------------------------------------------- */
...
...
This diff is collapsed.
Click to expand it.
core/templates/installation.php
+
2
−
1
View file @
8aac43c1
...
@@ -53,7 +53,8 @@
...
@@ -53,7 +53,8 @@
<p>
<?php
echo
$l
->
t
(
'PostgreSQL will be used.'
);
?>
</p>
<p>
<?php
echo
$l
->
t
(
'PostgreSQL will be used.'
);
?>
</p>
<input
type=
"hidden"
id=
"dbtype"
name=
"dbtype"
value=
"pgsql"
/>
<input
type=
"hidden"
id=
"dbtype"
name=
"dbtype"
value=
"pgsql"
/>
<?php
else
:
?>
<?php
else
:
?>
<p><label
class=
"pgsql"
for=
"pgsql"
>
PostgreSQL
</label><input
type=
"radio"
name=
"dbtype"
value=
'pgsql'
id=
"pgsql"
<?php
OC_Helper
::
init_radio
(
'dbtype'
,
'pgsql'
,
'mysql'
,
'sqlite'
);
?>
/></p>
<label
class=
"pgsql"
for=
"pgsql"
>
PostgreSQL
</label>
<input
type=
"radio"
name=
"dbtype"
value=
'pgsql'
id=
"pgsql"
<?php
OC_Helper
::
init_radio
(
'dbtype'
,
'pgsql'
,
'mysql'
,
'sqlite'
);
?>
/>
<?php
endif
;
?>
<?php
endif
;
?>
<?php
endif
;
?>
<?php
endif
;
?>
</div>
</div>
...
...
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