[eGroupWare-svn] r55882 - in /trunk/mail/templates: default/app.css mobile/app.css pixelegg/app.css pixelegg/app.less

[email protected]
Newsgroups gmane.comp.web.egroupware.cvs
Message-ID <[email protected]>
Author: hnategh
Date: Wed Apr 27 13:18:58 2016
New Revision: 55882

URL: http://svn.stylite.de/viewvc/egroupware?rev=55882&view=rev
Log:
Implement colored mail labels similar to other apps with border color v-bar

Modified:
    trunk/mail/templates/default/app.css
    trunk/mail/templates/mobile/app.css
    trunk/mail/templates/pixelegg/app.css
    trunk/mail/templates/pixelegg/app.less

Modified: trunk/mail/templates/default/app.css
URL: http://svn.stylite.de/viewvc/egroupware/trunk/mail/templates/default/app.css?rev=55882&r1=55881&r2=55882&view=diff
==============================================================================
--- trunk/mail/templates/default/app.css (original)
+++ trunk/mail/templates/default/app.css Wed Apr 27 13:18:58 2016
@@ -17,7 +17,9 @@
 	cursor: default;
 	white-space: nowrap;
 }
-
+tr.mail {
+	border-left: 6px solid white;
+}
 tr.mail a {
 	cursor: pointer;
 	white-space: nowrap;
@@ -35,56 +37,32 @@
 	font-weight: bold;
 }
 
-tr.labelone div,
-tr.labelone span,
-tr.labelone time,
-tr.labelone a {
-	color: #ff0080 !important;
-}
-tr.labeltwo div,
-tr.labeltwo span,
-tr.labeltwo time,
-tr.labeltwo a {
-	color: #ff8000 !important;
-}
-tr.labelthree div,
-tr.labelthree span,
-tr.labelthree time,
-tr.labelthree a {
-	color: #008000 !important;
-}
-tr.labelfour div,
-tr.labelfour span,
-tr.labelfour time,
-tr.labelfour a {
-	color: #0000ff !important;
-}
-tr.labelfive div,
-tr.labelfive span,
-tr.labelfive time,
-tr.labelfive a {
-	color: #8000ff !important;
-}
-
-tr.flagged div,
-tr.flagged span,
-tr.flagged time,
-tr.flagged a {
-	color: #ff0000 !important;
-}
-
-tr.prio_high div,
-tr.prio_high span,
-tr.prio_high time,
-tr.prio_high a {
-	color: #ac0000 !important;
-}
-
-tr.deleted div,
-tr.deleted span,
-tr.deleted time,
-tr.deleted a {
-	color: silver;
+tr.mail.labelone {
+	border-left:6px solid #ff0080 !important;
+}
+tr.mail.labeltwo {
+	border-left:6px solid  #ff8000 !important;
+}
+tr.mail.labelthree {
+	border-left:6px solid  #008000 !important;
+}
+tr.mail.labelfour {
+	border-left: 6px solid #0000ff !important;
+}
+tr.mail.labelfive {
+	border-left: 6px solid #8000ff !important;
+}
+
+tr.mail.flagged {
+	border-left: 6px solid #ff0000 !important;
+}
+
+tr.mail.prio_high {
+	border-left: 6px solid #ac0000 !important;
+}
+
+tr.mail.deleted  {
+	border-left: 6px solid silver;
 	text-decoration : line-through;
 }
 
@@ -663,7 +641,7 @@
 }
 #mail-index_mail-index-header_right {
   display: inline-flex;
-} 
+}
 div.mailPreviewHeaders div.mail_extraEmails.visible,
 div.mailPreviewHeaders #mail-index_previewAttachmentArea.visible {
 	position: absolute;

