This commit is contained in:
Ahmed Bouhuolia
2025-10-18 18:12:26 +02:00
parent 40395274d0
commit aff8155bd6
15 changed files with 105 additions and 212 deletions

View File

@@ -4,6 +4,12 @@
$self: '.page-form';
padding: 20px;
--x-color-tabs-border: #f0f0f0;
.bp4-dark & {
--x-color-tabs-border: var(--color-dark-gray3);
}
#{$self}__header {
padding: 0;
}
@@ -136,7 +142,7 @@
bottom: 0;
width: 100%;
height: 2px;
background: #f0f0f0;
background: var(--x-color-tabs-border);
}
> *:not(:last-child) {

View File

@@ -498,8 +498,8 @@ $dashboard-views-bar-height: 44px;
}
&__card {
border: 1px solid #d2dce2;
background: #fff;
border: 1px solid var(--color-dashboard-card-border);
background: var(--color-dashboard-card-background);
&--page {
flex: 1 0 0;

View File

@@ -3,6 +3,14 @@
$self: '.page-form';
padding: 20px;
--x-header-border: #eaeaea;
--x-section-border: #eaeaea;
.bp4-dark & {
--x-header-border: var(--color-dark-gray3);
--x-section-border: var(--color-dark-gray3);
}
#{$self}__header {
padding: 0;
}
@@ -10,7 +18,7 @@
overflow: hidden;
padding-top: 5px;
margin-bottom: 20px;
border-bottom: 1px solid #eaeaea;
border-bottom: 1px solid var(--x-header-border);
padding-bottom: 5px;
max-width: 1000px;
}
@@ -66,7 +74,7 @@
}
&--selling-cost {
border-bottom: 1px solid #eaeaea;
border-bottom: 1px solid var(--x-section-border);
margin-bottom: 1.25rem;
padding-bottom: 0.25rem;
}

View File

@@ -4,6 +4,16 @@
$self: '.page-form';
padding: 20px;
--x-border: #e4e4e4;
--x-color-tabs-border: #f0f0f0;
--x-color-tabs-tab-item-text: #888;
.bp4-dark & {
--x-border: var(--color-dark-gray3);
--x-color-tabs-border: var(--color-dark-gray3);
--x-color-tabs-tab-item-text: var(--color-light-gray1);
}
#{$self}__header {
padding: 0;
}
@@ -11,7 +21,7 @@
padding: 10px 0 0;
margin: 0 0 20px;
overflow: hidden;
border-bottom: 1px solid #e4e4e4;
border-bottom: 1px solid var(--x-border);
max-width: 1000px;
}
@@ -136,7 +146,7 @@
bottom: 0;
width: 100%;
height: 2px;
background: #f0f0f0;
background: var(--x-color-tabs-border);
}
> *:not(:last-child) {
@@ -145,7 +155,7 @@
&.bp4-large > .bp4-tab {
font-size: 15px;
color: #555;
color: var(--x-color-tabs-tab-item-text);
&[aria-selected='true'],
&:not([aria-disabled='true']):hover {
@@ -154,9 +164,4 @@
}
}
}
#{$self}__floating-actions {
// margin-left: -40px;
// margin-right: -40px;
}
}