Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
8bf1ac04
Commit
8bf1ac04
authored
Sep 27, 2007
by
Richard Mansfield
Committed by
Nigel McNie
Oct 17, 2007
Browse files
Sort direction icons
parent
55dadeda
Changes
4
Hide whitespace changes
Inline
Side-by-side
htdocs/theme/default/static/images/down.png
0 → 100644
View file @
8bf1ac04
279 Bytes
htdocs/theme/default/static/images/up.png
0 → 100644
View file @
8bf1ac04
256 Bytes
htdocs/theme/default/static/style/style.css
View file @
8bf1ac04
...
...
@@ -1572,3 +1572,9 @@ table#initials .initial-letters {
font-weight
:
bold
;
}
table
.tablerenderer
th
.asc
{
background
:
#e5e8da
url(../images/down.png)
no-repeat
right
;
}
table
.tablerenderer
th
.desc
{
background
:
#e5e8da
url(../images/up.png)
no-repeat
right
;
}
htdocs/theme/default/templates/admin/users/resulttable.tpl
View file @
8bf1ac04
...
...
@@ -5,7 +5,7 @@
<tr>
<th></th>
{
foreach
from
=
$fieldnames
item
=
f
}
<th
class=
"search-results-sort-column
"
>
{
if
$f
==
$sortby
}
{
if
$sortdir
==
'asc'
}
>
{
else
}
<
{/
if
}
{/
if
}
<a
href=
"?
{
$params
}
&sortby=
{
$f
}
&sortdir=
{
if
$f
==
$sortby
&&
$sortdir
==
'asc'
}
desc
{
else
}
asc
{/
if
}
"
>
{
str
tag
=
"$f"
}
</a></th>
<th
class=
"search-results-sort-column
{
if
$f
==
$sortby
}
{
$sortdir
}{/
if
}
"
>
<a
href=
"?
{
$params
}
&sortby=
{
$f
}
&sortdir=
{
if
$f
==
$sortby
&&
$sortdir
==
'asc'
}
desc
{
else
}
asc
{/
if
}
"
>
{
str
tag
=
"$f"
}
</a></th>
{/
foreach
}
<th></th>
</tr>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment