From 9cdf7b76fd5daef06039ac7f3a591a98ff02fc29 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sun, 8 Jun 2025 16:34:16 +0200 Subject: [PATCH] remains of fontawesome --- app/views/my/profile.slim | 10 +++++----- app/views/packages/_receive_upload.slim | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/views/my/profile.slim b/app/views/my/profile.slim index 3f8e41b..ca5f3a5 100644 --- a/app/views/my/profile.slim +++ b/app/views/my/profile.slim @@ -70,23 +70,23 @@ h1 Your data ul - if can? :approve, Screenshot.new li - => fa_icon 'thumbs-up' + => icon 'thumbs-up' 'approve uploaded screenshots - if can? :destroy, Screenshot.new li - => fa_icon 'trash' + => icon 'trash' 'delete screenshots - if can? :hide, Screenshot.new li - => fa_icon 'eye-slash' + => icon 'eye-closed' 'hide screenshots from the public - if can? :unhide, Screenshot.new li - => fa_icon 'eye' + => icon 'eye' 'restore (unhide) screenshots for the public - if can? :view, Log li - => fa_icon 'book' + => icon 'book' 'view logs .cell.auto diff --git a/app/views/packages/_receive_upload.slim b/app/views/packages/_receive_upload.slim index eb564ee..590241a 100644 --- a/app/views/packages/_receive_upload.slim +++ b/app/views/packages/_receive_upload.slim @@ -8,7 +8,7 @@ .callout.warning - if @invalid_images.any? - = fa_icon 'exclamation-circle 2x pull-left' + = icon 'circle-alert' p These images were not accepted: ul @@ -19,7 +19,7 @@ - if @valid_images.any? - = fa_icon 'check-circle 2x pull-left' + = icon 'circle-check' p ' #{pluralize(@valid_images.length, 'screenshot')} received successfully. ' Please review the images and add a description for each image. Thanks.