From 2b8c92d5961cac256d64c37c72597b3197c2829e Mon Sep 17 00:00:00 2001 From: RDMStreet Date: Thu, 25 Feb 2021 19:36:57 +0000 Subject: [PATCH 1/2] Fix expaneded table row style --- src/styles/table.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/table.scss b/src/styles/table.scss index 576a2079..dc68567b 100644 --- a/src/styles/table.scss +++ b/src/styles/table.scss @@ -116,3 +116,7 @@ transform: rotate(180deg); } } +.el-table__expanded-cell[class*=cell] { + padding: 8px 16px; + background: var(--s-color-base-background); +} From 6ff9b867ce15582ba050cf0326a6a05b4b2e0145 Mon Sep 17 00:00:00 2001 From: RDMStreet Date: Thu, 25 Feb 2021 19:39:05 +0000 Subject: [PATCH 2/2] Fix line-height --- src/styles/table.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/table.scss b/src/styles/table.scss index dc68567b..9c85d481 100644 --- a/src/styles/table.scss +++ b/src/styles/table.scss @@ -118,5 +118,6 @@ } .el-table__expanded-cell[class*=cell] { padding: 8px 16px; + line-height: 22.4px; background: var(--s-color-base-background); }