noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 56/119: Cosmetic for cells for tag and contac


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 56/119: Cosmetic for cells for tag and contact
Date: Mon, 26 Oct 2020 18:27:19 -0400 (EDT)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 09506c523a45cbb46770679828787517277a58dc
Author: Dany De Bontridder <danydb@noalyss.eu>
AuthorDate: Tue Oct 6 19:03:49 2020 +0200

    Cosmetic for cells for tag and contact
---
 html/style-classic.css      | 15 ++++++++-------
 html/style-classic7.css     |  9 ++++++++-
 html/style-light.css        | 13 +++++++------
 include/class/tag.class.php |  2 +-
 4 files changed, 24 insertions(+), 15 deletions(-)

diff --git a/html/style-classic.css b/html/style-classic.css
index 6874bcb..f4ac0d3 100644
--- a/html/style-classic.css
+++ b/html/style-classic.css
@@ -2434,10 +2434,11 @@ span.title_tab_row {
      color : white !important;
      
 }
-
- /**
-  * dialog box for adding, modifying predefined operation
-  */
- #prdfop {
-
- }
\ No newline at end of file
+/* Cell with tag */
+span.tagcell {
+    border:1px solid darkgray;
+    padding:2px;margin:1px;
+    display: inline-block;
+    color:black;
+        
+}    
\ No newline at end of file
diff --git a/html/style-classic7.css b/html/style-classic7.css
index 2f2cda9..abbbcc3 100644
--- a/html/style-classic7.css
+++ b/html/style-classic7.css
@@ -2474,4 +2474,11 @@ p.info {
     font-family: sans-serif;
     font-style: italic;
 }
-}
\ No newline at end of file
+
+/* Cell with tag */
+span.tagcell {
+    border-radius:3px;
+    border:1px solid darkblue;
+    padding:3px;margin:1px;
+    display: inline-block;
+}    
\ No newline at end of file
diff --git a/html/style-light.css b/html/style-light.css
index 6474f1d..7fc3883 100644
--- a/html/style-light.css
+++ b/html/style-light.css
@@ -2369,9 +2369,10 @@ span.title_tab_row {
      
 }
 
- /**
-  * dialog box for adding, modifying predefined operation
-  */
- #prdfop {
-
- }
\ No newline at end of file
+ /* Cell with tag */
+span.tagcell {
+    border:1px solid blue;
+    padding:1px;margin:1px;
+    display: inline-block;
+    color:black;
+}    
\ No newline at end of file
diff --git a/include/class/tag.class.php b/include/class/tag.class.php
index 792e8cd..2f3b0a1 100644
--- a/include/class/tag.class.php
+++ b/include/class/tag.class.php
@@ -104,7 +104,7 @@ class Tag
      * In the screen search add this data to the cell
      */
     function update_search_cell($p_prefix) {
-        echo '<span id="sp_'.$p_prefix.$this->data->t_id.'" 
style="border-radius:3px;border:1px solid;padding:3px;margin:1px">';
+        echo '<span id="sp_'.$p_prefix.$this->data->t_id.'" class="tagcell">';
         echo h($this->data->t_tag);
         echo HtmlInput::hidden($p_prefix.'tag[]', $this->data->t_id);
         $js=sprintf("$('sp_".$p_prefix.$this->data->t_id."').remove();");



reply via email to

[Prev in Thread] Current Thread [Next in Thread]