Skip to content

Commit

Permalink
New: Add option to move JNotify message position at bottom
Browse files Browse the repository at this point in the history
Work on ajax ecm module.
  • Loading branch information
eldy committed Mar 25, 2012
1 parent 74c39a1 commit efc1c19
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 0 deletions.
17 changes: 17 additions & 0 deletions htdocs/theme/auguria/style.css.php
Expand Up @@ -2158,6 +2158,23 @@
.ecmjqft LI.wait { font-weight:normal; background: url(<?php echo dol_buildpath('/theme/eldy/img/working.gif',1); ?>) left top no-repeat; }


/* ============================================================================== */
/* jNotify */
/* ============================================================================== */

.jnotify-container {
position: fixed !important;
<?php if ($conf->global->MAIN_JQUERY_JNOTIFY_BOTTOM) { ?>
top: auto !important;
bottom: 4px !important;
<?php } ?>
text-align: center;
min-width: 500px;
width: auto;
padding-left: 10px !important;
padding-right: 10px !important;
}


<?php
if (is_object($db)) $db->close();
Expand Down
17 changes: 17 additions & 0 deletions htdocs/theme/bureau2crea/style.css.php
Expand Up @@ -2412,6 +2412,23 @@
.ecmjqft LI.wait { font-weight:normal; background: url(<?php echo dol_buildpath('/theme/eldy/img/working.gif',1); ?>) left top no-repeat; }


/* ============================================================================== */
/* jNotify */
/* ============================================================================== */

.jnotify-container {
position: fixed !important;
<?php if ($conf->global->MAIN_JQUERY_JNOTIFY_BOTTOM) { ?>
top: auto !important;
bottom: 4px !important;
<?php } ?>
text-align: center;
min-width: 500px;
width: auto;
padding-left: 10px !important;
padding-right: 10px !important;
}


<?php
if (is_object($db)) $db->close();
Expand Down
19 changes: 19 additions & 0 deletions htdocs/theme/cameleo/style.css.php
Expand Up @@ -2228,6 +2228,25 @@
.ecmjqft LI.wait { font-weight:normal; background: url(<?php echo dol_buildpath('/theme/cameleo/img/working.gif',1); ?>) left top no-repeat; }



/* ============================================================================== */
/* jNotify */
/* ============================================================================== */

.jnotify-container {
position: fixed !important;
<?php if ($conf->global->MAIN_JQUERY_JNOTIFY_BOTTOM) { ?>
top: auto !important;
bottom: 4px !important;
<?php } ?>
text-align: center;
min-width: 500px;
width: auto;
padding-left: 10px !important;
padding-right: 10px !important;
}


<?php
if (is_object($db)) $db->close();
?>
Binary file added htdocs/theme/common/treemenu/folder2-expanded.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added htdocs/theme/common/treemenu/folder2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions htdocs/theme/eldy/style.css.php
Expand Up @@ -2344,6 +2344,23 @@
.ecmjqft LI.wait { font-weight:normal; background: url(<?php echo dol_buildpath('/theme/eldy/img/working.gif',1); ?>) left top no-repeat; }


/* ============================================================================== */
/* jNotify */
/* ============================================================================== */

.jnotify-container {
position: fixed !important;
<?php if ($conf->global->MAIN_JQUERY_JNOTIFY_BOTTOM) { ?>
top: auto !important;
bottom: 4px !important;
<?php } ?>
text-align: center;
min-width: 500px;
width: auto;
padding-left: 10px !important;
padding-right: 10px !important;
}


<?php
if (is_object($db)) $db->close();
Expand Down

0 comments on commit efc1c19

Please sign in to comment.