Refactor UI elements for consistency and clarity

- Updated action buttons across multiple files to use icons (e.g., "Save" to "💾+", "Delete" to "X").
- Replaced "Cancel" button text with a left arrow (←) for a more intuitive navigation experience.
- Removed unnecessary action columns from tables to streamline the interface.
- Enhanced table rows to be clickable for better user interaction, redirecting to relevant management pages.
- Adjusted font sizes and styles in CSS for improved readability and aesthetics.
- Standardized back button functionality to use a left arrow across various pages.
This commit is contained in:
“VeLiTi”
2025-12-15 17:08:44 +01:00
parent bdb460c046
commit ec20d44267
67 changed files with 153 additions and 216 deletions

View File

@@ -92,7 +92,6 @@ $view .= '
<th class="responsive-hidden">'.$history_label3.'</th>
<th class="responsive-hidden">'.$history_label4.'</th>
<th>'.$history_label5.'</th>
<th>'.$view_asset_actions.'</th>
</tr>
</thead>
<tbody>
@@ -116,13 +115,12 @@ $view .= '
$description = str_replace($search, $replace, $description);
$view .= '<tr>
$view .= '<tr onclick="window.location.href=\'index.php?page=equipment&equipmentID='.$response->equipmentID.'\'" style="cursor: pointer;">
<td class="responsive-hidden">'.$response->historyID.'</td>
<td>'.$response->type.'</td>
<td class="responsive-hidden">'.getRelativeTime($response->created).'</td>
<td class="responsive-hidden">'.$response->createdby.'</td>
<td><div style="overflow-y:scroll;height:200px !important;max-width:300px;"><pre>' . $description . '</pre><div></td>
<td><a href="index.php?page=equipment&equipmentID='.$response->equipmentID.'" class="btn_link">'.$general_view .'</a></td>
</tr>
';
}