@alifd/theme-panda 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/design-token.js +1 -1
- package/dist/next-1.css +24 -24
- package/dist/next-2.css +35 -35
- package/dist/next-noreset-1.css +24 -24
- package/dist/next-noreset-2.css +35 -35
- package/dist/next-noreset.css +58 -58
- package/dist/next-noreset.min-1.css +2 -2
- package/dist/next-noreset.min-2.css +2 -2
- package/dist/next-noreset.min.css +2 -2
- package/dist/next-noreset.var-1.css +47 -47
- package/dist/next-noreset.var-2.css +69 -69
- package/dist/next-noreset.var.css +115 -115
- package/dist/next-noreset.var.min-1.css +2 -2
- package/dist/next-noreset.var.min-2.css +2 -2
- package/dist/next-noreset.var.min.css +2 -2
- package/dist/next.css +58 -58
- package/dist/next.js +1 -1
- package/dist/next.min-1.css +2 -2
- package/dist/next.min-2.css +2 -2
- package/dist/next.min.css +2 -2
- package/dist/next.var-1.css +47 -47
- package/dist/next.var-2.css +69 -69
- package/dist/next.var.css +115 -115
- package/dist/next.var.min-1.css +2 -2
- package/dist/next.var.min-2.css +2 -2
- package/dist/next.var.min.css +2 -2
- package/package.json +2 -2
- package/variables.css +71 -59
- package/variables.js +6 -0
- package/variables.less +21 -18
- package/variables.scss +21 -18
- package/variables.scss2css.scss +61 -52
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @alifd/theme-panda@0.
|
|
2
|
+
* @alifd/theme-panda@0.2.0 (https://fusion.design)
|
|
3
3
|
* @alifd/next@1.25.51 (https://fusion.design)
|
|
4
4
|
* Copyright 2018-present Alibaba Group,
|
|
5
5
|
* Licensed under MIT (https://github.com/alibaba-fusion/next/blob/master/LICENSE)
|
|
@@ -4229,8 +4229,8 @@
|
|
|
4229
4229
|
border-style: var(--btn-pure-normal-border-style, solid);
|
|
4230
4230
|
background: #FFFFFF;
|
|
4231
4231
|
background: var(--btn-pure-normal-bg, #FFFFFF);
|
|
4232
|
-
border-color: #
|
|
4233
|
-
border-color: var(--btn-pure-normal-border-color, #
|
|
4232
|
+
border-color: #edeef2;
|
|
4233
|
+
border-color: var(--btn-pure-normal-border-color, #edeef2); }
|
|
4234
4234
|
.next-btn.next-btn-normal, .next-btn.next-btn-normal:link, .next-btn.next-btn-normal:visited, .next-btn.next-btn-normal.visited {
|
|
4235
4235
|
color: #2e3038;
|
|
4236
4236
|
color: var(--btn-pure-normal-color, #2e3038); }
|
|
@@ -13732,10 +13732,10 @@
|
|
|
13732
13732
|
content: ''; }
|
|
13733
13733
|
.next-nav.next-hoz {
|
|
13734
13734
|
padding: 0;
|
|
13735
|
-
height: calc(
|
|
13736
|
-
height: calc(var(--nav-hoz-height,
|
|
13737
|
-
line-height: calc(
|
|
13738
|
-
line-height: calc(var(--nav-hoz-height,
|
|
13735
|
+
height: calc(32px + 8px*2);
|
|
13736
|
+
height: calc(var(--nav-hoz-height, 32px) + var(--nav-hoz-item-margin-tb, 8px)*2);
|
|
13737
|
+
line-height: calc(32px - 0px*2);
|
|
13738
|
+
line-height: calc(var(--nav-hoz-height, 32px) - var(--popup-local-border-width, 0px)*2);
|
|
13739
13739
|
font-size: 14px;
|
|
13740
13740
|
font-size: var(--nav-hoz-font-size, 14px); }
|
|
13741
13741
|
.next-nav.next-hoz .next-menu-item.next-nav-item {
|
|
@@ -13745,17 +13745,17 @@
|
|
|
13745
13745
|
margin-right: var(--nav-hoz-item-margin-lr, 0px);
|
|
13746
13746
|
padding: 0 20px;
|
|
13747
13747
|
padding: 0 var(--nav-hoz-item-padding-lr, 20px);
|
|
13748
|
-
border-radius:
|
|
13749
|
-
border-radius: var(--nav-hoz-item-corner,
|
|
13748
|
+
border-radius: 8px;
|
|
13749
|
+
border-radius: var(--nav-hoz-item-corner, 8px); }
|
|
13750
13750
|
.next-nav.next-hoz .next-menu-item,
|
|
13751
13751
|
.next-nav.next-hoz .next-menu-sub-menu-wrapper > .next-menu-item {
|
|
13752
|
-
margin-top:
|
|
13753
|
-
margin-top: var(--nav-hoz-item-margin-tb,
|
|
13754
|
-
margin-bottom:
|
|
13755
|
-
margin-bottom: var(--nav-hoz-item-margin-tb,
|
|
13752
|
+
margin-top: 8px;
|
|
13753
|
+
margin-top: var(--nav-hoz-item-margin-tb, 8px);
|
|
13754
|
+
margin-bottom: 8px;
|
|
13755
|
+
margin-bottom: var(--nav-hoz-item-margin-tb, 8px); }
|
|
13756
13756
|
.next-nav.next-hoz .next-menu-item-inner {
|
|
13757
|
-
height: calc(
|
|
13758
|
-
height: calc(var(--nav-hoz-height,
|
|
13757
|
+
height: calc(32px - 0px*2);
|
|
13758
|
+
height: calc(var(--nav-hoz-height, 32px) - var(--popup-local-border-width, 0px)*2);
|
|
13759
13759
|
font-size: 14px;
|
|
13760
13760
|
font-size: var(--nav-hoz-font-size, 14px); }
|
|
13761
13761
|
.next-nav.next-hoz .next-menu-item.next-nav-item.next-nav-with-title {
|
|
@@ -13763,8 +13763,8 @@
|
|
|
13763
13763
|
padding: 12px 8px; }
|
|
13764
13764
|
.next-nav.next-hoz .next-menu-item.next-nav-item.next-nav-with-title .next-menu-item-inner {
|
|
13765
13765
|
height: auto;
|
|
13766
|
-
min-height: calc(
|
|
13767
|
-
min-height: calc(var(--nav-hoz-height,
|
|
13766
|
+
min-height: calc(32px - 0px*2);
|
|
13767
|
+
min-height: calc(var(--nav-hoz-height, 32px) - var(--popup-local-border-width, 0px)*2); }
|
|
13768
13768
|
.next-nav.next-hoz .next-menu-item.next-nav-item.next-nav-with-title .next-nav-text {
|
|
13769
13769
|
display: block;
|
|
13770
13770
|
line-height: 1;
|
|
@@ -13780,12 +13780,12 @@
|
|
|
13780
13780
|
font-size: var(--nav-group-font-size, 14px); }
|
|
13781
13781
|
.next-nav.next-hoz .next-menu-header {
|
|
13782
13782
|
float: left;
|
|
13783
|
-
height: calc(
|
|
13784
|
-
height: calc(var(--nav-hoz-height,
|
|
13783
|
+
height: calc(32px - 0px*2);
|
|
13784
|
+
height: calc(var(--nav-hoz-height, 32px) - var(--popup-local-border-width, 0px)*2); }
|
|
13785
13785
|
.next-nav.next-hoz .next-menu-footer {
|
|
13786
13786
|
float: right;
|
|
13787
|
-
height: calc(
|
|
13788
|
-
height: calc(var(--nav-hoz-height,
|
|
13787
|
+
height: calc(32px - 0px*2);
|
|
13788
|
+
height: calc(var(--nav-hoz-height, 32px) - var(--popup-local-border-width, 0px)*2); }
|
|
13789
13789
|
.next-nav.next-hoz .next-nav-item:before {
|
|
13790
13790
|
width: 0;
|
|
13791
13791
|
left: 50%;
|
|
@@ -13895,30 +13895,30 @@
|
|
|
13895
13895
|
.next-nav.next-primary {
|
|
13896
13896
|
border-width: 0px;
|
|
13897
13897
|
border-width: var(--nav-primary-border-width, 0px);
|
|
13898
|
-
background: #
|
|
13899
|
-
background: var(--nav-primary-bg-color, #
|
|
13898
|
+
background: #000a24;
|
|
13899
|
+
background: var(--nav-primary-bg-color, #000a24);
|
|
13900
13900
|
border-color: transparent;
|
|
13901
13901
|
border-color: var(--nav-primary-border-color, transparent);
|
|
13902
13902
|
color: rgba(255, 255, 255, 0.65);
|
|
13903
13903
|
color: var(--nav-primary-text-color, rgba(255, 255, 255, 0.65));
|
|
13904
|
-
font-weight:
|
|
13905
|
-
font-weight: var(--nav-primary-text-style,
|
|
13904
|
+
font-weight: normal;
|
|
13905
|
+
font-weight: var(--nav-primary-text-style, normal);
|
|
13906
13906
|
-webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);
|
|
13907
13907
|
-webkit-box-shadow: var(--nav-primary-shadow, 2px 2px 4px 0px rgba(0, 0, 0, 0.12));
|
|
13908
13908
|
box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);
|
|
13909
13909
|
box-shadow: var(--nav-primary-shadow, 2px 2px 4px 0px rgba(0, 0, 0, 0.12)); }
|
|
13910
13910
|
.next-nav.next-primary.next-hoz {
|
|
13911
|
-
line-height:
|
|
13912
|
-
line-height: var(--nav-hoz-height,
|
|
13913
|
-
line-height: calc(
|
|
13914
|
-
line-height: calc(var(--nav-hoz-height,
|
|
13911
|
+
line-height: 32px;
|
|
13912
|
+
line-height: var(--nav-hoz-height, 32px);
|
|
13913
|
+
line-height: calc(32px - 0px*2);
|
|
13914
|
+
line-height: calc(var(--nav-hoz-height, 32px) - var(--nav-primary-border-width, 0px)*2); }
|
|
13915
13915
|
.next-nav.next-primary.next-hoz .next-menu-header,
|
|
13916
13916
|
.next-nav.next-primary.next-hoz .next-menu-footer,
|
|
13917
13917
|
.next-nav.next-primary.next-hoz .next-menu-item-inner {
|
|
13918
|
-
line-height:
|
|
13919
|
-
line-height: var(--nav-hoz-height,
|
|
13920
|
-
height: calc(
|
|
13921
|
-
height: calc(var(--nav-hoz-height,
|
|
13918
|
+
line-height: 32px;
|
|
13919
|
+
line-height: var(--nav-hoz-height, 32px);
|
|
13920
|
+
height: calc(32px - 0px*2);
|
|
13921
|
+
height: calc(var(--nav-hoz-height, 32px) - var(--nav-primary-border-width, 0px)*2); }
|
|
13922
13922
|
.next-nav.next-primary.next-hoz.next-top .next-nav-item:before {
|
|
13923
13923
|
top: 0;
|
|
13924
13924
|
top: calc(0px - 0px);
|
|
@@ -13936,8 +13936,8 @@
|
|
|
13936
13936
|
right: calc(0px - 0px);
|
|
13937
13937
|
right: calc(0px - var(--nav-primary-border-width, 0px)); }
|
|
13938
13938
|
.next-nav.next-primary .next-nav-item.next-menu-item {
|
|
13939
|
-
background: #
|
|
13940
|
-
background: var(--nav-primary-bg-color, #
|
|
13939
|
+
background: #000a24;
|
|
13940
|
+
background: var(--nav-primary-bg-color, #000a24);
|
|
13941
13941
|
color: rgba(255, 255, 255, 0.65);
|
|
13942
13942
|
color: var(--nav-primary-text-color, rgba(255, 255, 255, 0.65)); }
|
|
13943
13943
|
.next-nav.next-primary .next-nav-item.next-menu-item.next-focused, .next-nav.next-primary .next-nav-item.next-menu-item:hover {
|
|
@@ -13945,15 +13945,15 @@
|
|
|
13945
13945
|
background: var(--nav-primary-item-hover-bg-color, transparent);
|
|
13946
13946
|
color: #FFFFFF;
|
|
13947
13947
|
color: var(--nav-primary-item-hover-text-color, #FFFFFF);
|
|
13948
|
-
font-weight:
|
|
13949
|
-
font-weight: var(--nav-primary-item-hover-text-style,
|
|
13948
|
+
font-weight: 500;
|
|
13949
|
+
font-weight: var(--nav-primary-item-hover-text-style, 500); }
|
|
13950
13950
|
.next-nav.next-primary .next-nav-item.next-menu-item.next-selected {
|
|
13951
13951
|
background: #257df9;
|
|
13952
13952
|
background: var(--nav-primary-item-selected-bg-color, #257df9);
|
|
13953
13953
|
color: #FFFFFF;
|
|
13954
13954
|
color: var(--nav-primary-item-selected-text-color, #FFFFFF);
|
|
13955
|
-
font-weight:
|
|
13956
|
-
font-weight: var(--nav-primary-item-selected-text-style,
|
|
13955
|
+
font-weight: 500;
|
|
13956
|
+
font-weight: var(--nav-primary-item-selected-text-style, 500); }
|
|
13957
13957
|
.next-nav.next-primary .next-nav-item.next-menu-item.next-selected.next-nav-item {
|
|
13958
13958
|
background: #257df9;
|
|
13959
13959
|
background: var(--nav-primary-item-selected-bg-color, #257df9);
|
|
@@ -14044,17 +14044,17 @@
|
|
|
14044
14044
|
box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);
|
|
14045
14045
|
box-shadow: var(--nav-secondary-shadow, 2px 2px 4px 0px rgba(0, 0, 0, 0.12)); }
|
|
14046
14046
|
.next-nav.next-secondary.next-hoz {
|
|
14047
|
-
line-height:
|
|
14048
|
-
line-height: var(--nav-hoz-height,
|
|
14049
|
-
line-height: calc(
|
|
14050
|
-
line-height: calc(var(--nav-hoz-height,
|
|
14047
|
+
line-height: 32px;
|
|
14048
|
+
line-height: var(--nav-hoz-height, 32px);
|
|
14049
|
+
line-height: calc(32px - 0px*2);
|
|
14050
|
+
line-height: calc(var(--nav-hoz-height, 32px) - var(--nav-secondary-border-width, 0px)*2); }
|
|
14051
14051
|
.next-nav.next-secondary.next-hoz .next-menu-header,
|
|
14052
14052
|
.next-nav.next-secondary.next-hoz .next-menu-footer,
|
|
14053
14053
|
.next-nav.next-secondary.next-hoz .next-menu-item-inner {
|
|
14054
|
-
line-height:
|
|
14055
|
-
line-height: var(--nav-hoz-height,
|
|
14056
|
-
height: calc(
|
|
14057
|
-
height: calc(var(--nav-hoz-height,
|
|
14054
|
+
line-height: 32px;
|
|
14055
|
+
line-height: var(--nav-hoz-height, 32px);
|
|
14056
|
+
height: calc(32px - 0px*2);
|
|
14057
|
+
height: calc(var(--nav-hoz-height, 32px) - var(--nav-secondary-border-width, 0px)*2); }
|
|
14058
14058
|
.next-nav.next-secondary.next-hoz.next-top .next-nav-item:before {
|
|
14059
14059
|
top: 0;
|
|
14060
14060
|
top: calc(0px - 0px);
|
|
@@ -20239,8 +20239,8 @@
|
|
|
20239
20239
|
.next-tabs.next-medium .next-tabs-tab-inner {
|
|
20240
20240
|
font-size: 14px;
|
|
20241
20241
|
font-size: var(--tab-item-text-size-m, 14px);
|
|
20242
|
-
padding:
|
|
20243
|
-
padding: var(--tab-item-padding-tb-size-m,
|
|
20242
|
+
padding: 16px 16px;
|
|
20243
|
+
padding: var(--tab-item-padding-tb-size-m, 16px) var(--tab-item-padding-lr-size-m, 16px); }
|
|
20244
20244
|
.next-tabs.next-medium .next-tabs-tab-inner .next-icon {
|
|
20245
20245
|
line-height: 1; }
|
|
20246
20246
|
.next-tabs.next-medium .next-tabs-tab-inner .next-icon:before,
|
|
@@ -25072,35 +25072,35 @@ h6.next-typography-title {
|
|
|
25072
25072
|
-webkit-box-sizing: border-box;
|
|
25073
25073
|
box-sizing: border-box;
|
|
25074
25074
|
position: relative;
|
|
25075
|
-
border-top-left-radius:
|
|
25076
|
-
border-top-left-radius: var(--table-header-corner-top,
|
|
25077
|
-
border-top-right-radius:
|
|
25078
|
-
border-top-right-radius: var(--table-header-corner-top,
|
|
25079
|
-
border-bottom-left-radius:
|
|
25080
|
-
border-bottom-left-radius: var(--table-header-corner-bottom,
|
|
25081
|
-
border-bottom-right-radius:
|
|
25082
|
-
border-bottom-right-radius: var(--table-header-corner-bottom,
|
|
25083
|
-
border-top: 1px solid
|
|
25084
|
-
border-top: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25085
|
-
border-left: 1px solid
|
|
25086
|
-
border-left: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25075
|
+
border-top-left-radius: 8px;
|
|
25076
|
+
border-top-left-radius: var(--table-header-corner-top, 8px);
|
|
25077
|
+
border-top-right-radius: 8px;
|
|
25078
|
+
border-top-right-radius: var(--table-header-corner-top, 8px);
|
|
25079
|
+
border-bottom-left-radius: 0px;
|
|
25080
|
+
border-bottom-left-radius: var(--table-header-corner-bottom, 0px);
|
|
25081
|
+
border-bottom-right-radius: 0px;
|
|
25082
|
+
border-bottom-right-radius: var(--table-header-corner-bottom, 0px);
|
|
25083
|
+
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
|
25084
|
+
border-top: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25085
|
+
border-left: 1px solid rgba(0, 0, 0, 0.08);
|
|
25086
|
+
border-left: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08)); }
|
|
25087
25087
|
.next-table *,
|
|
25088
25088
|
.next-table *:before,
|
|
25089
25089
|
.next-table *:after {
|
|
25090
25090
|
-webkit-box-sizing: border-box;
|
|
25091
25091
|
box-sizing: border-box; }
|
|
25092
25092
|
.next-table .next-table-header tr:first-child th:first-child {
|
|
25093
|
-
border-top-left-radius:
|
|
25094
|
-
border-top-left-radius: var(--table-header-corner-top,
|
|
25093
|
+
border-top-left-radius: 8px;
|
|
25094
|
+
border-top-left-radius: var(--table-header-corner-top, 8px); }
|
|
25095
25095
|
.next-table .next-table-header tr:first-child th:last-child {
|
|
25096
|
-
border-top-right-radius:
|
|
25097
|
-
border-top-right-radius: var(--table-header-corner-top,
|
|
25096
|
+
border-top-right-radius: 8px;
|
|
25097
|
+
border-top-right-radius: var(--table-header-corner-top, 8px); }
|
|
25098
25098
|
.next-table .next-table-header tr:last-child th:first-child {
|
|
25099
|
-
border-bottom-left-radius:
|
|
25100
|
-
border-bottom-left-radius: var(--table-header-corner-bottom,
|
|
25099
|
+
border-bottom-left-radius: 0px;
|
|
25100
|
+
border-bottom-left-radius: var(--table-header-corner-bottom, 0px); }
|
|
25101
25101
|
.next-table .next-table-header tr:last-child th:last-child {
|
|
25102
|
-
border-bottom-right-radius:
|
|
25103
|
-
border-bottom-right-radius: var(--table-header-corner-bottom,
|
|
25102
|
+
border-bottom-right-radius: 0px;
|
|
25103
|
+
border-bottom-right-radius: var(--table-header-corner-bottom, 0px); }
|
|
25104
25104
|
.next-table.next-table-layout-fixed {
|
|
25105
25105
|
overflow: auto; }
|
|
25106
25106
|
.next-table.next-table-layout-fixed table {
|
|
@@ -25121,29 +25121,29 @@ h6.next-typography-title {
|
|
|
25121
25121
|
width: 100%;
|
|
25122
25122
|
background: #FFFFFF;
|
|
25123
25123
|
background: var(--table-row-bg, #FFFFFF);
|
|
25124
|
-
border-top-left-radius:
|
|
25125
|
-
border-top-left-radius: var(--table-header-corner-top,
|
|
25126
|
-
border-top-right-radius:
|
|
25127
|
-
border-top-right-radius: var(--table-header-corner-top,
|
|
25128
|
-
border-bottom-left-radius:
|
|
25129
|
-
border-bottom-left-radius: var(--table-header-corner-bottom,
|
|
25130
|
-
border-bottom-right-radius:
|
|
25131
|
-
border-bottom-right-radius: var(--table-header-corner-bottom,
|
|
25124
|
+
border-top-left-radius: 8px;
|
|
25125
|
+
border-top-left-radius: var(--table-header-corner-top, 8px);
|
|
25126
|
+
border-top-right-radius: 8px;
|
|
25127
|
+
border-top-right-radius: var(--table-header-corner-top, 8px);
|
|
25128
|
+
border-bottom-left-radius: 0px;
|
|
25129
|
+
border-bottom-left-radius: var(--table-header-corner-bottom, 0px);
|
|
25130
|
+
border-bottom-right-radius: 0px;
|
|
25131
|
+
border-bottom-right-radius: var(--table-header-corner-bottom, 0px); }
|
|
25132
25132
|
.next-table table tr:first-child td {
|
|
25133
25133
|
border-top-width: 0; }
|
|
25134
25134
|
.next-table th {
|
|
25135
25135
|
padding: 0;
|
|
25136
|
-
background: #
|
|
25137
|
-
background: var(--table-th-bg, #
|
|
25136
|
+
background: #f8f9fb;
|
|
25137
|
+
background: var(--table-th-bg, #f8f9fb);
|
|
25138
25138
|
color: #2e3038;
|
|
25139
25139
|
color: var(--table-th-color, #2e3038);
|
|
25140
25140
|
text-align: left;
|
|
25141
25141
|
font-weight: 500;
|
|
25142
25142
|
font-weight: var(--table-th-font-weight, 500);
|
|
25143
|
-
border-right: 1px solid
|
|
25144
|
-
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25145
|
-
border-bottom: 1px solid
|
|
25146
|
-
border-bottom: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25143
|
+
border-right: 1px solid rgba(0, 0, 0, 0.08);
|
|
25144
|
+
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25145
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
|
25146
|
+
border-bottom: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08)); }
|
|
25147
25147
|
.next-table th .next-table-cell-wrapper {
|
|
25148
25148
|
padding: 12px 16px;
|
|
25149
25149
|
padding: var(--table-header-padding-top, 12px) var(--table-header-padding-left, 16px);
|
|
@@ -25191,10 +25191,10 @@ h6.next-typography-title {
|
|
|
25191
25191
|
z-index: -1; }
|
|
25192
25192
|
.next-table td {
|
|
25193
25193
|
padding: 0;
|
|
25194
|
-
border-right: 1px solid
|
|
25195
|
-
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25196
|
-
border-bottom: 1px solid
|
|
25197
|
-
border-bottom: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25194
|
+
border-right: 1px solid rgba(0, 0, 0, 0.08);
|
|
25195
|
+
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25196
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
|
25197
|
+
border-bottom: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08)); }
|
|
25198
25198
|
.next-table td .next-table-cell-wrapper {
|
|
25199
25199
|
padding: 16px 16px;
|
|
25200
25200
|
padding: var(--table-cell-padding-top, 16px) var(--table-cell-padding-left, 16px);
|
|
@@ -25292,8 +25292,8 @@ h6.next-typography-title {
|
|
|
25292
25292
|
border-top: 0;
|
|
25293
25293
|
border-left: 0; }
|
|
25294
25294
|
.next-table-expanded-row .next-table th, .next-table-expanded-row .next-table td {
|
|
25295
|
-
border-right: 1px solid
|
|
25296
|
-
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25295
|
+
border-right: 1px solid rgba(0, 0, 0, 0.08);
|
|
25296
|
+
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08)); }
|
|
25297
25297
|
.next-table-expanded-row .next-table.only-bottom-border th, .next-table-expanded-row .next-table.only-bottom-border td {
|
|
25298
25298
|
border-right: 0; }
|
|
25299
25299
|
.next-table-expanded-row .next-table .last td {
|
|
@@ -25359,14 +25359,14 @@ h6.next-typography-title {
|
|
|
25359
25359
|
.next-table-header {
|
|
25360
25360
|
margin-bottom: -20px;
|
|
25361
25361
|
padding-bottom: 20px;
|
|
25362
|
-
border-top-left-radius:
|
|
25363
|
-
border-top-left-radius: var(--table-header-corner-top,
|
|
25364
|
-
border-top-right-radius:
|
|
25365
|
-
border-top-right-radius: var(--table-header-corner-top,
|
|
25366
|
-
border-bottom-left-radius:
|
|
25367
|
-
border-bottom-left-radius: var(--table-header-corner-bottom,
|
|
25368
|
-
border-bottom-right-radius:
|
|
25369
|
-
border-bottom-right-radius: var(--table-header-corner-bottom,
|
|
25362
|
+
border-top-left-radius: 8px;
|
|
25363
|
+
border-top-left-radius: var(--table-header-corner-top, 8px);
|
|
25364
|
+
border-top-right-radius: 8px;
|
|
25365
|
+
border-top-right-radius: var(--table-header-corner-top, 8px);
|
|
25366
|
+
border-bottom-left-radius: 0px;
|
|
25367
|
+
border-bottom-left-radius: var(--table-header-corner-bottom, 0px);
|
|
25368
|
+
border-bottom-right-radius: 0px;
|
|
25369
|
+
border-bottom-right-radius: var(--table-header-corner-bottom, 0px);
|
|
25370
25370
|
overflow: -moz-scrollbars-none;
|
|
25371
25371
|
-ms-overflow-style: none;
|
|
25372
25372
|
scrollbar-width: none; }
|
|
@@ -25379,15 +25379,15 @@ h6.next-typography-title {
|
|
|
25379
25379
|
position: relative; }
|
|
25380
25380
|
|
|
25381
25381
|
.next-table-fixed {
|
|
25382
|
-
border-right: 1px solid
|
|
25383
|
-
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25384
|
-
border-bottom: 1px solid
|
|
25385
|
-
border-bottom: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25382
|
+
border-right: 1px solid rgba(0, 0, 0, 0.08);
|
|
25383
|
+
border-right: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25384
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
|
25385
|
+
border-bottom: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08)); }
|
|
25386
25386
|
.next-table-fixed table {
|
|
25387
25387
|
table-layout: fixed; }
|
|
25388
25388
|
.next-table-fixed .next-table-header {
|
|
25389
|
-
background: #
|
|
25390
|
-
background: var(--table-th-bg, #
|
|
25389
|
+
background: #f8f9fb;
|
|
25390
|
+
background: var(--table-th-bg, #f8f9fb); }
|
|
25391
25391
|
.next-table-fixed table tr td:first-child,
|
|
25392
25392
|
.next-table-fixed table tr th:first-child {
|
|
25393
25393
|
border-left-width: 0; }
|
|
@@ -25449,10 +25449,10 @@ h6.next-typography-title {
|
|
|
25449
25449
|
margin-top: 8px;
|
|
25450
25450
|
margin-top: var(--table-group-split, 8px); }
|
|
25451
25451
|
.next-table-group .next-table-body table {
|
|
25452
|
-
border-top: 1px solid
|
|
25453
|
-
border-top: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25454
|
-
border-left: 1px solid
|
|
25455
|
-
border-left: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25452
|
+
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
|
25453
|
+
border-top: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25454
|
+
border-left: 1px solid rgba(0, 0, 0, 0.08);
|
|
25455
|
+
border-left: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25456
25456
|
margin-bottom: 8px;
|
|
25457
25457
|
margin-bottom: var(--table-group-split, 8px); }
|
|
25458
25458
|
.next-table-group .next-table-body table tr:first-child td {
|
|
@@ -25460,10 +25460,10 @@ h6.next-typography-title {
|
|
|
25460
25460
|
.next-table-group .next-table-body table:last-of-type {
|
|
25461
25461
|
margin-bottom: 0; }
|
|
25462
25462
|
.next-table-group .next-table-header table {
|
|
25463
|
-
border-top: 1px solid
|
|
25464
|
-
border-top: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25465
|
-
border-left: 1px solid
|
|
25466
|
-
border-left: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color,
|
|
25463
|
+
border-top: 1px solid rgba(0, 0, 0, 0.08);
|
|
25464
|
+
border-top: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08));
|
|
25465
|
+
border-left: 1px solid rgba(0, 0, 0, 0.08);
|
|
25466
|
+
border-left: var(--table-normal-border-width, 1px) var(--table-normal-border-style, solid) var(--table-normal-border-color, rgba(0, 0, 0, 0.08)); }
|
|
25467
25467
|
.next-table-group .next-table-group-header td {
|
|
25468
25468
|
background: #fafafa;
|
|
25469
25469
|
background: var(--table-group-th-bg, #fafafa);
|
|
@@ -25511,10 +25511,10 @@ h6.next-typography-title {
|
|
|
25511
25511
|
|
|
25512
25512
|
.next-table-header-fixer {
|
|
25513
25513
|
content: " ";
|
|
25514
|
-
border-top-right-radius:
|
|
25515
|
-
border-top-right-radius: var(--table-header-corner-top,
|
|
25516
|
-
border-bottom-right-radius:
|
|
25517
|
-
border-bottom-right-radius: var(--table-header-corner-bottom,
|
|
25514
|
+
border-top-right-radius: 8px;
|
|
25515
|
+
border-top-right-radius: var(--table-header-corner-top, 8px);
|
|
25516
|
+
border-bottom-right-radius: 0px;
|
|
25517
|
+
border-bottom-right-radius: var(--table-header-corner-bottom, 0px);
|
|
25518
25518
|
width: 15px;
|
|
25519
25519
|
background: inherit;
|
|
25520
25520
|
position: absolute;
|