@streamscloud/kit 0.10.7-1781472368663 → 0.10.7-1781475571897
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.
|
@@ -31,4 +31,6 @@ A segmented control styled for toolbar use with optional localStorage persistenc
|
|
|
31
31
|
|
|
32
32
|
<style>.toolbar-segmented-control {
|
|
33
33
|
--sc-kit--segmented-control--background--active: var(--sc-kit--color--bg--menu-active);
|
|
34
|
+
--sc-kit--segmented-control--font-size: var(--sc-kit--font-size--xs);
|
|
35
|
+
--sc-kit--segmented-control--padding-inline: 0.875rem;
|
|
34
36
|
}</style>
|
|
@@ -59,9 +59,9 @@ Each segment carries an optional `disabled` flag (non-interactive) and an option
|
|
|
59
59
|
-->
|
|
60
60
|
|
|
61
61
|
<style>.segmented-control {
|
|
62
|
-
--_sc--height: var(--sc-kit--segmented-control--height,
|
|
63
|
-
--_sc--font-size: var(--sc-kit--segmented-control--font-size, var(--
|
|
64
|
-
--_sc--padding-inline: var(--sc-kit--segmented-control--padding-inline,
|
|
62
|
+
--_sc--height: var(--sc-kit--segmented-control--height, var(--_sc--size-height));
|
|
63
|
+
--_sc--font-size: var(--sc-kit--segmented-control--font-size, var(--_sc--size-font-size));
|
|
64
|
+
--_sc--padding-inline: var(--sc-kit--segmented-control--padding-inline, var(--_sc--size-padding-inline));
|
|
65
65
|
--_sc--radius: var(--sc-kit--segmented-control--border-radius, var(--sc-kit--radius--md));
|
|
66
66
|
--_sc--color: var(--sc-kit--segmented-control--color, var(--sc-kit--color--text--muted));
|
|
67
67
|
--_sc--color-hover: var(--sc-kit--segmented-control--color--hover, var(--sc-kit--color--text--primary));
|
|
@@ -83,14 +83,14 @@ Each segment carries an optional `disabled` flag (non-interactive) and an option
|
|
|
83
83
|
width: 100%;
|
|
84
84
|
}
|
|
85
85
|
.segmented-control--sm {
|
|
86
|
-
--
|
|
87
|
-
--
|
|
88
|
-
--
|
|
86
|
+
--_sc--size-height: 1.75rem;
|
|
87
|
+
--_sc--size-font-size: var(--sc-kit--font-size--sm);
|
|
88
|
+
--_sc--size-padding-inline: 0.625rem;
|
|
89
89
|
}
|
|
90
90
|
.segmented-control--md {
|
|
91
|
-
--
|
|
92
|
-
--
|
|
93
|
-
--
|
|
91
|
+
--_sc--size-height: 2rem;
|
|
92
|
+
--_sc--size-font-size: var(--sc-kit--font-size--md);
|
|
93
|
+
--_sc--size-padding-inline: 0.75rem;
|
|
94
94
|
}
|
|
95
95
|
.segmented-control--tray {
|
|
96
96
|
--_sc--background-active-default: var(--sc-kit--color--bg--panel);
|
|
@@ -30,7 +30,7 @@ const navigateToUser = (event, by) => {
|
|
|
30
30
|
{#if dateTime}
|
|
31
31
|
{#if by}
|
|
32
32
|
<span class="table-by-cell__by">
|
|
33
|
-
<Tooltip text={by.name} placement="bottom">
|
|
33
|
+
<Tooltip text={by.name} placement="bottom" fillHeight>
|
|
34
34
|
{@const href = getHref(by)}
|
|
35
35
|
{#if href}
|
|
36
36
|
<a href={href} onclick={(e) => navigateToUser(e, by)} class="table-by-cell__by-image">
|
|
@@ -65,7 +65,6 @@ const navigateToUser = (event, by) => {
|
|
|
65
65
|
min-height: 3.125em;
|
|
66
66
|
max-height: 3.125em;
|
|
67
67
|
display: inline-flex;
|
|
68
|
-
align-items: center;
|
|
69
68
|
flex-wrap: nowrap;
|
|
70
69
|
}
|
|
71
70
|
.table-by-cell__date {
|