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:
parent
e73b64b64f
commit
fe0c13424a
@ -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 {
|
||||||
|
|||||||
@ -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",
|
||||||
|
|||||||
@ -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",
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Generated Lens theme CSS-variables, don't edit manually.
|
Generated Lens theme CSS-variables, don't edit manually.
|
||||||
To refresh file run $: yarn run ts-node build/build_theme_vars.ts
|
To refresh file run $: yarn run ts-node build/build_theme_vars.ts
|
||||||
*/
|
*/
|
||||||
@ -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;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user