fluxy-bot 0.2.31 → 0.2.32
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/package.json +1 -1
- package/supervisor/widget.js +2 -2
package/package.json
CHANGED
package/supervisor/widget.js
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
// ── Styles ──
|
|
7
7
|
var style = document.createElement('style');
|
|
8
8
|
style.textContent = [
|
|
9
|
-
'#fluxy-widget-bubble{position:fixed;bottom:24px;right:24px;z-index:99998;cursor:pointer;width:
|
|
9
|
+
'#fluxy-widget-bubble{position:fixed;bottom:24px;right:24px;z-index:99998;cursor:pointer;width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:transform .15s ease;-webkit-tap-highlight-color:transparent}',
|
|
10
10
|
'#fluxy-widget-bubble:hover{transform:scale(1.1)}',
|
|
11
11
|
'#fluxy-widget-bubble:active{transform:scale(0.95)}',
|
|
12
|
-
'#fluxy-widget-bubble video,#fluxy-widget-bubble img{height:
|
|
12
|
+
'#fluxy-widget-bubble video,#fluxy-widget-bubble img{height:60px;width:auto;pointer-events:none;-webkit-user-drag:none}',
|
|
13
13
|
'#fluxy-widget-backdrop{position:fixed;inset:0;z-index:99998;background:rgba(0,0,0,0.4);opacity:0;transition:opacity .2s ease;pointer-events:none}',
|
|
14
14
|
'#fluxy-widget-backdrop.open{opacity:1;pointer-events:auto}',
|
|
15
15
|
'#fluxy-widget-panel{position:fixed;top:0;right:0;bottom:0;z-index:99999;width:' + PANEL_WIDTH + ';max-width:100vw;transform:translateX(100%);transition:transform .25s cubic-bezier(.4,0,.2,1);box-shadow:-4px 0 24px rgba(0,0,0,0.3);border-left:1px solid #3a3a3a;overflow:hidden}',
|