From e80588b234b48f4634bbfb6cb54f73678ffc7092 Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Fri, 11 Oct 2024 13:51:41 -0500 Subject: [PATCH] Add icons --- client/icons/FacingView.svg | 10 ++++++++++ client/icons/FlowView.svg | 24 ++++++++++++++++++++++++ client/icons/SingleView.svg | 7 +++++++ client/icons/customIcons.less | 10 ++++++++-- 4 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 client/icons/FacingView.svg create mode 100644 client/icons/FlowView.svg create mode 100644 client/icons/SingleView.svg diff --git a/client/icons/FacingView.svg b/client/icons/FacingView.svg new file mode 100644 index 000000000..cc97162ac --- /dev/null +++ b/client/icons/FacingView.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/client/icons/FlowView.svg b/client/icons/FlowView.svg new file mode 100644 index 000000000..a1c8249ca --- /dev/null +++ b/client/icons/FlowView.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/client/icons/SingleView.svg b/client/icons/SingleView.svg new file mode 100644 index 000000000..c885529ab --- /dev/null +++ b/client/icons/SingleView.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/client/icons/customIcons.less b/client/icons/customIcons.less index 0d462833d..ed32129cf 100644 --- a/client/icons/customIcons.less +++ b/client/icons/customIcons.less @@ -70,6 +70,12 @@ .zoom-to-fit { mask-image: url('../icons/zoom-to-fit.svg'); } -.fit-width { - mask-image: url('../icons/fit-width.svg'); +.single-view { + mask-image: url('../icons/SingleView.svg'); +} +.facing-view { + mask-image: url('../icons/FacingView.svg'); +} +.flow-view { + mask-image: url('../icons/FlowView.svg'); }