@floegence/floe-webapp-core 0.36.57 → 0.36.59

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.
@@ -239,6 +239,16 @@
239
239
  0 18px 44px -22px color-mix(in srgb, var(--primary, #3b82f6) 42%, transparent),
240
240
  0 0 0 1px color-mix(in srgb, white 36%, transparent) inset;
241
241
  will-change: transform, width, height;
242
+ opacity: 0.72;
243
+ transition:
244
+ opacity 120ms ease,
245
+ border-color 120ms ease,
246
+ background 120ms ease,
247
+ box-shadow 120ms ease;
248
+ }
249
+
250
+ .workbench-placement-preview.is-drop-armed {
251
+ opacity: 1;
242
252
  }
243
253
 
244
254
  .workbench-placement-preview.is-sticky-note {
@@ -1966,8 +1976,9 @@
1966
1976
  }
1967
1977
 
1968
1978
  .workbench-dock__mode-icon {
1969
- width: 14px;
1970
- height: 14px;
1979
+ width: 42px;
1980
+ height: 42px;
1981
+ filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
1971
1982
  }
1972
1983
 
1973
1984
  .workbench-dock__item {
@@ -1984,59 +1995,59 @@
1984
1995
  transform-origin: center bottom;
1985
1996
  /* Keep each slot at a fixed footprint so neighbor translateX moves the
1986
1997
  visual tile without reflowing the row. */
1987
- width: 36px;
1988
- height: 36px;
1998
+ width: 42px;
1999
+ height: 42px;
1989
2000
  }
1990
2001
 
1991
2002
  .workbench-dock__tile {
1992
2003
  display: inline-flex;
1993
2004
  align-items: center;
1994
2005
  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);
2006
+ width: 42px;
2007
+ height: 42px;
2008
+ border-radius: 12px;
2009
+ background: transparent;
2010
+ border: none;
2000
2011
  color: var(--muted-foreground, #888);
2001
2012
  transform-origin: center bottom;
2002
2013
  will-change: transform;
2003
2014
  /* Motion component drives transform; only animate visual chrome here. */
2004
2015
  transition:
2005
- background-color 160ms ease,
2006
- color 160ms ease,
2007
- border-color 160ms ease,
2008
- box-shadow 160ms ease;
2016
+ box-shadow 160ms ease,
2017
+ filter 160ms ease;
2009
2018
  }
2010
2019
 
2011
2020
  .workbench-dock__icon {
2012
- width: 18px;
2013
- height: 18px;
2021
+ width: 42px;
2022
+ height: 42px;
2023
+ filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
2014
2024
  }
2015
2025
 
2016
2026
  .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;
2027
+ box-shadow: none;
2028
+ }
2029
+
2030
+ /* Active indicator dot – macOS style */
2031
+ .workbench-dock__item.is-active::after {
2032
+ content: '';
2033
+ position: absolute;
2034
+ bottom: -6px;
2035
+ left: 50%;
2036
+ transform: translateX(-50%);
2037
+ width: 5px;
2038
+ height: 5px;
2039
+ border-radius: 50%;
2040
+ background: var(--foreground, #000);
2041
+ opacity: 0.55;
2027
2042
  }
2028
2043
 
2029
2044
  .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;
2045
+ filter: brightness(1.08) drop-shadow(0 8px 16px rgb(0 0 0 / 0.18));
2033
2046
  }
2034
2047
 
2035
2048
  .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;
2049
+ opacity: 0.4;
2050
+ filter: grayscale(0.6) drop-shadow(0 1px 3px rgb(0 0 0 / 0.06));
2040
2051
  }
2041
2052
 
2042
2053
  .workbench-dock__mode-popover {
@@ -2082,7 +2093,6 @@
2082
2093
  -webkit-backdrop-filter: none;
2083
2094
  }
2084
2095
 
2085
- .workbench-surface[data-workbench-mode='background'] .workbench-dock__tile,
2086
2096
  .workbench-surface[data-workbench-mode='background'] .workbench-dock__mode-option-icon {
2087
2097
  background: color-mix(in srgb, var(--muted, #f1f1f1) 84%, var(--card, #fff));
2088
2098
  }
@@ -2129,10 +2139,17 @@
2129
2139
  width: 30px;
2130
2140
  height: 30px;
2131
2141
  border-radius: 8px;
2132
- background: color-mix(in srgb, var(--muted, #f1f1f1) 70%, transparent);
2142
+ background: transparent;
2133
2143
  color: inherit;
2134
2144
  }
2135
2145
 
2146
+ .workbench-dock__mode-option-icon .workbench-dock__icon,
2147
+ .workbench-dock__mode-option-icon .workbench-dock__mode-icon {
2148
+ width: 30px;
2149
+ height: 30px;
2150
+ filter: none;
2151
+ }
2152
+
2136
2153
  .workbench-dock__mode-option-copy {
2137
2154
  display: grid;
2138
2155
  min-width: 0;
@@ -2285,8 +2302,8 @@
2285
2302
 
2286
2303
  .workbench-dock__item,
2287
2304
  .workbench-dock__tile {
2288
- width: 32px;
2289
- height: 32px;
2305
+ width: 36px;
2306
+ height: 36px;
2290
2307
  }
2291
2308
 
2292
2309
  .workbench-dock__mode-popover {
@@ -2301,8 +2318,8 @@
2301
2318
  }
2302
2319
 
2303
2320
  .workbench-dock__icon {
2304
- width: 16px;
2305
- height: 16px;
2321
+ width: 36px;
2322
+ height: 36px;
2306
2323
  }
2307
2324
 
2308
2325
  .workbench-hud {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floegence/floe-webapp-core",
3
- "version": "0.36.57",
3
+ "version": "0.36.59",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",