diff --git a/apps/api/app/assets/stylesheets/active_admin.scss b/apps/api/app/assets/stylesheets/active_admin.scss index e42fda7..2c912fc 100644 --- a/apps/api/app/assets/stylesheets/active_admin.scss +++ b/apps/api/app/assets/stylesheets/active_admin.scss @@ -27,6 +27,19 @@ .fm-icon-btn { font-size: 16px; text-decoration: none; margin-right: 6px; opacity: 0.7; cursor: pointer; &:hover { opacity: 1; } } .fm-icon-danger:hover { filter: brightness(1.3); } .fm-danger { color: #dc3545; } + +// Emoji action buttons in AA index tables +.table_actions { + a.view_link, a.edit_link, a.delete_link { + font-size: 0; + text-decoration: none; + &::before { font-size: 16px; opacity: 0.7; } + &:hover::before { opacity: 1; } + } + a.view_link::before { content: "👁️"; } + a.edit_link::before { content: "✏️"; } + a.delete_link::before { content: "🗑️"; } +} .fm-entry-actions { white-space: nowrap; } .fm-drop-hint { font-size: 12px; color: #999; margin-left: 8px; } .fm-dropzone { transition: background 0.15s, border-color 0.15s; border: 2px dashed transparent; }