@layerfi/components 0.1.91 → 0.1.92-alpha
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/dist/cjs/index.cjs +2236 -1976
- package/dist/esm/index.mjs +2439 -2182
- package/dist/index.css +549 -427
- package/dist/index.d.ts +334 -285
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
--text-heading-view: var(--text-heading-secondary);
|
|
89
89
|
--text-heading-sm: 16px;
|
|
90
90
|
--text-heading-xs: 14px;
|
|
91
|
+
--text-heading-2xs: 12px;
|
|
91
92
|
--font-weight-normal: 460;
|
|
92
93
|
--font-weight-bold: 540;
|
|
93
94
|
--spacing-4xs: 2px;
|
|
@@ -146,6 +147,7 @@
|
|
|
146
147
|
--badge-color-warning: var(--color-info-warning);
|
|
147
148
|
--badge-fg-color-warning: var(--color-info-warning-fg);
|
|
148
149
|
--badge-bg-color-warning: var(--color-info-warning-bg);
|
|
150
|
+
--badge-bg-color-warning-dark: #CA9204;
|
|
149
151
|
--badge-color-error: var(--color-info-error);
|
|
150
152
|
--badge-fg-color-error: var(--color-info-error-fg);
|
|
151
153
|
--badge-bg-color-error: var(--color-info-error-bg);
|
|
@@ -1015,6 +1017,7 @@
|
|
|
1015
1017
|
display: flex;
|
|
1016
1018
|
align-items: center;
|
|
1017
1019
|
gap: var(--spacing-sm);
|
|
1020
|
+
position: relative;
|
|
1018
1021
|
}
|
|
1019
1022
|
.Layer__header__actions {
|
|
1020
1023
|
display: flex;
|
|
@@ -4135,91 +4138,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4135
4138
|
.Layer__table-wrapper--bottom-spacing .Layer__table {
|
|
4136
4139
|
border-bottom: 1px solid var(--border-color);
|
|
4137
4140
|
}
|
|
4138
|
-
.Layer__tabs {
|
|
4139
|
-
display: flex;
|
|
4140
|
-
width: max-content;
|
|
4141
|
-
align-items: center;
|
|
4142
|
-
box-sizing: border-box;
|
|
4143
|
-
padding: 2px;
|
|
4144
|
-
height: 38px;
|
|
4145
|
-
margin: 1px;
|
|
4146
|
-
cursor: pointer;
|
|
4147
|
-
position: relative;
|
|
4148
|
-
isolation: isolate;
|
|
4149
|
-
gap: var(--spacing-xs);
|
|
4150
|
-
-webkit-tap-highlight-color: transparent;
|
|
4151
|
-
-webkit-touch-callout: none;
|
|
4152
|
-
-webkit-user-select: none;
|
|
4153
|
-
-khtml-user-select: none;
|
|
4154
|
-
-moz-user-select: none;
|
|
4155
|
-
-ms-user-select: none;
|
|
4156
|
-
user-select: none;
|
|
4157
|
-
}
|
|
4158
|
-
.Layer__tabs .Layer__tabs-option-content {
|
|
4159
|
-
display: flex;
|
|
4160
|
-
align-items: center;
|
|
4161
|
-
gap: var(--spacing-xs);
|
|
4162
|
-
}
|
|
4163
|
-
.Layer__tabs-option__icon {
|
|
4164
|
-
line-height: 11px;
|
|
4165
|
-
}
|
|
4166
|
-
.Layer__tabs-option {
|
|
4167
|
-
position: relative;
|
|
4168
|
-
cursor: pointer;
|
|
4169
|
-
z-index: 2;
|
|
4170
|
-
}
|
|
4171
|
-
.Layer__tabs-option input {
|
|
4172
|
-
position: absolute;
|
|
4173
|
-
opacity: 0;
|
|
4174
|
-
width: 1px;
|
|
4175
|
-
}
|
|
4176
|
-
.Layer__tabs-option input + span {
|
|
4177
|
-
box-sizing: border-box;
|
|
4178
|
-
padding: var(--spacing-xs) var(--spacing-3xs);
|
|
4179
|
-
height: 36px;
|
|
4180
|
-
color: var(--text-color-secondary);
|
|
4181
|
-
font-family: var(--font-family);
|
|
4182
|
-
font-size: var(--btn-font-size);
|
|
4183
|
-
cursor: pointer;
|
|
4184
|
-
transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
|
|
4185
|
-
justify-content: center;
|
|
4186
|
-
border-bottom: 2px solid transparent;
|
|
4187
|
-
}
|
|
4188
|
-
.Layer__tabs-option input + span:hover {
|
|
4189
|
-
color: var(--text-color-primary);
|
|
4190
|
-
}
|
|
4191
|
-
.Layer__tabs-option input:checked + span {
|
|
4192
|
-
color: var(--text-color-primary);
|
|
4193
|
-
}
|
|
4194
|
-
.Layer__tabs-option input:disabled + span {
|
|
4195
|
-
cursor: not-allowed;
|
|
4196
|
-
color: var(--text-color-secondary);
|
|
4197
|
-
}
|
|
4198
|
-
.Layer__tabs-option:hover input + span {
|
|
4199
|
-
border-bottom: 2px solid var(--color-base-200);
|
|
4200
|
-
}
|
|
4201
|
-
.Layer__tabs-option:hover input:disabled + span,
|
|
4202
|
-
.Layer__tabs-option:hover input:checked + span {
|
|
4203
|
-
background-color: transparent;
|
|
4204
|
-
}
|
|
4205
|
-
.Layer__tabs.Layer__tabs--small .Layer__tabs-option input + span {
|
|
4206
|
-
height: 32px;
|
|
4207
|
-
border-radius: 6px;
|
|
4208
|
-
}
|
|
4209
|
-
.Layer__tabs__thumb {
|
|
4210
|
-
position: absolute;
|
|
4211
|
-
width: 100px;
|
|
4212
|
-
left: 0;
|
|
4213
|
-
bottom: 1px;
|
|
4214
|
-
z-index: 3;
|
|
4215
|
-
box-sizing: border-box;
|
|
4216
|
-
height: 2px;
|
|
4217
|
-
border-radius: 2px;
|
|
4218
|
-
background: var(--color-base-400);
|
|
4219
|
-
}
|
|
4220
|
-
.Layer__tabs--initialized .Layer__tabs__thumb {
|
|
4221
|
-
transition: left 150ms ease, width 150ms ease;
|
|
4222
|
-
}
|
|
4223
4141
|
.Layer__heading {
|
|
4224
4142
|
color: var(--text-color-primary);
|
|
4225
4143
|
font-size: var(--text-heading);
|
|
@@ -4292,15 +4210,30 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4292
4210
|
.Layer__text[data-status=error] {
|
|
4293
4211
|
color: var(--color-danger);
|
|
4294
4212
|
}
|
|
4213
|
+
.Layer__text[data-status=error][data-inverted] {
|
|
4214
|
+
color: var(--color-info-error);
|
|
4215
|
+
}
|
|
4295
4216
|
.Layer__text[data-status=warning] {
|
|
4296
|
-
color: var(--color-info-warning);
|
|
4217
|
+
color: var(--color-info-warning-fg);
|
|
4218
|
+
}
|
|
4219
|
+
.Layer__text[data-status=warning][data-inverted] {
|
|
4220
|
+
color: var(--color-info-warning-bg);
|
|
4297
4221
|
}
|
|
4298
4222
|
.Layer__text[data-status=success] {
|
|
4299
4223
|
color: var(--color-success);
|
|
4300
4224
|
}
|
|
4225
|
+
.Layer__text[data-status=success][data-inverted] {
|
|
4226
|
+
color: var(--color-info-success-bg);
|
|
4227
|
+
}
|
|
4301
4228
|
.Layer__text[data-status=disabled] {
|
|
4302
4229
|
color: var(--color-base-500);
|
|
4303
4230
|
}
|
|
4231
|
+
.Layer__text[data-status=info] {
|
|
4232
|
+
color: var(--color-info-fg);
|
|
4233
|
+
}
|
|
4234
|
+
.Layer__text[data-status=info][data-inverted] {
|
|
4235
|
+
color: var(--color-info-bg);
|
|
4236
|
+
}
|
|
4304
4237
|
.Layer__text[data-ellipsis] {
|
|
4305
4238
|
white-space: nowrap;
|
|
4306
4239
|
overflow: hidden;
|
|
@@ -4578,6 +4511,20 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4578
4511
|
cursor: progress;
|
|
4579
4512
|
background-color: var(--button-bg-disabled);
|
|
4580
4513
|
}
|
|
4514
|
+
.Layer__ButtonTransparentContent {
|
|
4515
|
+
opacity: 0;
|
|
4516
|
+
grid-row: 1/-1;
|
|
4517
|
+
grid-column: 1/-1;
|
|
4518
|
+
}
|
|
4519
|
+
.Layer__ButtonSpinnerContainer {
|
|
4520
|
+
grid-column: 1/-1;
|
|
4521
|
+
grid-row: 1/-1;
|
|
4522
|
+
place-self: center;
|
|
4523
|
+
height: 16px;
|
|
4524
|
+
}
|
|
4525
|
+
.Layer__ButtonSpinnerContainer[data-size=lg] {
|
|
4526
|
+
height: 20px;
|
|
4527
|
+
}
|
|
4581
4528
|
.Layer__Checkbox {
|
|
4582
4529
|
display: inline-flex;
|
|
4583
4530
|
align-items: center;
|
|
@@ -4836,7 +4783,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4836
4783
|
}
|
|
4837
4784
|
.Layer__UI__Heading {
|
|
4838
4785
|
all: unset;
|
|
4839
|
-
color: var(--color-base-
|
|
4786
|
+
color: var(--color-base-700);
|
|
4840
4787
|
font-weight: var(--font-weight-bold);
|
|
4841
4788
|
font-variation-settings: "wght" var(--font-weight-bold);
|
|
4842
4789
|
font-size: var(--text-heading-secondary);
|
|
@@ -4873,6 +4820,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4873
4820
|
.Layer__UI__Heading[data-pbe="5xl"] {
|
|
4874
4821
|
padding-block-end: var(--spacing-5xl);
|
|
4875
4822
|
}
|
|
4823
|
+
.Layer__UI__Heading[data-size="2xs"] {
|
|
4824
|
+
font-size: var(--text-heading-2xs);
|
|
4825
|
+
}
|
|
4876
4826
|
.Layer__UI__Heading[data-size=xs] {
|
|
4877
4827
|
font-size: var(--text-heading-xs);
|
|
4878
4828
|
}
|
|
@@ -4896,12 +4846,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4896
4846
|
max-inline-size: unset;
|
|
4897
4847
|
}
|
|
4898
4848
|
.Layer__MoneyText {
|
|
4899
|
-
color: var(--color-base-
|
|
4849
|
+
color: var(--color-base-900);
|
|
4900
4850
|
overflow-x: hidden;
|
|
4901
4851
|
text-overflow: ellipsis;
|
|
4902
4852
|
}
|
|
4903
4853
|
.Layer__MoneyText[data-bold] {
|
|
4904
4854
|
font-weight: var(--font-weight-bold);
|
|
4855
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
4905
4856
|
}
|
|
4906
4857
|
.Layer__MoneyText[data-size=xs] {
|
|
4907
4858
|
font-size: var(--text-xs);
|
|
@@ -5197,104 +5148,383 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5197
5148
|
align-self: center;
|
|
5198
5149
|
justify-self: center;
|
|
5199
5150
|
}
|
|
5200
|
-
.Layer__tasks-
|
|
5201
|
-
display:
|
|
5202
|
-
|
|
5203
|
-
|
|
5151
|
+
.Layer__tasks-component {
|
|
5152
|
+
display: flex;
|
|
5153
|
+
flex-direction: column;
|
|
5154
|
+
height: 100%;
|
|
5155
|
+
overflow-y: auto;
|
|
5156
|
+
border-radius: 8px;
|
|
5157
|
+
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
5158
|
+
background-color: var(--color-base-0);
|
|
5159
|
+
}
|
|
5160
|
+
.Layer__tasks-component.Layer__tasks-component--collapsable {
|
|
5161
|
+
overflow-y: hidden;
|
|
5162
|
+
}
|
|
5163
|
+
.Layer__tasks-component .Layer__tasks-pending {
|
|
5164
|
+
display: flex;
|
|
5165
|
+
flex-direction: column;
|
|
5166
|
+
align-items: center;
|
|
5167
|
+
justify-content: flex-start;
|
|
5168
|
+
box-sizing: border-box;
|
|
5169
|
+
border-top: 1px solid var(--color-base-300);
|
|
5204
5170
|
padding: var(--spacing-md);
|
|
5205
|
-
|
|
5171
|
+
gap: var(--spacing-xs);
|
|
5206
5172
|
}
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5173
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-header {
|
|
5174
|
+
display: flex;
|
|
5175
|
+
justify-content: space-between;
|
|
5176
|
+
align-items: center;
|
|
5177
|
+
width: 100%;
|
|
5178
|
+
box-sizing: border-box;
|
|
5179
|
+
min-height: 36px;
|
|
5211
5180
|
}
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5181
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-main {
|
|
5182
|
+
display: flex;
|
|
5183
|
+
flex-direction: column;
|
|
5184
|
+
align-items: flex-start;
|
|
5185
|
+
justify-content: center;
|
|
5186
|
+
gap: var(--spacing-2xs);
|
|
5187
|
+
box-sizing: border-box;
|
|
5188
|
+
width: 100%;
|
|
5216
5189
|
}
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5190
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar {
|
|
5191
|
+
display: flex;
|
|
5192
|
+
align-items: center;
|
|
5193
|
+
gap: var(--spacing-xs);
|
|
5194
|
+
font-weight: 540;
|
|
5195
|
+
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
5196
|
+
background-color: var(--color-base-50);
|
|
5197
|
+
border-radius: 8px;
|
|
5221
5198
|
}
|
|
5222
|
-
.Layer__tasks-
|
|
5223
|
-
|
|
5224
|
-
|
|
5199
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar .mini-chart {
|
|
5200
|
+
transform: rotate(90deg);
|
|
5201
|
+
}
|
|
5202
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar .Layer__tasks-pending-bar__status--done {
|
|
5203
|
+
color: var(--color-success);
|
|
5204
|
+
}
|
|
5205
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar .Layer__tasks-pending-bar__status--pending {
|
|
5206
|
+
color: var(--color-warning);
|
|
5207
|
+
}
|
|
5208
|
+
.Layer__tasks-component .Layer__tasks-header {
|
|
5209
|
+
min-height: 36px;
|
|
5225
5210
|
display: flex;
|
|
5226
5211
|
align-items: center;
|
|
5227
5212
|
justify-content: space-between;
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
background: var(--color-base-0);
|
|
5232
|
-
box-shadow: 0px 1px 2px 0px var(--base-transparent-6), 0px 0px 0px 1px var(--color-base-300);
|
|
5213
|
+
gap: var(--spacing-md);
|
|
5214
|
+
padding: var(--spacing-md);
|
|
5215
|
+
container-type: inline-size;
|
|
5233
5216
|
}
|
|
5234
|
-
.Layer__tasks-
|
|
5235
|
-
|
|
5236
|
-
|
|
5217
|
+
.Layer__tasks-component .Layer__tasks__content {
|
|
5218
|
+
max-height: 1000px;
|
|
5219
|
+
opacity: 1;
|
|
5220
|
+
transition: max-height 0.18s ease-out, opacity 0.2s ease-out;
|
|
5237
5221
|
}
|
|
5238
|
-
.Layer__tasks-
|
|
5239
|
-
|
|
5222
|
+
.Layer__tasks-component .Layer__tasks__content.Layer__tasks__content--collapsed {
|
|
5223
|
+
opacity: 0.3;
|
|
5224
|
+
max-height: 0;
|
|
5240
5225
|
}
|
|
5241
|
-
.Layer__tasks-
|
|
5242
|
-
color: var(--color-base-
|
|
5243
|
-
|
|
5226
|
+
.Layer__tasks-component .Layer__tasks-list {
|
|
5227
|
+
background-color: var(--color-base-0);
|
|
5228
|
+
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
5244
5229
|
}
|
|
5245
|
-
.Layer__tasks-
|
|
5246
|
-
|
|
5230
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper {
|
|
5231
|
+
padding: var(--spacing-2xs);
|
|
5247
5232
|
}
|
|
5248
|
-
.Layer__tasks-
|
|
5249
|
-
|
|
5233
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper:not(:last-child) {
|
|
5234
|
+
border-bottom: 1px solid var(--color-base-300);
|
|
5250
5235
|
}
|
|
5251
|
-
.Layer__tasks-
|
|
5252
|
-
width: 16px;
|
|
5253
|
-
height: 16px;
|
|
5236
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item {
|
|
5254
5237
|
display: flex;
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5238
|
+
flex-direction: column;
|
|
5239
|
+
transition: all 0.1s ease-in-out;
|
|
5240
|
+
}
|
|
5241
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item:hover,
|
|
5242
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item.Layer__tasks-list-item__expanded {
|
|
5243
|
+
background: var(--color-base-50);
|
|
5244
|
+
border-radius: 6px;
|
|
5260
5245
|
}
|
|
5261
|
-
.Layer__tasks-
|
|
5246
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head {
|
|
5262
5247
|
display: flex;
|
|
5263
5248
|
align-items: center;
|
|
5264
5249
|
justify-content: space-between;
|
|
5265
|
-
gap: var(--spacing-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
background-color: var(--color-info-warning-bg);
|
|
5269
|
-
color: var(--color-info-warning-fg);
|
|
5270
|
-
border-radius: var(--border-radius-3xs);
|
|
5250
|
+
gap: var(--spacing-xs);
|
|
5251
|
+
padding: var(--spacing-md);
|
|
5252
|
+
cursor: pointer;
|
|
5271
5253
|
}
|
|
5272
|
-
.
|
|
5254
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info {
|
|
5273
5255
|
display: flex;
|
|
5274
5256
|
align-items: center;
|
|
5257
|
+
gap: var(--spacing-xs);
|
|
5275
5258
|
}
|
|
5276
|
-
.
|
|
5259
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info .Layer__tasks-list-item__head-info__status {
|
|
5277
5260
|
display: flex;
|
|
5278
|
-
align-items:
|
|
5279
|
-
|
|
5280
|
-
|
|
5261
|
+
align-items: center;
|
|
5262
|
+
justify-content: center;
|
|
5263
|
+
padding: var(--spacing-3xs);
|
|
5264
|
+
border-radius: 100%;
|
|
5281
5265
|
}
|
|
5282
|
-
.
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
display: flex;
|
|
5286
|
-
flex-direction: column;
|
|
5287
|
-
gap: var(--spacing-sm);
|
|
5266
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info.Layer__tasks-list-item--completed {
|
|
5267
|
+
color: var(--color-base-500);
|
|
5268
|
+
text-decoration: line-through;
|
|
5288
5269
|
}
|
|
5289
|
-
.
|
|
5290
|
-
|
|
5291
|
-
transform: rotate(65deg);
|
|
5270
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info.Layer__tasks-list-item--completed .Layer__tasks-list-item__head-info__status {
|
|
5271
|
+
color: var(--color-info-success);
|
|
5292
5272
|
}
|
|
5293
|
-
.
|
|
5294
|
-
|
|
5273
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info.Layer__tasks-list-item--pending .Layer__tasks-list-item__head-info__status {
|
|
5274
|
+
color: var(--color-info-warning-fg);
|
|
5275
|
+
background: var(--color-info-warning-bg);
|
|
5295
5276
|
}
|
|
5296
|
-
.
|
|
5297
|
-
|
|
5277
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body {
|
|
5278
|
+
padding-right: var(--spacing-md);
|
|
5279
|
+
padding-left: var(--spacing-3xl);
|
|
5280
|
+
margin-left: var(--spacing-3xs);
|
|
5281
|
+
padding-bottom: 0;
|
|
5282
|
+
height: 0;
|
|
5283
|
+
opacity: 0;
|
|
5284
|
+
overflow: hidden;
|
|
5285
|
+
transition: all 0.2s ease-out;
|
|
5286
|
+
}
|
|
5287
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info {
|
|
5288
|
+
display: flex;
|
|
5289
|
+
flex-direction: column;
|
|
5290
|
+
}
|
|
5291
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__text {
|
|
5292
|
+
margin-bottom: var(--spacing-md);
|
|
5293
|
+
}
|
|
5294
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list-item__actions {
|
|
5295
|
+
margin-top: var(--spacing-xs);
|
|
5296
|
+
}
|
|
5297
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list__link-list {
|
|
5298
|
+
padding-top: var(--spacing-md);
|
|
5299
|
+
}
|
|
5300
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list__link-list-header {
|
|
5301
|
+
font-size: var(--text-sm);
|
|
5302
|
+
}
|
|
5303
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list-item__link {
|
|
5304
|
+
color: var(--color-primary);
|
|
5305
|
+
font-size: var(--text-sm);
|
|
5306
|
+
}
|
|
5307
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list__links-list {
|
|
5308
|
+
margin: 0;
|
|
5309
|
+
padding: var(--spacing-3xs) 0 var(--spacing-sm) var(--spacing-md);
|
|
5310
|
+
}
|
|
5311
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item--completed {
|
|
5312
|
+
color: var(--color-base-500);
|
|
5313
|
+
}
|
|
5314
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item__body--expanded {
|
|
5315
|
+
padding-bottom: var(--spacing-sm);
|
|
5316
|
+
height: auto;
|
|
5317
|
+
opacity: 1;
|
|
5318
|
+
}
|
|
5319
|
+
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-empty-state {
|
|
5320
|
+
display: flex;
|
|
5321
|
+
flex-direction: column;
|
|
5322
|
+
align-items: center;
|
|
5323
|
+
justify-content: center;
|
|
5324
|
+
gap: var(--spacing-md);
|
|
5325
|
+
text-align: center;
|
|
5326
|
+
padding: var(--spacing-md);
|
|
5327
|
+
color: var(--color-base-500);
|
|
5328
|
+
}
|
|
5329
|
+
.Layer__tasks-component .Layer__tasks-list-item__actions {
|
|
5330
|
+
display: flex;
|
|
5331
|
+
gap: var(--spacing-xs);
|
|
5332
|
+
align-items: center;
|
|
5333
|
+
justify-content: flex-end;
|
|
5334
|
+
}
|
|
5335
|
+
.Layer__tasks-component .Layer__tasks-icon {
|
|
5336
|
+
display: flex;
|
|
5337
|
+
align-items: center;
|
|
5338
|
+
justify-content: center;
|
|
5339
|
+
width: 32px;
|
|
5340
|
+
height: 32px;
|
|
5341
|
+
border-radius: 4px;
|
|
5342
|
+
background-color: var(--color-base-50);
|
|
5343
|
+
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
5344
|
+
}
|
|
5345
|
+
.Layer__tasks__expand-icon {
|
|
5346
|
+
transition: transform 150ms ease-out;
|
|
5347
|
+
color: var(--color-base-600);
|
|
5348
|
+
margin-left: -15px;
|
|
5349
|
+
}
|
|
5350
|
+
@container (width <= 400px) {
|
|
5351
|
+
.Layer__tasks-component .Layer__tasks-pending {
|
|
5352
|
+
flex-direction: column;
|
|
5353
|
+
align-items: stretch;
|
|
5354
|
+
gap: var(--spacing-xs);
|
|
5355
|
+
}
|
|
5356
|
+
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar {
|
|
5357
|
+
justify-content: space-between;
|
|
5358
|
+
}
|
|
5359
|
+
.Layer__tasks-component .Layer__badge {
|
|
5360
|
+
white-space: nowrap;
|
|
5361
|
+
}
|
|
5362
|
+
.Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head {
|
|
5363
|
+
padding: var(--spacing-xs);
|
|
5364
|
+
}
|
|
5365
|
+
.Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body {
|
|
5366
|
+
padding-right: var(--spacing-xs);
|
|
5367
|
+
padding-left: var(--spacing-xs);
|
|
5368
|
+
}
|
|
5369
|
+
}
|
|
5370
|
+
.Layer__tasks-header__notification {
|
|
5371
|
+
display: flex;
|
|
5372
|
+
flex-wrap: wrap;
|
|
5373
|
+
align-items: center;
|
|
5374
|
+
justify-content: space-between;
|
|
5375
|
+
gap: var(--spacing-xs);
|
|
5376
|
+
padding: var(--spacing-xs) var(--spacing-xs) var(--spacing-2xs) var(--spacing-md);
|
|
5377
|
+
background:
|
|
5378
|
+
linear-gradient(
|
|
5379
|
+
0deg,
|
|
5380
|
+
var(--base-transparent-10) 0%,
|
|
5381
|
+
var(--base-transparent-10) 100%),
|
|
5382
|
+
var(--color-info-warning);
|
|
5383
|
+
}
|
|
5384
|
+
.Layer__tasks-header__notification__text {
|
|
5385
|
+
display: flex;
|
|
5386
|
+
align-items: center;
|
|
5387
|
+
justify-content: center;
|
|
5388
|
+
gap: var(--spacing-xs);
|
|
5389
|
+
white-space: nowrap;
|
|
5390
|
+
}
|
|
5391
|
+
.Layer__tasks-header__notification__button {
|
|
5392
|
+
background: var(--color-info-warning-fg);
|
|
5393
|
+
color: var(--color-info-warning-bg);
|
|
5394
|
+
border: none;
|
|
5395
|
+
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
5396
|
+
border-radius: 4px;
|
|
5397
|
+
cursor: pointer;
|
|
5398
|
+
font-size: var(--text-sm);
|
|
5399
|
+
font-weight: var(--font-weight-bold);
|
|
5400
|
+
font-variation-settings: "wght" var(--font-weight-bold);
|
|
5401
|
+
display: flex;
|
|
5402
|
+
align-items: center;
|
|
5403
|
+
gap: var(--spacing-xs);
|
|
5404
|
+
transition: all 0.12s ease-in-out;
|
|
5405
|
+
white-space: nowrap;
|
|
5406
|
+
}
|
|
5407
|
+
.Layer__tasks-header__notification__button:hover {
|
|
5408
|
+
background: var(--color-base-1000);
|
|
5409
|
+
}
|
|
5410
|
+
.Layer__tasks__badge {
|
|
5411
|
+
display: flex;
|
|
5412
|
+
align-items: center;
|
|
5413
|
+
font-size: var(--text-xs);
|
|
5414
|
+
background: var(--color-info-warning);
|
|
5415
|
+
color: var(--color-info-warning-bg);
|
|
5416
|
+
padding: var(--spacing-3xs) var(--border-radius-2xs);
|
|
5417
|
+
border-radius: var(--border-radius-3xs);
|
|
5418
|
+
gap: var(--spacing-3xs);
|
|
5419
|
+
white-space: nowrap;
|
|
5420
|
+
}
|
|
5421
|
+
.Layer__tasks__badge[data-icononly] {
|
|
5422
|
+
border-radius: 50%;
|
|
5423
|
+
gap: 0;
|
|
5424
|
+
padding: 0;
|
|
5425
|
+
width: 16px;
|
|
5426
|
+
height: 16px;
|
|
5427
|
+
}
|
|
5428
|
+
.Layer__tasks__badge .Layer__text {
|
|
5429
|
+
line-height: 10px;
|
|
5430
|
+
}
|
|
5431
|
+
.Layer__tasks__badge .Layer__tasks__badge__icon-wrapper {
|
|
5432
|
+
border-radius: 50%;
|
|
5433
|
+
width: 16px;
|
|
5434
|
+
height: 16px;
|
|
5435
|
+
display: flex;
|
|
5436
|
+
align-items: center;
|
|
5437
|
+
justify-content: center;
|
|
5438
|
+
}
|
|
5439
|
+
.Layer__tasks__badge[data-status=info] {
|
|
5440
|
+
color: var(--color-info-fg);
|
|
5441
|
+
background: var(--color-info-bg);
|
|
5442
|
+
}
|
|
5443
|
+
.Layer__tasks__badge[data-status=warning] {
|
|
5444
|
+
color: var(--color-info-warning-bg);
|
|
5445
|
+
background: var(--color-info-warning);
|
|
5446
|
+
}
|
|
5447
|
+
.Layer__tasks__badge[data-status=success] {
|
|
5448
|
+
color: var(--color-info-success-fg);
|
|
5449
|
+
background: var(--color-info-success-bg);
|
|
5450
|
+
}
|
|
5451
|
+
.Layer__tasks__badge[data-status=error] {
|
|
5452
|
+
color: var(--color-info-error);
|
|
5453
|
+
background: var(--color-info-error-bg);
|
|
5454
|
+
}
|
|
5455
|
+
.Layer__tasks-month-selector {
|
|
5456
|
+
display: grid;
|
|
5457
|
+
grid-template-columns: repeat(3, 1fr);
|
|
5458
|
+
gap: var(--spacing-xs);
|
|
5459
|
+
padding: var(--spacing-md);
|
|
5460
|
+
container-type: inline-size;
|
|
5461
|
+
}
|
|
5462
|
+
@container (min-width: 680px) {
|
|
5463
|
+
.Layer__tasks-month-selector {
|
|
5464
|
+
grid-template-columns: repeat(4, 1fr);
|
|
5465
|
+
}
|
|
5466
|
+
}
|
|
5467
|
+
@container (max-width: 400px) {
|
|
5468
|
+
.Layer__tasks-month-selector {
|
|
5469
|
+
grid-template-columns: repeat(2, 1fr);
|
|
5470
|
+
}
|
|
5471
|
+
}
|
|
5472
|
+
@container (max-width: 340px) {
|
|
5473
|
+
.Layer__tasks-month-selector {
|
|
5474
|
+
grid-template-columns: repeat(1, 1fr);
|
|
5475
|
+
}
|
|
5476
|
+
}
|
|
5477
|
+
.Layer__tasks-month-selector__month {
|
|
5478
|
+
min-height: 32px;
|
|
5479
|
+
flex: 1;
|
|
5480
|
+
display: flex;
|
|
5481
|
+
align-items: center;
|
|
5482
|
+
justify-content: space-between;
|
|
5483
|
+
cursor: pointer;
|
|
5484
|
+
border-radius: var(--border-radius-xs);
|
|
5485
|
+
padding: 0 var(--spacing-sm);
|
|
5486
|
+
background: var(--color-base-0);
|
|
5487
|
+
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
5488
|
+
}
|
|
5489
|
+
.Layer__tasks-month-selector__month[data-active] {
|
|
5490
|
+
box-shadow: 0 0 0 1px var(--color-base-800), 0 0 0 3px var(--color-base-300);
|
|
5491
|
+
}
|
|
5492
|
+
.Layer__tasks-month-selector__month[data-disabled] {
|
|
5493
|
+
color: var(--color-base-500);
|
|
5494
|
+
cursor: not-allowed;
|
|
5495
|
+
}
|
|
5496
|
+
.Layer__tasks-month-selector__month:hover {
|
|
5497
|
+
box-shadow: 0 0 0 1px var(--color-base-500), 0 0 0 3px var(--color-base-300);
|
|
5498
|
+
}
|
|
5499
|
+
.Layer__tasks-month-selector__month .Layer__tasks-month-selector__month__str {
|
|
5500
|
+
min-width: 24px;
|
|
5501
|
+
}
|
|
5502
|
+
.Layer__progress-steps {
|
|
5503
|
+
display: flex;
|
|
5504
|
+
align-items: center;
|
|
5505
|
+
}
|
|
5506
|
+
.Layer__progress-steps .Layer__progress-steps--step-wrapper {
|
|
5507
|
+
display: flex;
|
|
5508
|
+
align-items: flex-start;
|
|
5509
|
+
position: relative;
|
|
5510
|
+
min-width: 50px;
|
|
5511
|
+
}
|
|
5512
|
+
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step {
|
|
5513
|
+
position: relative;
|
|
5514
|
+
z-index: 1;
|
|
5515
|
+
display: flex;
|
|
5516
|
+
flex-direction: column;
|
|
5517
|
+
gap: var(--spacing-sm);
|
|
5518
|
+
}
|
|
5519
|
+
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step[data-active=true] .Layer__progress-steps--circle::after {
|
|
5520
|
+
border-color: var(--color-base-800);
|
|
5521
|
+
transform: rotate(65deg);
|
|
5522
|
+
}
|
|
5523
|
+
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step[data-active=true]:not([data-complete=true]) .Layer__progress-steps--label p::after {
|
|
5524
|
+
opacity: 1;
|
|
5525
|
+
}
|
|
5526
|
+
.Layer__progress-steps .Layer__progress-steps--step-wrapper .Layer__progress-steps--step[data-complete=true] .Layer__progress-steps--circle {
|
|
5527
|
+
border-color: var(--color-info-success-fg);
|
|
5298
5528
|
background-color: var(--color-info-success-bg);
|
|
5299
5529
|
border-style: solid;
|
|
5300
5530
|
}
|
|
@@ -5584,8 +5814,153 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5584
5814
|
.Layer__separator[data-mbe="5xl"] {
|
|
5585
5815
|
margin-block-end: var(--spacing-5xl);
|
|
5586
5816
|
}
|
|
5587
|
-
.Layer__separator[data-mbs="5xl"] {
|
|
5588
|
-
margin-block-start: var(--spacing-5xl);
|
|
5817
|
+
.Layer__separator[data-mbs="5xl"] {
|
|
5818
|
+
margin-block-start: var(--spacing-5xl);
|
|
5819
|
+
}
|
|
5820
|
+
.Layer__profit-and-loss-header__bookkeeping-status {
|
|
5821
|
+
position: absolute;
|
|
5822
|
+
bottom: -20px;
|
|
5823
|
+
left: 0;
|
|
5824
|
+
}
|
|
5825
|
+
.Layer__bookkeping-status {
|
|
5826
|
+
white-space: nowrap;
|
|
5827
|
+
display: flex;
|
|
5828
|
+
align-items: center;
|
|
5829
|
+
gap: var(--spacing-3xs);
|
|
5830
|
+
}
|
|
5831
|
+
.Layer__bookkeping-status .Layer__bookkeping-status__icon-wrapper {
|
|
5832
|
+
border-radius: 50%;
|
|
5833
|
+
width: 16px;
|
|
5834
|
+
height: 16px;
|
|
5835
|
+
display: flex;
|
|
5836
|
+
align-items: center;
|
|
5837
|
+
justify-content: center;
|
|
5838
|
+
color: var(--color-info-fg);
|
|
5839
|
+
background: var(--color-info-bg);
|
|
5840
|
+
margin-top: -1px;
|
|
5841
|
+
}
|
|
5842
|
+
.Layer__bookkeping-status[data-status=warning] .Layer__bookkeping-status__icon-wrapper {
|
|
5843
|
+
color: var(--color-info-warning-fg);
|
|
5844
|
+
background: var(--color-info-warning-bg);
|
|
5845
|
+
}
|
|
5846
|
+
.Layer__bookkeping-status[data-status=success] .Layer__bookkeping-status__icon-wrapper {
|
|
5847
|
+
color: var(--color-info-success-fg);
|
|
5848
|
+
background: var(--color-info-success-bg);
|
|
5849
|
+
}
|
|
5850
|
+
.Layer__bookkeping-status[data-status=error] .Layer__bookkeping-status__icon-wrapper {
|
|
5851
|
+
color: var(--color-info-error-fg);
|
|
5852
|
+
background: var(--color-info-error-bg);
|
|
5853
|
+
}
|
|
5854
|
+
.Layer__bookkeping-status[data-emphasize=true][data-status=warning] {
|
|
5855
|
+
padding: var(--spacing-xs);
|
|
5856
|
+
padding-bottom: var(--spacing-2xs);
|
|
5857
|
+
border-radius: var(--border-radius-3xs);
|
|
5858
|
+
color: var(--color-info-warning-bg);
|
|
5859
|
+
background: var(--badge-bg-color-warning-dark);
|
|
5860
|
+
}
|
|
5861
|
+
.Layer__bookkeping-status[data-emphasize=true][data-status=warning] .Layer__bookkeping-status__icon-wrapper {
|
|
5862
|
+
color: var(--color-info-warning-bg);
|
|
5863
|
+
background: var(--badge-bg-color-warning-dark);
|
|
5864
|
+
}
|
|
5865
|
+
.Layer__tabs {
|
|
5866
|
+
display: flex;
|
|
5867
|
+
width: 100%;
|
|
5868
|
+
align-items: center;
|
|
5869
|
+
box-sizing: border-box;
|
|
5870
|
+
padding: 0 var(--spacing-sm);
|
|
5871
|
+
height: 38px;
|
|
5872
|
+
cursor: pointer;
|
|
5873
|
+
position: relative;
|
|
5874
|
+
isolation: isolate;
|
|
5875
|
+
gap: var(--spacing-xs);
|
|
5876
|
+
-webkit-tap-highlight-color: transparent;
|
|
5877
|
+
-webkit-touch-callout: none;
|
|
5878
|
+
user-select: none;
|
|
5879
|
+
border-bottom: 2px solid var(--color-base-100);
|
|
5880
|
+
}
|
|
5881
|
+
.Layer__tabs .Layer__tabs-option-content {
|
|
5882
|
+
display: flex;
|
|
5883
|
+
align-items: center;
|
|
5884
|
+
gap: var(--spacing-xs);
|
|
5885
|
+
}
|
|
5886
|
+
.Layer__tabs-option__icon {
|
|
5887
|
+
line-height: 11px;
|
|
5888
|
+
}
|
|
5889
|
+
.Layer__tabs-option {
|
|
5890
|
+
position: relative;
|
|
5891
|
+
cursor: pointer;
|
|
5892
|
+
z-index: 2;
|
|
5893
|
+
}
|
|
5894
|
+
.Layer__tabs-option input {
|
|
5895
|
+
position: absolute;
|
|
5896
|
+
opacity: 0;
|
|
5897
|
+
width: 1px;
|
|
5898
|
+
}
|
|
5899
|
+
.Layer__tabs-option input + span {
|
|
5900
|
+
box-sizing: border-box;
|
|
5901
|
+
padding: var(--spacing-xs);
|
|
5902
|
+
min-width: 40px;
|
|
5903
|
+
height: 36px;
|
|
5904
|
+
color: var(--text-color-secondary);
|
|
5905
|
+
font-family: var(--font-family);
|
|
5906
|
+
font-size: var(--btn-font-size);
|
|
5907
|
+
font-weight: var(--font-weight-bold);
|
|
5908
|
+
font-variation-settings: "wght" 460;
|
|
5909
|
+
cursor: pointer;
|
|
5910
|
+
transition: color var(--transition-speed) ease-in-out, background-color 150ms ease-in-out;
|
|
5911
|
+
justify-content: center;
|
|
5912
|
+
border-bottom: 2px solid transparent;
|
|
5913
|
+
position: relative;
|
|
5914
|
+
}
|
|
5915
|
+
.Layer__tabs-option input + span:hover {
|
|
5916
|
+
color: var(--text-color-primary);
|
|
5917
|
+
}
|
|
5918
|
+
.Layer__tabs-option input + span::after {
|
|
5919
|
+
content: "";
|
|
5920
|
+
position: absolute;
|
|
5921
|
+
bottom: -4px;
|
|
5922
|
+
left: 0;
|
|
5923
|
+
width: 100%;
|
|
5924
|
+
height: 2px;
|
|
5925
|
+
opacity: 0;
|
|
5926
|
+
background-color: var(--color-base-300);
|
|
5927
|
+
transition: opacity 120ms ease-out;
|
|
5928
|
+
}
|
|
5929
|
+
.Layer__tabs-option input:checked + span {
|
|
5930
|
+
color: var(--text-color-primary);
|
|
5931
|
+
}
|
|
5932
|
+
.Layer__tabs-option input:disabled + span {
|
|
5933
|
+
cursor: not-allowed;
|
|
5934
|
+
color: var(--text-color-secondary);
|
|
5935
|
+
}
|
|
5936
|
+
.Layer__tabs-option:hover input + span::after {
|
|
5937
|
+
opacity: 1;
|
|
5938
|
+
}
|
|
5939
|
+
.Layer__tabs-option:hover input:disabled + span,
|
|
5940
|
+
.Layer__tabs-option:hover input:checked + span {
|
|
5941
|
+
background-color: transparent;
|
|
5942
|
+
}
|
|
5943
|
+
.Layer__tabs-option:hover input:disabled + span::after,
|
|
5944
|
+
.Layer__tabs-option:hover input:checked + span::after {
|
|
5945
|
+
display: none;
|
|
5946
|
+
}
|
|
5947
|
+
.Layer__tabs.Layer__tabs--small .Layer__tabs-option input + span {
|
|
5948
|
+
height: 32px;
|
|
5949
|
+
border-radius: 6px;
|
|
5950
|
+
}
|
|
5951
|
+
.Layer__tabs__thumb {
|
|
5952
|
+
position: absolute;
|
|
5953
|
+
width: 100px;
|
|
5954
|
+
left: 0;
|
|
5955
|
+
bottom: -2px;
|
|
5956
|
+
z-index: 3;
|
|
5957
|
+
box-sizing: border-box;
|
|
5958
|
+
height: 2px;
|
|
5959
|
+
border-radius: 2px;
|
|
5960
|
+
background: var(--color-base-900);
|
|
5961
|
+
}
|
|
5962
|
+
.Layer__tabs--initialized .Layer__tabs__thumb {
|
|
5963
|
+
transition: left 150ms ease, width 150ms ease;
|
|
5589
5964
|
}
|
|
5590
5965
|
.Layer__ledger-account__index {
|
|
5591
5966
|
background-color: var(--color-base-0);
|
|
@@ -8424,260 +8799,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
8424
8799
|
padding-left: var(--spacing-sm);
|
|
8425
8800
|
margin-left: 0;
|
|
8426
8801
|
}
|
|
8427
|
-
.Layer__tasks-component {
|
|
8428
|
-
display: flex;
|
|
8429
|
-
flex-direction: column;
|
|
8430
|
-
height: 100%;
|
|
8431
|
-
overflow-y: auto;
|
|
8432
|
-
border-radius: 8px;
|
|
8433
|
-
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
8434
|
-
background-color: var(--color-base-0);
|
|
8435
|
-
}
|
|
8436
|
-
.Layer__tasks-component.Layer__tasks-component--collapsable {
|
|
8437
|
-
overflow-y: hidden;
|
|
8438
|
-
}
|
|
8439
|
-
.Layer__tasks-component .Layer__tasks-pending {
|
|
8440
|
-
display: flex;
|
|
8441
|
-
align-items: center;
|
|
8442
|
-
justify-content: space-between;
|
|
8443
|
-
padding: var(--spacing-md);
|
|
8444
|
-
box-sizing: border-box;
|
|
8445
|
-
min-height: 72px;
|
|
8446
|
-
border-top: 1px solid var(--color-base-300);
|
|
8447
|
-
}
|
|
8448
|
-
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar {
|
|
8449
|
-
display: flex;
|
|
8450
|
-
align-items: center;
|
|
8451
|
-
gap: var(--spacing-xs);
|
|
8452
|
-
font-weight: 540;
|
|
8453
|
-
padding: var(--spacing-xs);
|
|
8454
|
-
background-color: var(--color-base-50);
|
|
8455
|
-
border-radius: 8px;
|
|
8456
|
-
}
|
|
8457
|
-
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar .mini-chart {
|
|
8458
|
-
transform: rotate(90deg);
|
|
8459
|
-
}
|
|
8460
|
-
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar .Layer__tasks-pending-bar__status--done {
|
|
8461
|
-
color: var(--color-success);
|
|
8462
|
-
}
|
|
8463
|
-
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar .Layer__tasks-pending-bar__status--pending {
|
|
8464
|
-
color: var(--color-warning);
|
|
8465
|
-
}
|
|
8466
|
-
.Layer__tasks-component .Layer__tasks-header {
|
|
8467
|
-
min-height: 36px;
|
|
8468
|
-
display: flex;
|
|
8469
|
-
align-items: center;
|
|
8470
|
-
justify-content: space-between;
|
|
8471
|
-
gap: var(--spacing-md);
|
|
8472
|
-
padding: var(--spacing-md);
|
|
8473
|
-
border-bottom: 1px solid var(--color-base-300);
|
|
8474
|
-
container-type: inline-size;
|
|
8475
|
-
}
|
|
8476
|
-
.Layer__tasks-component .Layer__tasks-header .Layer__expand {
|
|
8477
|
-
min-width: 36px;
|
|
8478
|
-
min-height: 36px;
|
|
8479
|
-
}
|
|
8480
|
-
.Layer__tasks-component .Layer__tasks-header--collapsable .Layer__tasks-header__left-col__title {
|
|
8481
|
-
width: 100%;
|
|
8482
|
-
}
|
|
8483
|
-
.Layer__tasks-component .Layer__tasks-header--collapsable .Layer__tasks-header__left-col__controls {
|
|
8484
|
-
width: 100%;
|
|
8485
|
-
}
|
|
8486
|
-
.Layer__tasks-component .Layer__tasks-header--collapsable .Layer__tasks-header__left-col .Layer__tasks-header__left-col__title {
|
|
8487
|
-
justify-content: space-between;
|
|
8488
|
-
}
|
|
8489
|
-
.Layer__tasks-component .Layer__tasks-header__left-col {
|
|
8490
|
-
display: flex;
|
|
8491
|
-
align-items: center;
|
|
8492
|
-
justify-content: space-between;
|
|
8493
|
-
gap: var(--spacing-md);
|
|
8494
|
-
flex-wrap: wrap;
|
|
8495
|
-
flex: 1;
|
|
8496
|
-
}
|
|
8497
|
-
.Layer__tasks-component .Layer__tasks-header__left-col .Layer__tasks-header__left-col__title {
|
|
8498
|
-
display: flex;
|
|
8499
|
-
align-items: center;
|
|
8500
|
-
justify-content: flex-start;
|
|
8501
|
-
gap: var(--spacing-md);
|
|
8502
|
-
flex-wrap: wrap;
|
|
8503
|
-
min-height: 27px;
|
|
8504
|
-
}
|
|
8505
|
-
.Layer__tasks-component .Layer__tasks-header__left-col .Layer__tasks-header__left-col__title > .Layer__text {
|
|
8506
|
-
white-space: nowrap;
|
|
8507
|
-
}
|
|
8508
|
-
.Layer__tasks-component .Layer__tasks-header__left-col .Layer__datepicker__wrapper--arrows .react-datepicker__input-container {
|
|
8509
|
-
max-width: 80px;
|
|
8510
|
-
}
|
|
8511
|
-
.Layer__tasks-component .Layer__tasks-header__left-col__controls {
|
|
8512
|
-
display: flex;
|
|
8513
|
-
justify-content: space-between;
|
|
8514
|
-
align-items: center;
|
|
8515
|
-
gap: var(--spacing-md);
|
|
8516
|
-
}
|
|
8517
|
-
.Layer__tasks-component .Layer__tasks-header__right-col {
|
|
8518
|
-
display: flex;
|
|
8519
|
-
align-items: center;
|
|
8520
|
-
justify-content: flex-end;
|
|
8521
|
-
gap: var(--spacing-md);
|
|
8522
|
-
}
|
|
8523
|
-
.Layer__tasks-component .Layer__tasks__content {
|
|
8524
|
-
max-height: 1000px;
|
|
8525
|
-
opacity: 1;
|
|
8526
|
-
transition: max-height 0.18s ease-out, opacity 0.2s ease-out;
|
|
8527
|
-
}
|
|
8528
|
-
.Layer__tasks-component .Layer__tasks__content.Layer__tasks__content--collapsed {
|
|
8529
|
-
opacity: 0.3;
|
|
8530
|
-
max-height: 0;
|
|
8531
|
-
}
|
|
8532
|
-
.Layer__tasks-component .Layer__tasks-list {
|
|
8533
|
-
background-color: var(--color-base-0);
|
|
8534
|
-
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
8535
|
-
}
|
|
8536
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper {
|
|
8537
|
-
padding: var(--spacing-2xs);
|
|
8538
|
-
}
|
|
8539
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper:not(:last-child) {
|
|
8540
|
-
border-bottom: 1px solid var(--color-base-300);
|
|
8541
|
-
}
|
|
8542
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item {
|
|
8543
|
-
display: flex;
|
|
8544
|
-
flex-direction: column;
|
|
8545
|
-
transition: all 0.1s ease-in-out;
|
|
8546
|
-
}
|
|
8547
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item.Layer__tasks-list-item__expanded {
|
|
8548
|
-
background: var(--color-base-50);
|
|
8549
|
-
border-radius: 6px;
|
|
8550
|
-
}
|
|
8551
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head {
|
|
8552
|
-
display: flex;
|
|
8553
|
-
align-items: center;
|
|
8554
|
-
justify-content: space-between;
|
|
8555
|
-
gap: var(--spacing-xs);
|
|
8556
|
-
padding: var(--spacing-md);
|
|
8557
|
-
}
|
|
8558
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info {
|
|
8559
|
-
display: flex;
|
|
8560
|
-
align-items: center;
|
|
8561
|
-
gap: var(--spacing-xs);
|
|
8562
|
-
}
|
|
8563
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info .Layer__tasks-list-item__head-info__status {
|
|
8564
|
-
display: flex;
|
|
8565
|
-
align-items: center;
|
|
8566
|
-
justify-content: center;
|
|
8567
|
-
padding: var(--spacing-3xs);
|
|
8568
|
-
border-radius: 100%;
|
|
8569
|
-
}
|
|
8570
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info.Layer__tasks-list-item--completed {
|
|
8571
|
-
color: var(--color-base-500);
|
|
8572
|
-
text-decoration: line-through;
|
|
8573
|
-
}
|
|
8574
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info.Layer__tasks-list-item--completed .Layer__tasks-list-item__head-info__status {
|
|
8575
|
-
color: var(--color-info-success);
|
|
8576
|
-
}
|
|
8577
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head .Layer__tasks-list-item__head-info.Layer__tasks-list-item--pending .Layer__tasks-list-item__head-info__status {
|
|
8578
|
-
color: var(--color-info-warning-fg);
|
|
8579
|
-
background: var(--color-info-warning-bg);
|
|
8580
|
-
}
|
|
8581
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body {
|
|
8582
|
-
padding-right: var(--spacing-md);
|
|
8583
|
-
padding-left: var(--spacing-3xl);
|
|
8584
|
-
margin-left: var(--spacing-3xs);
|
|
8585
|
-
padding-bottom: 0;
|
|
8586
|
-
height: 0;
|
|
8587
|
-
opacity: 0;
|
|
8588
|
-
overflow: hidden;
|
|
8589
|
-
transition: all 0.2s ease-out;
|
|
8590
|
-
}
|
|
8591
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info {
|
|
8592
|
-
display: flex;
|
|
8593
|
-
flex-direction: column;
|
|
8594
|
-
}
|
|
8595
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__text {
|
|
8596
|
-
margin-bottom: var(--spacing-md);
|
|
8597
|
-
}
|
|
8598
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list-item__actions {
|
|
8599
|
-
margin-top: var(--spacing-xs);
|
|
8600
|
-
}
|
|
8601
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list__link-list {
|
|
8602
|
-
padding-top: var(--spacing-md);
|
|
8603
|
-
}
|
|
8604
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list__link-list-header {
|
|
8605
|
-
font-size: var(--text-sm);
|
|
8606
|
-
}
|
|
8607
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list-item__link {
|
|
8608
|
-
color: var(--color-primary);
|
|
8609
|
-
font-size: var(--text-sm);
|
|
8610
|
-
}
|
|
8611
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body .Layer__tasks-list-item__body-info .Layer__tasks-list__links-list {
|
|
8612
|
-
margin: 0;
|
|
8613
|
-
padding: var(--spacing-3xs) 0 var(--spacing-sm) var(--spacing-md);
|
|
8614
|
-
}
|
|
8615
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item--completed {
|
|
8616
|
-
color: var(--color-base-500);
|
|
8617
|
-
}
|
|
8618
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body.Layer__tasks-list-item__body--expanded {
|
|
8619
|
-
padding-bottom: var(--spacing-sm);
|
|
8620
|
-
height: auto;
|
|
8621
|
-
opacity: 1;
|
|
8622
|
-
}
|
|
8623
|
-
.Layer__tasks-component .Layer__tasks-list .Layer__tasks-empty-state {
|
|
8624
|
-
display: flex;
|
|
8625
|
-
flex-direction: column;
|
|
8626
|
-
align-items: center;
|
|
8627
|
-
justify-content: center;
|
|
8628
|
-
gap: var(--spacing-md);
|
|
8629
|
-
text-align: center;
|
|
8630
|
-
padding: var(--spacing-md);
|
|
8631
|
-
color: var(--color-base-500);
|
|
8632
|
-
}
|
|
8633
|
-
.Layer__tasks-component .Layer__tasks-list-item__actions {
|
|
8634
|
-
display: flex;
|
|
8635
|
-
gap: var(--spacing-xs);
|
|
8636
|
-
align-items: center;
|
|
8637
|
-
justify-content: flex-end;
|
|
8638
|
-
}
|
|
8639
|
-
.Layer__tasks-component .Layer__tasks-icon {
|
|
8640
|
-
display: flex;
|
|
8641
|
-
align-items: center;
|
|
8642
|
-
justify-content: center;
|
|
8643
|
-
width: 32px;
|
|
8644
|
-
height: 32px;
|
|
8645
|
-
border-radius: 4px;
|
|
8646
|
-
background-color: var(--color-base-50);
|
|
8647
|
-
box-shadow: 0 0 0 1px var(--color-base-300);
|
|
8648
|
-
}
|
|
8649
|
-
.Layer__tasks__expand-icon {
|
|
8650
|
-
transition: transform 150ms ease-out;
|
|
8651
|
-
color: var(--color-base-600);
|
|
8652
|
-
margin-left: -15px;
|
|
8653
|
-
}
|
|
8654
|
-
@container (width <= 400px) {
|
|
8655
|
-
.Layer__tasks-component {
|
|
8656
|
-
padding: var(--spacing-xs) var(--spacing-sm);
|
|
8657
|
-
}
|
|
8658
|
-
.Layer__tasks-component .Layer__tasks-pending {
|
|
8659
|
-
flex-direction: column;
|
|
8660
|
-
align-items: stretch;
|
|
8661
|
-
gap: var(--spacing-xs);
|
|
8662
|
-
padding: var(--spacing-md) 0;
|
|
8663
|
-
}
|
|
8664
|
-
.Layer__tasks-component .Layer__tasks-pending .Layer__tasks-pending-bar {
|
|
8665
|
-
justify-content: space-between;
|
|
8666
|
-
}
|
|
8667
|
-
.Layer__tasks-component .Layer__badge {
|
|
8668
|
-
white-space: nowrap;
|
|
8669
|
-
}
|
|
8670
|
-
.Layer__tasks-component .Layer__tasks-header {
|
|
8671
|
-
padding: var(--spacing-md) 0;
|
|
8672
|
-
}
|
|
8673
|
-
.Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__head {
|
|
8674
|
-
padding: var(--spacing-xs);
|
|
8675
|
-
}
|
|
8676
|
-
.Layer__tasks-list .Layer__tasks-list-item-wrapper .Layer__tasks-list-item .Layer__tasks-list-item__body {
|
|
8677
|
-
padding-right: var(--spacing-xs);
|
|
8678
|
-
padding-left: var(--spacing-xs);
|
|
8679
|
-
}
|
|
8680
|
-
}
|
|
8681
8802
|
.Layer__pagination-container {
|
|
8682
8803
|
display: flex;
|
|
8683
8804
|
justify-content: flex-end;
|
|
@@ -9014,8 +9135,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9014
9135
|
display: grid;
|
|
9015
9136
|
min-block-size: 3rem;
|
|
9016
9137
|
grid-template-columns: auto minmax(0, 1fr);
|
|
9017
|
-
|
|
9018
|
-
row-gap: var(--spacing-3xs);
|
|
9138
|
+
gap: var(--spacing-3xs) var(--spacing-xs);
|
|
9019
9139
|
grid-template-areas: "chart heading" "chart amount";
|
|
9020
9140
|
}
|
|
9021
9141
|
.Layer__ProfitAndLossSummariesSummary[data-size=lg] {
|
|
@@ -9036,6 +9156,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9036
9156
|
border-radius: var(--border-radius-xs);
|
|
9037
9157
|
background: var(--color-base-50);
|
|
9038
9158
|
}
|
|
9159
|
+
.Layer__ProfitAndLossSummariesSummaryChartAreaEmptyFrame {
|
|
9160
|
+
grid-area: chart;
|
|
9161
|
+
}
|
|
9039
9162
|
.Layer__ProfitAndLossSummaries {
|
|
9040
9163
|
display: grid;
|
|
9041
9164
|
container-type: inline-size;
|
|
@@ -9097,7 +9220,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9097
9220
|
}
|
|
9098
9221
|
.Layer__profit-and-loss-row:not(.Layer__profit-and-loss-row__value--depth-0),
|
|
9099
9222
|
.Layer__profit-and-loss-row:not(.Layer__profit-and-loss-row__label--depth-0) {
|
|
9100
|
-
box-shadow:
|
|
9223
|
+
box-shadow: 0 -1px 0 0 var(--color-base-300) inset;
|
|
9101
9224
|
}
|
|
9102
9225
|
.Layer__profit-and-loss-row__children {
|
|
9103
9226
|
display: grid;
|
|
@@ -9206,10 +9329,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9206
9329
|
margin: 0;
|
|
9207
9330
|
}
|
|
9208
9331
|
.Layer__profit-and-loss-row__label--depth-1 {
|
|
9209
|
-
padding
|
|
9210
|
-
padding-left: calc(var(--spacing-5xl) + var(--spacing-md));
|
|
9211
|
-
padding-top: var(--spacing-sm);
|
|
9212
|
-
padding-bottom: var(--spacing-sm);
|
|
9332
|
+
padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) calc(var(--spacing-5xl) + var(--spacing-md));
|
|
9213
9333
|
}
|
|
9214
9334
|
.Layer__profit-and-loss-row__label--depth-1 .Layer__text {
|
|
9215
9335
|
color: var(--color-base-700);
|
|
@@ -9250,9 +9370,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9250
9370
|
align-items: stretch;
|
|
9251
9371
|
border-radius: var(--border-radius-sm);
|
|
9252
9372
|
box-shadow:
|
|
9253
|
-
|
|
9254
|
-
|
|
9255
|
-
|
|
9373
|
+
0 0 0 1px rgba(16, 24, 40, 0.04),
|
|
9374
|
+
0 2px 4px 0 rgba(16, 24, 40, 0.06),
|
|
9375
|
+
0 4px 12px 0 rgba(16, 24, 40, 0.08);
|
|
9256
9376
|
margin-left: var(--spacing-xl);
|
|
9257
9377
|
margin-right: var(--spacing-xl);
|
|
9258
9378
|
margin-bottom: var(--spacing-xl);
|
|
@@ -9261,8 +9381,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9261
9381
|
display: flex;
|
|
9262
9382
|
flex-direction: column;
|
|
9263
9383
|
padding: var(--spacing-md);
|
|
9264
|
-
|
|
9265
|
-
row-gap: var(--spacing-md);
|
|
9384
|
+
gap: var(--spacing-md) var(--spacing-md);
|
|
9266
9385
|
}
|
|
9267
9386
|
.Layer__profit-and-loss__chart_with_summaries__chart-col {
|
|
9268
9387
|
display: flex;
|
|
@@ -9426,7 +9545,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9426
9545
|
bottom: 0;
|
|
9427
9546
|
transform: translate(-50%, -60px);
|
|
9428
9547
|
border-radius: var(--border-radius-sm);
|
|
9429
|
-
box-shadow:
|
|
9548
|
+
box-shadow: 0 0 0 1px var(--base-transparent-4);
|
|
9430
9549
|
gap: var(--spacing-md);
|
|
9431
9550
|
}
|
|
9432
9551
|
.Layer__profit-and-loss-chart__state-card .Layer__icon-box {
|
|
@@ -9970,6 +10089,9 @@ header.Layer__profit-and-loss-detailed-charts__header--tablet {
|
|
|
9970
10089
|
border-left: none;
|
|
9971
10090
|
background: none;
|
|
9972
10091
|
}
|
|
10092
|
+
.Layer__bookkeeping-overview--view .Layer__panel.Layer__panel--open .Layer__panel__sidebar {
|
|
10093
|
+
max-width: 560px;
|
|
10094
|
+
}
|
|
9973
10095
|
@media screen and (width >= 1100px) {
|
|
9974
10096
|
.Layer__bookkeeping-overview--view .Layer__panel__content {
|
|
9975
10097
|
max-width: 1406px;
|