From 8eb2d9f3e12a45b52a96c96dcfec41538766562a Mon Sep 17 00:00:00 2001 From: Vladimir Zhelvis Date: Fri, 18 Jun 2021 16:11:51 +0300 Subject: [PATCH] Pull request #916: feature/AG-8661 fix styles Merge in EXTENSIONS/browser-extension from feature/AG-8661 to feature/AG-2737 Squashed commit of the following: commit 19520ad3cfbc942dac697adbccb4c24b23fcfaab Author: Vladimir Zhelvis Date: Fri Jun 18 15:26:05 2021 +0300 change column padding in filtering event table commit c59f892307b655f83ed2b07e4367bb3001795250 Author: Vladimir Zhelvis Date: Fri Jun 18 15:12:40 2021 +0300 add invisible space for margin options in select --- .../src/pages/common/components/ui/Select/Select.jsx | 9 ++++++++- .../components/FilteringEvents/filtering-events.pcss | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Extension/src/pages/common/components/ui/Select/Select.jsx b/Extension/src/pages/common/components/ui/Select/Select.jsx index ebac327782..30533822e0 100644 --- a/Extension/src/pages/common/components/ui/Select/Select.jsx +++ b/Extension/src/pages/common/components/ui/Select/Select.jsx @@ -6,7 +6,14 @@ import './select.pcss'; const renderOptions = (options) => options.map((option) => { const { value, title } = option; - return ; + + //   - Invisible thin space + return ( + + ); }); const Select = (props) => { diff --git a/Extension/src/pages/filtering-log/components/FilteringEvents/filtering-events.pcss b/Extension/src/pages/filtering-log/components/FilteringEvents/filtering-events.pcss index a391146963..a0d2a42cfa 100644 --- a/Extension/src/pages/filtering-log/components/FilteringEvents/filtering-events.pcss +++ b/Extension/src/pages/filtering-log/components/FilteringEvents/filtering-events.pcss @@ -230,7 +230,7 @@ } & .th, & .td { - padding: 0 25px; + padding: 0 10px; height: 30px; display: inline-block; width: 20%;