Star Icon Style Consistency Documentation
Overview
This documentation describes the standardization of star and redstar icon styles across the CBEEZAI ERP & CRM user module. All star icons representing administrator users and redstar icons representing super administrator users now use a consistent style for better visual uniformity.

Standard Style
All star and redstar icons now use the following consistent style:

php
style="width: 12px; height: 12px;"
Files Updated
The following files have been updated to use the standardized icon style:

htdocs/user/hierarchy.php
Lines 150-152: Star icons in user hierarchy view
Lines 170-172: Star icons for excluded parent users
htdocs/user/class/user.class.php
Lines 3385-3387: Star icons in user kanban view
htdocs/user/list.php
Lines 1118-1120: Star icons in user list view
Lines 1135-1137: Star icons for supervisor column
htdocs/user/document.php
Lines 196-198: Star icons in user document view
htdocs/user/note.php
Lines 127-129: Star icons in user note view
htdocs/user/group/card.php
Lines 449-451: Star icons in user group member list
htdocs/user/param_ihm.php
Lines 331-333: Star icons in user interface parameter view
Lines 510-512: Star icons in user interface parameter detail view
htdocs/user/perms.php
Lines 294-296: Star icons in user permission view
htdocs/user/bank.php
Lines 391-393: Star icons in user bank information view
htdocs/admin/tools/listevents.php
Lines 499-501: Star icons in event log user display
htdocs/user/card.php
Lines 1660-1662: Star icons in user card view
htdocs/user/agenda_extsites.php
Lines 210-212: Star icons in user external agenda sites view
Implementation Details
Each file was updated to replace various CSS class-based styling with the consistent inline style. The previous implementations used different combinations of CSS classes such as:

class="valignmiddle paddingright paddingleft"
class="paddingleft valignmiddle"
class="valignmiddle paddingright"
These were all replaced with the standardized inline style:

php
style="width: 12px; height: 12px;"
Purpose
This standardization ensures visual consistency across all user interface elements where administrator status is indicated with star icons. It improves the user experience by providing a uniform appearance for these status indicators throughout the application.

Maintenance
When adding new star or redstar icons in the user module, developers should use the standardized style:

php
img_picto($langs->trans("AdministratorDesc"), 'star', 'style="width: 12px; height: 12px;"')
img_picto($langs->trans("SuperAdministratorDesc"), 'redstar', 'style="width: 12px; height: 12px;"')
