1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove blue borders in light themed tables (#6734)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-12-12 16:30:00 +03:00 committed by GitHub
parent e73b64b64f
commit fe0c13424a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 13 deletions

View File

@ -4,18 +4,14 @@
*/ */
.TableHead { .TableHead {
$border: 1px solid var(--tableHeaderBorderColor);
background-color: var(--tableHeaderBackground); background-color: var(--tableHeaderBackground);
border-bottom-width: var(--tableHeaderBorderWidth); border-bottom: 1px solid var(--borderFaintColor);
border-bottom-style: solid;
border-bottom-color: var(--tableHeaderBorderColor);
color: var(--tableHeaderColor); color: var(--tableHeaderColor);
display: flex; display: flex;
flex-shrink: 0; flex-shrink: 0;
&.topLine { &.topLine {
border-top: $border; border-top: 1px solid var(--borderFaintColor);
} }
&.sticky { &.sticky {

View File

@ -45,8 +45,6 @@ const lensDarkTheme: LensTheme = {
"tableBgcStripe": "#2a2d33", "tableBgcStripe": "#2a2d33",
"tableBgcSelected": "#383c42", "tableBgcSelected": "#383c42",
"tableHeaderBackground": "#262b2f", "tableHeaderBackground": "#262b2f",
"tableHeaderBorderWidth": "1px",
"tableHeaderBorderColor": "#36393e",
"tableHeaderColor": "#ffffff", "tableHeaderColor": "#ffffff",
"tableSelectedRowColor": "#ffffff", "tableSelectedRowColor": "#ffffff",
"helmLogoBackground": "#ffffff", "helmLogoBackground": "#ffffff",

View File

@ -44,8 +44,6 @@ const lensLightTheme: LensTheme = {
"tableBgcStripe": "#f8f8f8", "tableBgcStripe": "#f8f8f8",
"tableBgcSelected": "#f4f5f5", "tableBgcSelected": "#f4f5f5",
"tableHeaderBackground": "#f1f1f1", "tableHeaderBackground": "#f1f1f1",
"tableHeaderBorderWidth": "2px",
"tableHeaderBorderColor": "#3d90ce",
"tableHeaderColor": "#555555", "tableHeaderColor": "#555555",
"tableSelectedRowColor": "#222222", "tableSelectedRowColor": "#222222",
"helmLogoBackground": "#ffffff", "helmLogoBackground": "#ffffff",

View File

@ -38,8 +38,6 @@
--tableBgcStripe: #2a2d33; --tableBgcStripe: #2a2d33;
--tableBgcSelected: #383c42; --tableBgcSelected: #383c42;
--tableHeaderBackground: #262b2f; --tableHeaderBackground: #262b2f;
--tableHeaderBorderWidth: 1px;
--tableHeaderBorderColor: #36393e;
--tableHeaderColor: #ffffff; --tableHeaderColor: #ffffff;
--tableSelectedRowColor: #ffffff; --tableSelectedRowColor: #ffffff;
--helmLogoBackground: #ffffff; --helmLogoBackground: #ffffff;