From bc095da738391514be73b84600bdd7632e4bff1d Mon Sep 17 00:00:00 2001 From: ARLakhin Date: Tue, 21 Apr 2026 00:29:20 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D1=81=D1=82=D1=80=D0=B5=D0=BB=D0=BE=D1=87=D0=BA?= =?UTF-8?q?=D0=B8=20=D0=B8=20=D1=81=D1=82=D0=B8=D0=BB=D1=8C=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=B8=D1=85=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80=D0=B0?= =?UTF-8?q?=D0=B6=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/assets/images/arrow_down.svg | 8 ++++++++ app/assets/images/arrow_up.svg | 8 ++++++++ app/assets/stylesheets/organisation.scss | 19 +++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100755 app/assets/images/arrow_down.svg create mode 100755 app/assets/images/arrow_up.svg create mode 100644 app/assets/stylesheets/organisation.scss diff --git a/app/assets/images/arrow_down.svg b/app/assets/images/arrow_down.svg new file mode 100755 index 0000000..0afa0a4 --- /dev/null +++ b/app/assets/images/arrow_down.svg @@ -0,0 +1,8 @@ + + + \ No newline at end of file diff --git a/app/assets/images/arrow_up.svg b/app/assets/images/arrow_up.svg new file mode 100755 index 0000000..4b8db4d --- /dev/null +++ b/app/assets/images/arrow_up.svg @@ -0,0 +1,8 @@ + + + \ No newline at end of file diff --git a/app/assets/stylesheets/organisation.scss b/app/assets/stylesheets/organisation.scss new file mode 100644 index 0000000..2f27bfa --- /dev/null +++ b/app/assets/stylesheets/organisation.scss @@ -0,0 +1,19 @@ +.up::before, +.down::before { + content: ""; + display: inline-block; + width: 12px; + height: 12px; + margin-right: 6px; + background-repeat: no-repeat; + background-position: center; + background-size: contain; +} + +.up::before { + background-image: asset-url('arrow_up.svg'); +} + +.down::before { + background-image: asset-url('arrow_down.svg'); +}