Forráskód Böngészése

The name of the dynamic address elimination field is now written in red font for temporary recording

root 5 hónapja
szülő
commit
f0738b5438
3 módosított fájl, 6 hozzáadás és 4 törlés
  1. 2 1
      html/admin/users/editauth.php
  2. 2 1
      html/css/white.css
  3. 2 2
      html/inc/common.php

+ 2 - 1
html/admin/users/editauth.php

@@ -415,7 +415,8 @@ if (empty($auth_info['eof']) or $auth_info['eof'] == '0000-00-00 00:00:00') {
             </tr>
             <tr>
                 <td><?php print WEB_cell_temporary; ?></td>
-                <td><?php print WEB_cell_eof; ?></td>
+                <?php if ($auth_info['dynamic']) { print "<td class='cell_red'>"; } else { print "<td>"; } ?>
+                <?php print WEB_cell_eof; ?></td>
                 <td></td>
                 <td></td>
                 <td></td>

+ 2 - 1
html/css/white.css

@@ -14,7 +14,8 @@ table.info                      { background-color: #f8f2aa; margin-bottom: 5px;
 
 td                              { padding: 4px; border-bottom: 1px solid #ddd; }
 td.data                         { background-color: #ffffff; }
-td.data_red                     { background-color: #ffffff;  color: red; }
+td.cell_red                     { background-color: #cfcfcf;  color: red; }
+td.data_red                     { background-color: #ffffff;  font-size: 24pt; color: red; }
 td.data_green                   { background-color: #ffffff;  color: green; }
 td.info                         { background-color: #f8f2aa; }
 td.up                           { background-color: #33ff99; }

+ 2 - 2
html/inc/common.php

@@ -1577,8 +1577,8 @@ function get_qa($qa_value, $text = FALSE)
         if ($qa_value == 1) { return "Да"; }
         return "Нет";
         } else {
-        if ($qa_value == 1) { return '<span style="font-size: 16px; font-weight: bold;">✓</span>'; }
-        return '<span style="font-size: 16px;">✗</span>';
+        if ($qa_value == 1) { return '<span style="font-size: 24px; font-weight: bold;">✓</span>'; }
+        return '<span style="font-size: 24px; font-weight: bold;">✗</span>';
         }
 }