Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
synnefo
Commits
1bb01768
Commit
1bb01768
authored
Jan 24, 2013
by
Olga Brani
Browse files
Fixes
- Change order in the menu - Fix style bugs - Fix form input border bug
parent
db7f4ef9
Changes
3
Hide whitespace changes
Inline
Side-by-side
snf-astakos-app/astakos/im/api/__init__.py
View file @
1bb01768
...
...
@@ -138,13 +138,14 @@ def get_menu(request, with_extra_links=False, with_signout=True):
url
=
absolute
(
request
,
reverse
(
'invite'
)),
name
=
"Invitations"
))
append
(
item
(
url
=
absolute
(
request
,
reverse
(
'resource_usage'
)),
name
=
"Usage"
))
if
QUOTAHOLDER_URL
:
append
(
item
(
url
=
absolute
(
request
,
reverse
(
'project_list'
)),
name
=
"Projects"
))
append
(
item
(
url
=
absolute
(
request
,
reverse
(
'resource_usage'
)),
name
=
"Usage"
))
#append(item(
#url=absolute(request, reverse('api_access')),
#name="API Access"))
...
...
snf-astakos-app/astakos/im/static/im/css/modules.css
View file @
1bb01768
...
...
@@ -570,7 +570,7 @@ form.withlabels.hidden-submit { margin-bottom:4em; }
.auth_methods
.assigned
ul
li
a
img
{
margin-top
:
-55px
}
.auth_methods
.assigned
,
.auth_methods
.notassigned
{
margin-bottom
:
40px
;
}
.auth_methods
.assigned
span
.details
{
margin-left
:
10px
;
color
:
grey
;
display
:
inline-block
;
max-width
:
400px
;
vertical-align
:
middle
;}
.auth_methods
.assigned
span
.details
{
color
:
grey
;
display
:
inline-block
;
max-width
:
400px
;
vertical-align
:
middle
;
position
:
absolute
;
left
:
180px
;
top
:
13px
;
}
#token-confirm
{
display
:
none
;
position
:
absolute
;
left
:
550px
;
top
:
-10px
;
}
/* login section */
.login-section
{}
...
...
snf-astakos-app/astakos/im/static/im/js/auth_methods.js
View file @
1bb01768
...
...
@@ -85,7 +85,7 @@ $(document).ready(function() {
$
(
'
.form-following .extra-img
'
).
click
(
function
(
e
){
var
h
=
$
(
'
.form-row
'
).
first
().
outerHeight
();
$
(
'
.
form-row
'
).
css
(
'
height
'
,
h
);
$
(
this
).
parents
(
'
.form-row
'
).
next
(
'
.hidden-form-rows
'
).
find
(
'
form-row
'
).
css
(
'
height
'
,
h
);
$
(
this
).
parents
(
'
.form-row
'
).
toggleClass
(
'
open
'
);
$
(
this
).
parents
(
'
.form-row
'
).
next
(
'
.hidden-form-rows
'
).
slideToggle
(
'
slow
'
);
...
...
Write
Preview
Markdown
is supported
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