From ee7248204f67dd7ccc0b2026ae5756b257ebb3eb Mon Sep 17 00:00:00 2001 From: elhombretecla Date: Mon, 14 Jun 2021 20:00:10 +0200 Subject: [PATCH] :lipstick: Add new actions icon --- frontend/resources/styles/common/framework.scss | 4 ++-- frontend/src/app/main/ui/viewer/header.cljs | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/resources/styles/common/framework.scss b/frontend/resources/styles/common/framework.scss index 629cee8d1..d294b661d 100644 --- a/frontend/resources/styles/common/framework.scss +++ b/frontend/resources/styles/common/framework.scss @@ -118,10 +118,10 @@ .btn-icon-basic { @extend %btn; background: transparent; - color: $color-gray-60; + color: $color-gray-20; padding: $x-small; svg { - fill: $color-gray-60; + fill: $color-gray-20; } &:hover { background: transparent; diff --git a/frontend/src/app/main/ui/viewer/header.cljs b/frontend/src/app/main/ui/viewer/header.cljs index 0b82dd434..ff22757b7 100644 --- a/frontend/src/app/main/ui/viewer/header.cljs +++ b/frontend/src/app/main/ui/viewer/header.cljs @@ -276,11 +276,13 @@ :on-zoom-to-100 (st/emitf dv/reset-zoom) :on-zoom-to-200 (st/emitf dv/zoom-to-200)}] - [:span.btn-icon-dark.btn-small.tooltip.tooltip-bottom-left + [:span.btn-icon-basic.btn-small.tooltip.tooltip-bottom-left {:alt (t locale "viewer.header.fullscreen") :on-click #(if @fullscreen (fullscreen false) (fullscreen true))} (if @fullscreen i/full-screen-off i/full-screen)] - ]])) + + [:span.btn-icon-dark.btn-small + i/actions]]]))