@streamoid/ui 0.6.40 → 0.6.41
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/index.css +55 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4423,6 +4423,61 @@ button.ScSidebarShell_actionRow:hover {
|
|
|
4423
4423
|
text-overflow: ellipsis;
|
|
4424
4424
|
white-space: nowrap;
|
|
4425
4425
|
}
|
|
4426
|
+
.ScArtifaxSidebar_logoUnitExpanded {
|
|
4427
|
+
padding: 0;
|
|
4428
|
+
}
|
|
4429
|
+
.ScArtifaxSidebar_logoUnitCollapsed {
|
|
4430
|
+
width: 100%;
|
|
4431
|
+
height: auto;
|
|
4432
|
+
padding: 0 0 var(--spacing-md, 0.5rem);
|
|
4433
|
+
}
|
|
4434
|
+
.ScArtifaxSidebar_container.ScArtifaxSidebar_collapsed {
|
|
4435
|
+
padding-left: var(--spacing-xs, 0.25rem);
|
|
4436
|
+
padding-right: var(--spacing-xs, 0.25rem);
|
|
4437
|
+
}
|
|
4438
|
+
.ScArtifaxSidebar_container.ScArtifaxSidebar_expanded > [class*=ScHDivider] {
|
|
4439
|
+
width: calc(100% + var(--spacing-md) + var(--spacing-md));
|
|
4440
|
+
margin-inline: calc(0px - var(--spacing-md));
|
|
4441
|
+
}
|
|
4442
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=workspaceTriggerExpanded] {
|
|
4443
|
+
min-height: 40px;
|
|
4444
|
+
padding: 8px;
|
|
4445
|
+
}
|
|
4446
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=searchTriggerExpanded] {
|
|
4447
|
+
height: 40px;
|
|
4448
|
+
}
|
|
4449
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=workspaceName],
|
|
4450
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=searchLabel] {
|
|
4451
|
+
font-size: 14px;
|
|
4452
|
+
line-height: 20px;
|
|
4453
|
+
font-weight: 500;
|
|
4454
|
+
}
|
|
4455
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=appWordmark] {
|
|
4456
|
+
height: 20px;
|
|
4457
|
+
}
|
|
4458
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=appWordmark] > span,
|
|
4459
|
+
.ScArtifaxSidebar_scArtifaxSidebar [class*=appWordmark] svg {
|
|
4460
|
+
width: auto !important;
|
|
4461
|
+
height: 20px !important;
|
|
4462
|
+
}
|
|
4463
|
+
.ScArtifaxSidebar_body {
|
|
4464
|
+
-webkit-mask-image:
|
|
4465
|
+
linear-gradient(
|
|
4466
|
+
to bottom,
|
|
4467
|
+
#000 calc(100% - 20px),
|
|
4468
|
+
transparent);
|
|
4469
|
+
mask-image:
|
|
4470
|
+
linear-gradient(
|
|
4471
|
+
to bottom,
|
|
4472
|
+
#000 calc(100% - 20px),
|
|
4473
|
+
transparent);
|
|
4474
|
+
}
|
|
4475
|
+
.ScArtifaxSidebar_body > [class*=logoUnit] {
|
|
4476
|
+
position: sticky;
|
|
4477
|
+
top: 0;
|
|
4478
|
+
z-index: 1;
|
|
4479
|
+
background: var(--alias-surface-base, #101010);
|
|
4480
|
+
}
|
|
4426
4481
|
|
|
4427
4482
|
/* src/SC-Sidebar Switch menu/ScSidebarSwitchMenu.module.css */
|
|
4428
4483
|
.ScSidebarSwitchMenu_scSidebarSwitchMenu,
|