Modified: trunk/mail/templates/mobile/app.css
URL: http://svn.stylite.de/viewvc/egroupware/trunk/mail/templates/mobile/app.css?rev=55882&r1=55881&r2=55882&view=diff
==============================================================================
--- trunk/mail/templates/mobile/app.css (original)
+++ trunk/mail/templates/mobile/app.css Wed Apr 27 13:18:58 2016
@@ -50,6 +50,9 @@
   cursor: default;
   white-space: nowrap;
 }
+tr.mail {
+  border-left: 6px solid white;
+}
 tr.mail a {
   cursor: pointer;
   white-space: nowrap;
@@ -65,53 +68,29 @@
   color: #003075;
   font-weight: bold;
 }
-tr.labelone div,
-tr.labelone span,
-tr.labelone time,
-tr.labelone a {
-  color: #ff0080 !important;
-}
-tr.labeltwo div,
-tr.labeltwo span,
-tr.labeltwo time,
-tr.labeltwo a {
-  color: #ff8000 !important;
-}
-tr.labelthree div,
-tr.labelthree span,
-tr.labelthree time,
-tr.labelthree a {
-  color: #008000 !important;
-}
-tr.labelfour div,
-tr.labelfour span,
-tr.labelfour time,
-tr.labelfour a {
-  color: #0000ff !important;
-}
-tr.labelfive div,
-tr.labelfive span,
-tr.labelfive time,
-tr.labelfive a {
-  color: #8000ff !important;
-}
-tr.flagged div,
-tr.flagged span,
-tr.flagged time,
-tr.flagged a {
-  color: #ff0000 !important;
-}
-tr.prio_high div,
-tr.prio_high span,
-tr.prio_high time,
-tr.prio_high a {
-  color: #ac0000 !important;
-}
-tr.deleted div,
-tr.deleted span,
-tr.deleted time,
-tr.deleted a {
-  color: silver;
+tr.mail.labelone {
+  border-left: 6px solid #ff0080 !important;
+}
+tr.mail.labeltwo {
+  border-left: 6px solid  #ff8000 !important;
+}
+tr.mail.labelthree {
+  border-left: 6px solid  #008000 !important;
+}
+tr.mail.labelfour {
+  border-left: 6px solid #0000ff !important;
+}
+tr.mail.labelfive {
+  border-left: 6px solid #8000ff !important;
+}
+tr.mail.flagged {
+  border-left: 6px solid #ff0000 !important;
+}
+tr.mail.prio_high {
+  border-left: 6px solid #ac0000 !important;
+}
+tr.mail.deleted {
+  border-left: 6px solid silver;
   text-decoration: line-through;
 }
 span.status_img {
@@ -1731,53 +1710,29 @@
   color: #003075;
   font-weight: bold;
 }
-tr.labelone div,
-tr.labelone span,
-tr.labelone time,
-tr.labelone a {
-  color: #ff0080 !important;
-}
-tr.labeltwo div,
-tr.labeltwo span,
-tr.labeltwo time,
-tr.labeltwo a {
-  color: #ff8000 !important;
-}
-tr.labelthree div,
-tr.labelthree span,
-tr.labelthree time,
-tr.labelthree a {
-  color: #008000 !important;
-}
-tr.labelfour div,
-tr.labelfour span,
-tr.labelfour time,
-tr.labelfour a {
-  color: #0000ff !important;
-}
-tr.labelfive div,
-tr.labelfive span,
-tr.labelfive time,
-tr.labelfive a {
-  color: #8000ff !important;
-}
-tr.flagged div,
-tr.flagged span,
-tr.flagged time,
-tr.flagged a {
-  color: #ff0000 !important;
-}
-tr.prio_high div,
-tr.prio_high span,
-tr.prio_high time,
-tr.prio_high a {
-  color: #ac0000 !important;
-}
-tr.deleted div,
-tr.deleted span,
-tr.deleted time,
-tr.deleted a {
-  color: silver;
+tr.mail.labelone {
+  border-left: 6px solid #ff0080 !important;
+}
+tr.mail.labeltwo {
+  border-left: 6px solid #ff8000 !important;
+}
+tr.mail.labelthree {
+  border-left: 6px solid #008000 !important;
+}
+tr.mail.labelfour {
+  border-left: 6px solid #0000ff !important;
+}
+tr.mail.labelfive {
+  border-left: 6px solid #8000ff !important;
+}
+tr.mail.flagged {
+  border-left: 6px solid #ff0000 !important;
+}
+tr.mail.prio_high {
+  border-left: 6px solid #ac0000 !important;
+}
+tr.mail.deleted {
+  border-left: 6px solid silver;
   text-decoration: line-through;
 }
 span.status_img {

Modified: trunk/mail/templates/pixelegg/app.css
URL: http://svn.stylite.de/viewvc/egroupware/trunk/mail/templates/pixelegg/app.css?rev=55882&r1=55881&r2=55882&view=diff
==============================================================================
--- trunk/mail/templates/pixelegg/app.css (original)
+++ trunk/mail/templates/pixelegg/app.css Wed Apr 27 13:18:58 2016
@@ -38,6 +38,9 @@
   cursor: default;
   white-space: nowrap;
 }
+tr.mail {
+  border-left: 6px solid white;
+}
 tr.mail a {
   cursor: pointer;
   white-space: nowrap;
@@ -53,53 +56,29 @@
   color: #003075;
   font-weight: bold;
 }
-tr.labelone div,
-tr.labelone span,
-tr.labelone time,
-tr.labelone a {
-  color: #ff0080 !important;
-}
-tr.labeltwo div,
-tr.labeltwo span,
-tr.labeltwo time,
-tr.labeltwo a {
-  color: #ff8000 !important;
-}
-tr.labelthree div,
-tr.labelthree span,
-tr.labelthree time,
-tr.labelthree a {
-  color: #008000 !important;
-}
-tr.labelfour div,
-tr.labelfour span,
-tr.labelfour time,
-tr.labelfour a {
-  color: #0000ff !important;
-}
-tr.labelfive div,
-tr.labelfive span,
-tr.labelfive time,
-tr.labelfive a {
-  color: #8000ff !important;
-}
-tr.flagged div,
-tr.flagged span,
-tr.flagged time,
-tr.flagged a {
-  color: #ff0000 !important;
-}
-tr.prio_high div,
-tr.prio_high span,
-tr.prio_high time,
-tr.prio_high a {
-  color: #ac0000 !important;
-}
-tr.deleted div,
-tr.deleted span,
-tr.deleted time,
-tr.deleted a {
-  color: silver;
+tr.mail.labelone {
+  border-left: 6px solid #ff0080 !important;
+}
+tr.mail.labeltwo {
+  border-left: 6px solid  #ff8000 !important;
+}
+tr.mail.labelthree {
+  border-left: 6px solid  #008000 !important;
+}
+tr.mail.labelfour {
+  border-left: 6px solid #0000ff !important;
+}
+tr.mail.labelfive {
+  border-left: 6px solid #8000ff !important;
+}
+tr.mail.flagged {
+  border-left: 6px solid #ff0000 !important;
+}
+tr.mail.prio_high {
+  border-left: 6px solid #ac0000 !important;
+}
+tr.mail.deleted {
+  border-left: 6px solid silver;
   text-decoration: line-through;
 }
 span.status_img {
@@ -1719,53 +1698,29 @@
   color: #003075;
   font-weight: bold;
 }
-tr.labelone div,
-tr.labelone span,
-tr.labelone time,
-tr.labelone a {
-  color: #ff0080 !important;
-}
-tr.labeltwo div,
-tr.labeltwo span,
-tr.labeltwo time,
-tr.labeltwo a {
-  color: #ff8000 !important;
-}
-tr.labelthree div,
-tr.labelthree span,
-tr.labelthree time,
-tr.labelthree a {
-  color: #008000 !important;
-}
-tr.labelfour div,
-tr.labelfour span,
-tr.labelfour time,
-tr.labelfour a {
-  color: #0000ff !important;
-}
-tr.labelfive div,
-tr.labelfive span,
-tr.labelfive time,
-tr.labelfive a {
-  color: #8000ff !important;
-}
-tr.flagged div,
-tr.flagged span,
-tr.flagged time,
-tr.flagged a {
-  color: #ff0000 !important;
-}
-tr.prio_high div,
-tr.prio_high span,
-tr.prio_high time,
-tr.prio_high a {
-  color: #ac0000 !important;
-}
-tr.deleted div,
-tr.deleted span,
-tr.deleted time,
-tr.deleted a {
-  color: silver;
+tr.mail.labelone {
+  border-left: 6px solid #ff0080 !important;
+}
+tr.mail.labeltwo {
+  border-left: 6px solid #ff8000 !important;
+}
+tr.mail.labelthree {
+  border-left: 6px solid #008000 !important;
+}
+tr.mail.labelfour {
+  border-left: 6px solid #0000ff !important;
+}
+tr.mail.labelfive {
+  border-left: 6px solid #8000ff !important;
+}
+tr.mail.flagged {
+  border-left: 6px solid #ff0000 !important;
+}
+tr.mail.prio_high {
+  border-left: 6px solid #ac0000 !important;
+}
+tr.mail.deleted {
+  border-left: 6px solid silver;
   text-decoration: line-through;
 }
 span.status_img {

Modified: trunk/mail/templates/pixelegg/app.less
URL: http://svn.stylite.de/viewvc/egroupware/trunk/mail/templates/pixelegg/app.less?rev=55882&r1=55881&r2=55882&view=diff
==============================================================================
--- trunk/mail/templates/pixelegg/app.less (original)
+++ trunk/mail/templates/pixelegg/app.less Wed Apr 27 13:18:58 2016
@@ -937,56 +937,32 @@
     font-weight: bold;
 }
 
-tr.labelone div,
-tr.labelone span,
-tr.labelone time,
-tr.labelone a {
-    color: #ff0080 !important;
-}
-tr.labeltwo div,
-tr.labeltwo span,
-tr.labeltwo time,
-tr.labeltwo a {
-    color: #ff8000 !important;
-}
-tr.labelthree div,
-tr.labelthree span,
-tr.labelthree time,
-tr.labelthree a {
-    color: #008000 !important;
-}
-tr.labelfour div,
-tr.labelfour span,
-tr.labelfour time,
-tr.labelfour a {
-    color: #0000ff !important;
-}
-tr.labelfive div,
-tr.labelfive span,
-tr.labelfive time,
-tr.labelfive a {
-    color: #8000ff !important;
-}
-
-tr.flagged div,
-tr.flagged span,
-tr.flagged time,
-tr.flagged a {
-    color: #ff0000 !important;
-}
-
-tr.prio_high div,
-tr.prio_high span,
-tr.prio_high time,
-tr.prio_high a {
-    color: #ac0000 !important;
-}
-
-tr.deleted div,
-tr.deleted span,
-tr.deleted time,
-tr.deleted a {
-    color: silver;
+tr.mail.labelone {
+    border-left:6px solid #ff0080 !important;
+}
+tr.mail.labeltwo {
+    border-left:6px solid #ff8000 !important;
+}
+tr.mail.labelthree {
+    border-left:6px solid #008000 !important;
+}
+tr.mail.labelfour {
+    border-left:6px solid #0000ff !important;
+}
+tr.mail.labelfive {
+    border-left:6px solid #8000ff !important;
+}
+
+tr.mail.flagged {
+    border-left:6px solid #ff0000 !important;
+}
+
+tr.mail.prio_high {
+    border-left:6px solid #ac0000 !important;
+}
+
+tr.mail.deleted {
+    border-left:6px solid silver;
     text-decoration : line-through;
 }
 


------------------------------------------------------------------------------
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.