Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Fix project flags ; Cleanup elephpants div & css
Browse files Browse the repository at this point in the history
  • Loading branch information
ytorres committed Jul 30, 2014
1 parent 17b2ef1 commit 9b3d748
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion js/login-all-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ Ext.reg('windowdrawer', Ext.ux.plugins.WindowDrawer);var PhDOE_loginPage = funct
// We put the elephpants !
Ext.each(this.data.items, function(item) {

Ext.DomHelper.append('images', {
Ext.DomHelper.append('elephpants-images', {
tag: 'a',
href: item.data.link,
html: '<img src="'+ item.data.img +'" />',
Expand Down
2 changes: 1 addition & 1 deletion js/login-all.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ var PhDOE_loginPage = function()
// We put the elephpants !
Ext.each(this.data.items, function(item) {

Ext.DomHelper.append('images', {
Ext.DomHelper.append('elephpants-images', {
tag: 'a',
href: item.data.link,
html: '<img src="'+ item.data.img +'" />',
Expand Down
2 changes: 1 addition & 1 deletion php/html.templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function cssLoadTemplate($href, $id = '')
*/
function footerTemplate($isLoginPage=false)
{
$elephpants = ( $isLoginPage ) ? '<div id="elephpants"><div id="images"></div></div>' : '';
$elephpants = ( $isLoginPage ) ? '<div id="elephpants"><div id="elephpants-images"></div></div>' : '';

return <<<EOD
$elephpants
Expand Down
2 changes: 1 addition & 1 deletion themes/login-all.css

Large diffs are not rendered by default.

27 changes: 13 additions & 14 deletions themes/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

.x-form-field-wrap .project-php, .x-form-field-wrap .project-pear {
top: 5px;
left: 5px;
left: 4px;
}

.project-php {
Expand Down Expand Up @@ -51,31 +51,30 @@
float: left;
}

#fb-use-credentials {
cursor: pointer;
text-decoration:underline;
#auth-login img {
margin: 5px;
}

#elephpants {
margin: auto;
/*overflow: hidden;*/
position: fixed;
bottom: 0;
width: 100%;
#login-form-project {
padding-left: 26px !important;
}

#images {
/* {{{ ElePHPants */

#elephpants-images {
height: 75px;
text-align: center;
white-space: nowrap;
}

#auth-login img {
margin: 5px;
#elephpants {
margin: auto;
position: fixed;
bottom: 0;
width: 100%;
}


/* {{{ ElePHPants */
#elephpants img {
opacity: 0.5;
transition: all 0.2s ease-in-out;
Expand Down

0 comments on commit 9b3d748

Please sign in to comment.