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 {
$border: 1px solid var(--tableHeaderBorderColor);
background-color: var(--tableHeaderBackground);
border-bottom-width: var(--tableHeaderBorderWidth);
border-bottom-style: solid;
border-bottom-color: var(--tableHeaderBorderColor);
border-bottom: 1px solid var(--borderFaintColor);
color: var(--tableHeaderColor);
display: flex;
flex-shrink: 0;
&.topLine {
border-top: $border;
border-top: 1px solid var(--borderFaintColor);
}
&.sticky {

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/*
/*
Generated Lens theme CSS-variables, don't edit manually.
To refresh file run $: yarn run ts-node build/build_theme_vars.ts
*/
@ -38,8 +38,6 @@
--tableBgcStripe: #2a2d33;
--tableBgcSelected: #383c42;
--tableHeaderBackground: #262b2f;
--tableHeaderBorderWidth: 1px;
--tableHeaderBorderColor: #36393e;
--tableHeaderColor: #ffffff;
--tableSelectedRowColor: #ffffff;
--helmLogoBackground: #ffffff;