Flash-DIVs immer ausgeben & Flash-Kategorie fett
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 7 Mar 2013 10:25:04 +0000 (11:25 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 7 Mar 2013 12:12:25 +0000 (13:12 +0100)
css/kivitendo/main.css
css/lx-office-erp/main.css
templates/webpages/common/flash.html

index c3c64dc..0420034 100644 (file)
@@ -361,3 +361,7 @@ label {
        margin-bottom: 5px;
        padding: 5px;
 }
+
+.flash_title {
+  font-weight: bold;
+}
index 328eac7..fb88e57 100644 (file)
@@ -377,6 +377,10 @@ label {
   padding: 5px;
 }
 
+.flash_title {
+  font-weight: bold;
+}
+
 .jqmWindow {
   display: none;
 
index 03bf3b4..cb592ed 100644 (file)
@@ -1,22 +1,16 @@
 [%- USE HTML -%][%- USE LxERP %][%- USE T8 %]
-[%- IF FLASH %]
- [%- BLOCK output %]
-  <div class="flash_message_[% type %]">
-    <a href='#' style='float:right' onclick='$($(this).closest("div")).remove()'><img src='image/close.png' border='0' alt='[% 'Close Flash' | $T8 %]'></a>
-   [%- title %]:
+[%- BLOCK output %]
+ <div id="flash_[% type %]" class="flash_message_[% type %]"[% IF !messages || !messages.size %] style="display: none"[% END %]>
+  <a href='#' style='float:right' onclick='$(this).closest("div").find(".flash_content").empty(); $(this).closest("div").hide()'><img src='image/close.png' border='0' alt='[% 'Close Flash' | $T8 %]'></a>
+  <span class="flash_title">[%- title %]:</span>
+  <span id="flash_[% type %]_content" class="flash_content">
    [% FOREACH message = messages %]
     [%- HTML.escape(message) %]
     [%- UNLESS loop.last %]<br>[% END %]
    [%- END %]
-  </div>
- [%- END %]
- [%- IF FLASH.error && FLASH.error.size %]
-  [%- PROCESS output title=LxERP.t8('Error') type='error' messages = FLASH.error %]
- [%- END %]
- [%- IF FLASH.warning && FLASH.warning.size %]
-  [%- PROCESS output title=LxERP.t8('Warning') type='warning' messages = FLASH.warning %]
- [%- END %]
- [%- IF FLASH.info && FLASH.info.size %]
-  [%- PROCESS output title=LxERP.t8('Information') type='info' messages = FLASH.info %]
- [%- END %]
+  </span>
+ </div>
 [%- END %]
+[%- PROCESS output title=LxERP.t8('Error')       type='error'   messages = FLASH.error %]
+[%- PROCESS output title=LxERP.t8('Warning')     type='warning' messages = FLASH.warning %]
+[%- PROCESS output title=LxERP.t8('Information') type='info'    messages = FLASH.info %]