@floegence/floe-webapp-core 0.36.56 → 0.36.58

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.
@@ -34,11 +34,11 @@
34
34
  --terminal-panel-border: var(--chrome-border);
35
35
 
36
36
  /* Card */
37
- --card: hsl(36 12% 96%);
37
+ --card: hsl(0 0% 100%);
38
38
  --card-foreground: hsl(215 40% 13%);
39
39
 
40
40
  /* Popover */
41
- --popover: hsl(36 12% 96%);
41
+ --popover: hsl(0 0% 100%);
42
42
  --popover-foreground: hsl(215 40% 13%);
43
43
 
44
44
  /* Status colors - Using OKLCH for perceptual consistency */
@@ -1966,8 +1966,9 @@
1966
1966
  }
1967
1967
 
1968
1968
  .workbench-dock__mode-icon {
1969
- width: 14px;
1970
- height: 14px;
1969
+ width: 42px;
1970
+ height: 42px;
1971
+ filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
1971
1972
  }
1972
1973
 
1973
1974
  .workbench-dock__item {
@@ -1984,59 +1985,59 @@
1984
1985
  transform-origin: center bottom;
1985
1986
  /* Keep each slot at a fixed footprint so neighbor translateX moves the
1986
1987
  visual tile without reflowing the row. */
1987
- width: 36px;
1988
- height: 36px;
1988
+ width: 42px;
1989
+ height: 42px;
1989
1990
  }
1990
1991
 
1991
1992
  .workbench-dock__tile {
1992
1993
  display: inline-flex;
1993
1994
  align-items: center;
1994
1995
  justify-content: center;
1995
- width: 36px;
1996
- height: 36px;
1997
- border-radius: 10px;
1998
- background: color-mix(in srgb, var(--muted, #f1f1f1) 62%, transparent);
1999
- border: 1px solid color-mix(in srgb, var(--border, #e5e5e5) 50%, transparent);
1996
+ width: 42px;
1997
+ height: 42px;
1998
+ border-radius: 12px;
1999
+ background: transparent;
2000
+ border: none;
2000
2001
  color: var(--muted-foreground, #888);
2001
2002
  transform-origin: center bottom;
2002
2003
  will-change: transform;
2003
2004
  /* Motion component drives transform; only animate visual chrome here. */
2004
2005
  transition:
2005
- background-color 160ms ease,
2006
- color 160ms ease,
2007
- border-color 160ms ease,
2008
- box-shadow 160ms ease;
2006
+ box-shadow 160ms ease,
2007
+ filter 160ms ease;
2009
2008
  }
2010
2009
 
2011
2010
  .workbench-dock__icon {
2012
- width: 18px;
2013
- height: 18px;
2011
+ width: 42px;
2012
+ height: 42px;
2013
+ filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
2014
2014
  }
2015
2015
 
2016
2016
  .workbench-dock__item.is-active .workbench-dock__tile {
2017
- background: linear-gradient(
2018
- 135deg,
2019
- color-mix(in srgb, var(--primary, #3b82f6) 90%, white),
2020
- var(--primary, #3b82f6)
2021
- );
2022
- color: var(--primary-foreground, #fff);
2023
- border-color: color-mix(in srgb, var(--primary, #3b82f6) 80%, transparent);
2024
- box-shadow:
2025
- 0 6px 14px -4px color-mix(in srgb, var(--primary, #3b82f6) 52%, transparent),
2026
- 0 1px 0 color-mix(in srgb, white 30%, transparent) inset;
2017
+ box-shadow: none;
2018
+ }
2019
+
2020
+ /* Active indicator dot – macOS style */
2021
+ .workbench-dock__item.is-active::after {
2022
+ content: '';
2023
+ position: absolute;
2024
+ bottom: -6px;
2025
+ left: 50%;
2026
+ transform: translateX(-50%);
2027
+ width: 5px;
2028
+ height: 5px;
2029
+ border-radius: 50%;
2030
+ background: var(--foreground, #000);
2031
+ opacity: 0.55;
2027
2032
  }
2028
2033
 
2029
2034
  .workbench-dock__item.is-hovered .workbench-dock__tile {
2030
- box-shadow:
2031
- 0 10px 22px -8px color-mix(in srgb, var(--foreground, #000) 22%, transparent),
2032
- 0 1px 0 color-mix(in srgb, white 50%, transparent) inset;
2035
+ filter: brightness(1.08) drop-shadow(0 8px 16px rgb(0 0 0 / 0.18));
2033
2036
  }
2034
2037
 
2035
2038
  .workbench-dock__item.is-filter-muted .workbench-dock__tile {
2036
- opacity: 0.46;
2037
- background: color-mix(in srgb, var(--muted, #f1f1f1) 42%, transparent);
2038
- color: color-mix(in srgb, var(--muted-foreground, #888) 72%, transparent);
2039
- box-shadow: none;
2039
+ opacity: 0.4;
2040
+ filter: grayscale(0.6) drop-shadow(0 1px 3px rgb(0 0 0 / 0.06));
2040
2041
  }
2041
2042
 
2042
2043
  .workbench-dock__mode-popover {
@@ -2082,7 +2083,6 @@
2082
2083
  -webkit-backdrop-filter: none;
2083
2084
  }
2084
2085
 
2085
- .workbench-surface[data-workbench-mode='background'] .workbench-dock__tile,
2086
2086
  .workbench-surface[data-workbench-mode='background'] .workbench-dock__mode-option-icon {
2087
2087
  background: color-mix(in srgb, var(--muted, #f1f1f1) 84%, var(--card, #fff));
2088
2088
  }
@@ -2129,10 +2129,17 @@
2129
2129
  width: 30px;
2130
2130
  height: 30px;
2131
2131
  border-radius: 8px;
2132
- background: color-mix(in srgb, var(--muted, #f1f1f1) 70%, transparent);
2132
+ background: transparent;
2133
2133
  color: inherit;
2134
2134
  }
2135
2135
 
2136
+ .workbench-dock__mode-option-icon .workbench-dock__icon,
2137
+ .workbench-dock__mode-option-icon .workbench-dock__mode-icon {
2138
+ width: 30px;
2139
+ height: 30px;
2140
+ filter: none;
2141
+ }
2142
+
2136
2143
  .workbench-dock__mode-option-copy {
2137
2144
  display: grid;
2138
2145
  min-width: 0;
@@ -2285,8 +2292,8 @@
2285
2292
 
2286
2293
  .workbench-dock__item,
2287
2294
  .workbench-dock__tile {
2288
- width: 32px;
2289
- height: 32px;
2295
+ width: 36px;
2296
+ height: 36px;
2290
2297
  }
2291
2298
 
2292
2299
  .workbench-dock__mode-popover {
@@ -2301,8 +2308,8 @@
2301
2308
  }
2302
2309
 
2303
2310
  .workbench-dock__icon {
2304
- width: 16px;
2305
- height: 16px;
2311
+ width: 36px;
2312
+ height: 36px;
2306
2313
  }
2307
2314
 
2308
2315
  .workbench-hud {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floegence/floe-webapp-core",
3
- "version": "0.36.56",
3
+ "version": "0.36.58",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",