easy-email-pro-theme 1.57.13 → 1.58.0

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/lib/style.css CHANGED
@@ -1860,7 +1860,874 @@ THEMES:
1860
1860
  }
1861
1861
  .StandaloneElementEditorDrawer-header .arco-typography-operation-edit {
1862
1862
  color: var(--color-text-2) !important;
1863
- }._blocksDrawer_ek6hr_1 {
1863
+ }.eep-ai-agent {
1864
+ --eep-ai-bg: #f7f7f8;
1865
+ --eep-ai-surface: #ffffff;
1866
+ --eep-ai-surface-muted: #f3f4f6;
1867
+ --eep-ai-text: #171717;
1868
+ --eep-ai-muted: #6b7280;
1869
+ --eep-ai-subtle: #9ca3af;
1870
+ --eep-ai-line: #e5e7eb;
1871
+ --eep-ai-line-strong: #d1d5db;
1872
+ --eep-ai-black: #0a0a0a;
1873
+ --eep-ai-primary: rgb(var(--primary-6, 22, 93, 255));
1874
+ --eep-ai-primary-hover: rgb(var(--primary-5, 64, 128, 255));
1875
+ --eep-ai-primary-active: rgb(var(--primary-7, 14, 66, 210));
1876
+ --eep-ai-primary-light: rgb(var(--primary-1, 232, 243, 255));
1877
+ --eep-ai-primary-line: rgb(var(--primary-3, 148, 191, 255));
1878
+ --eep-ai-primary-text: rgb(var(--primary-7, 14, 66, 210));
1879
+ --eep-ai-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
1880
+ width: 100%;
1881
+ min-width: 0;
1882
+ height: 100%;
1883
+ min-height: 0;
1884
+ display: flex;
1885
+ flex-direction: column;
1886
+ overflow: hidden;
1887
+ background: var(--eep-ai-bg);
1888
+ color: var(--eep-ai-text);
1889
+ font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
1890
+ font-size: 14px;
1891
+ line-height: 1.45;
1892
+ }
1893
+
1894
+ .eep-ai-agent *,
1895
+ .eep-ai-agent *::before,
1896
+ .eep-ai-agent *::after {
1897
+ box-sizing: border-box;
1898
+ }
1899
+
1900
+ .eep-ai-agent button,
1901
+ .eep-ai-agent input,
1902
+ .eep-ai-agent textarea {
1903
+ font: inherit;
1904
+ }
1905
+
1906
+ .eep-ai-agent button {
1907
+ -webkit-tap-highlight-color: transparent;
1908
+ }
1909
+
1910
+ .eep-ai-agent button:disabled,
1911
+ .eep-ai-agent textarea:disabled {
1912
+ cursor: not-allowed;
1913
+ opacity: 0.46;
1914
+ }
1915
+
1916
+ .eep-ai-agent__body-scrollbar {
1917
+ flex: 1 1 auto;
1918
+ min-height: 0;
1919
+ }
1920
+
1921
+ .eep-ai-agent__body {
1922
+ padding: 18px 12px 12px;
1923
+ }
1924
+
1925
+ .eep-ai-agent__thread {
1926
+ display: grid;
1927
+ gap: 18px;
1928
+ }
1929
+
1930
+ .eep-ai-agent__message {
1931
+ min-width: 0;
1932
+ display: grid;
1933
+ gap: 8px;
1934
+ }
1935
+
1936
+ .eep-ai-agent__message.is-user {
1937
+ justify-items: end;
1938
+ }
1939
+
1940
+ .eep-ai-agent__bubble {
1941
+ max-width: 94%;
1942
+ color: var(--eep-ai-text);
1943
+ font-size: 13px;
1944
+ line-height: 1.62;
1945
+ white-space: pre-wrap;
1946
+ overflow-wrap: anywhere;
1947
+ }
1948
+
1949
+ .eep-ai-agent__message.is-user .eep-ai-agent__bubble {
1950
+ max-width: 92%;
1951
+ border-radius: 22px;
1952
+ padding: 12px 16px;
1953
+ background: #ececef;
1954
+ }
1955
+
1956
+ .eep-ai-agent__message.is-assistant .eep-ai-agent__bubble {
1957
+ width: 100%;
1958
+ }
1959
+
1960
+ .eep-ai-agent__sources {
1961
+ display: flex;
1962
+ flex-wrap: wrap;
1963
+ gap: 6px;
1964
+ padding: 0 2px;
1965
+ }
1966
+
1967
+ .eep-ai-agent__sources a {
1968
+ max-width: 100%;
1969
+ min-height: 22px;
1970
+ padding: 2px 8px;
1971
+ border: 1px solid var(--eep-ai-line);
1972
+ border-radius: 999px;
1973
+ color: var(--eep-ai-muted);
1974
+ background: rgba(255, 255, 255, 0.72);
1975
+ font-size: 11px;
1976
+ line-height: 16px;
1977
+ text-decoration: none;
1978
+ overflow: hidden;
1979
+ text-overflow: ellipsis;
1980
+ white-space: nowrap;
1981
+ }
1982
+
1983
+ .eep-ai-agent__sources a:hover {
1984
+ border-color: var(--eep-ai-line-strong);
1985
+ color: var(--eep-ai-text);
1986
+ }
1987
+
1988
+ .eep-ai-agent__message-actions {
1989
+ display: flex;
1990
+ align-items: center;
1991
+ gap: 6px;
1992
+ min-height: 26px;
1993
+ margin-top: -2px;
1994
+ }
1995
+
1996
+ .eep-ai-agent__message-action {
1997
+ appearance: none;
1998
+ min-height: 24px;
1999
+ display: inline-flex;
2000
+ align-items: center;
2001
+ gap: 5px;
2002
+ padding: 3px 9px;
2003
+ border: 1px solid var(--eep-ai-line);
2004
+ border-radius: 999px;
2005
+ background: rgba(255, 255, 255, 0.58);
2006
+ color: var(--eep-ai-muted);
2007
+ font-size: 11px;
2008
+ font-weight: 500;
2009
+ line-height: 16px;
2010
+ cursor: pointer;
2011
+ transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
2012
+ }
2013
+
2014
+ .eep-ai-agent__message-action:hover {
2015
+ border-color: rgba(22, 93, 255, 0.32);
2016
+ background: var(--eep-ai-primary-light);
2017
+ color: var(--eep-ai-primary-text);
2018
+ }
2019
+
2020
+ .eep-ai-agent__message-action:active {
2021
+ transform: scale(0.97);
2022
+ }
2023
+
2024
+ .eep-ai-agent__message-action:focus-visible {
2025
+ outline: 2px solid var(--eep-ai-primary);
2026
+ outline-offset: 2px;
2027
+ }
2028
+
2029
+ .eep-ai-agent__message-success {
2030
+ width: fit-content;
2031
+ max-width: 100%;
2032
+ display: inline-flex;
2033
+ align-items: center;
2034
+ gap: 6px;
2035
+ color: #15803d;
2036
+ font-size: 12px;
2037
+ font-weight: 600;
2038
+ line-height: 1.4;
2039
+ }
2040
+
2041
+ .eep-ai-agent__message-success span {
2042
+ width: 14px;
2043
+ height: 14px;
2044
+ flex: 0 0 auto;
2045
+ border-radius: 999px;
2046
+ display: grid;
2047
+ place-items: center;
2048
+ border: 1.5px solid currentColor;
2049
+ font-size: 9px;
2050
+ line-height: 1;
2051
+ }
2052
+
2053
+ .eep-ai-agent__decision {
2054
+ width: 100%;
2055
+ display: grid;
2056
+ gap: 10px;
2057
+ padding: 12px;
2058
+ border: 1px solid var(--eep-ai-line-strong);
2059
+ border-radius: 8px;
2060
+ background: var(--eep-ai-surface);
2061
+ box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
2062
+ }
2063
+
2064
+ .eep-ai-agent__decision-preview {
2065
+ width: 184px;
2066
+ max-width: 100%;
2067
+ padding: 0;
2068
+ border: 1px solid var(--eep-ai-line);
2069
+ border-radius: 8px;
2070
+ overflow: hidden;
2071
+ background: var(--eep-ai-surface-muted);
2072
+ cursor: zoom-in;
2073
+ }
2074
+
2075
+ .eep-ai-agent__decision-preview img {
2076
+ display: block;
2077
+ width: 100%;
2078
+ height: auto;
2079
+ }
2080
+
2081
+ .eep-ai-agent__decision-head {
2082
+ display: flex;
2083
+ align-items: start;
2084
+ justify-content: space-between;
2085
+ gap: 10px;
2086
+ }
2087
+
2088
+ .eep-ai-agent__decision-title {
2089
+ color: var(--eep-ai-text);
2090
+ font-size: 13px;
2091
+ font-weight: 700;
2092
+ line-height: 1.35;
2093
+ }
2094
+
2095
+ .eep-ai-agent__decision-message {
2096
+ margin-top: 2px;
2097
+ color: var(--eep-ai-muted);
2098
+ font-size: 12px;
2099
+ line-height: 1.45;
2100
+ }
2101
+
2102
+ .eep-ai-agent__decision-cancel {
2103
+ flex: 0 0 auto;
2104
+ min-height: 28px;
2105
+ padding: 0 10px;
2106
+ border: 1px solid var(--eep-ai-line);
2107
+ border-radius: 8px;
2108
+ background: var(--eep-ai-surface);
2109
+ color: var(--eep-ai-muted);
2110
+ font-size: 12px;
2111
+ font-weight: 600;
2112
+ cursor: pointer;
2113
+ }
2114
+
2115
+ .eep-ai-agent__decision-cancel:hover {
2116
+ border-color: var(--eep-ai-line-strong);
2117
+ color: var(--eep-ai-text);
2118
+ }
2119
+
2120
+ .eep-ai-agent__decision-choices {
2121
+ display: grid;
2122
+ gap: 8px;
2123
+ }
2124
+
2125
+ .eep-ai-agent__decision-choice {
2126
+ width: 100%;
2127
+ min-width: 0;
2128
+ display: grid;
2129
+ grid-template-columns: auto minmax(0, 1fr);
2130
+ gap: 10px;
2131
+ align-items: center;
2132
+ padding: 8px;
2133
+ border: 1px solid var(--eep-ai-line);
2134
+ border-radius: 8px;
2135
+ background: #fff;
2136
+ color: var(--eep-ai-text);
2137
+ text-align: left;
2138
+ cursor: pointer;
2139
+ }
2140
+
2141
+ .eep-ai-agent__decision-choice:hover {
2142
+ border-color: var(--eep-ai-primary-line);
2143
+ background: var(--eep-ai-primary-light);
2144
+ }
2145
+
2146
+ .eep-ai-agent__decision-choice img {
2147
+ width: 54px;
2148
+ height: 42px;
2149
+ border-radius: 6px;
2150
+ object-fit: cover;
2151
+ background: var(--eep-ai-surface-muted);
2152
+ }
2153
+
2154
+ .eep-ai-agent__decision-choice strong {
2155
+ display: block;
2156
+ font-size: 12px;
2157
+ line-height: 1.35;
2158
+ overflow-wrap: anywhere;
2159
+ }
2160
+
2161
+ .eep-ai-agent__decision-choice small {
2162
+ display: block;
2163
+ margin-top: 2px;
2164
+ color: var(--eep-ai-muted);
2165
+ font-size: 11px;
2166
+ line-height: 1.35;
2167
+ overflow-wrap: anywhere;
2168
+ }
2169
+
2170
+ .eep-ai-agent__decision-custom {
2171
+ display: grid;
2172
+ grid-template-columns: minmax(0, 1fr) auto;
2173
+ gap: 8px;
2174
+ }
2175
+
2176
+ .eep-ai-agent__decision-custom input {
2177
+ min-width: 0;
2178
+ height: 34px;
2179
+ border: 1px solid var(--eep-ai-line);
2180
+ border-radius: 8px;
2181
+ padding: 0 10px;
2182
+ outline: 0;
2183
+ color: var(--eep-ai-text);
2184
+ background: #fff;
2185
+ font-size: 12px;
2186
+ }
2187
+
2188
+ .eep-ai-agent__decision-custom input:focus {
2189
+ border-color: var(--eep-ai-primary-line);
2190
+ box-shadow: 0 0 0 3px rgba(var(--primary-6, 22, 93, 255), 0.12);
2191
+ }
2192
+
2193
+ .eep-ai-agent__decision-custom button {
2194
+ min-height: 34px;
2195
+ padding: 0 12px;
2196
+ border: 0;
2197
+ border-radius: 8px;
2198
+ background: var(--eep-ai-primary);
2199
+ color: #fff;
2200
+ font-size: 12px;
2201
+ font-weight: 700;
2202
+ cursor: pointer;
2203
+ }
2204
+
2205
+ .eep-ai-agent__decision-custom button:hover {
2206
+ background: var(--eep-ai-primary-hover);
2207
+ }
2208
+
2209
+ .eep-ai-agent__attachments {
2210
+ max-width: 82%;
2211
+ display: flex;
2212
+ flex-wrap: wrap;
2213
+ gap: 8px;
2214
+ }
2215
+
2216
+ .eep-ai-agent__message.is-user .eep-ai-agent__attachments {
2217
+ justify-content: flex-end;
2218
+ }
2219
+
2220
+ .eep-ai-agent__attachment {
2221
+ position: relative;
2222
+ width: 184px;
2223
+ max-width: 100%;
2224
+ padding: 0;
2225
+ margin: 0;
2226
+ border: 1px solid var(--eep-ai-line-strong);
2227
+ border-radius: 10px;
2228
+ overflow: hidden;
2229
+ background: var(--eep-ai-surface);
2230
+ box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
2231
+ cursor: zoom-in;
2232
+ }
2233
+
2234
+ .eep-ai-agent__attachment-copy {
2235
+ position: absolute;
2236
+ top: 6px;
2237
+ right: 6px;
2238
+ min-width: 24px;
2239
+ height: 24px;
2240
+ padding: 0 6px;
2241
+ border: 1px solid rgba(255, 255, 255, 0.72);
2242
+ border-radius: 6px;
2243
+ display: grid;
2244
+ place-items: center;
2245
+ background: rgba(17, 24, 39, 0.72);
2246
+ color: #fff;
2247
+ font-size: 12px;
2248
+ font-weight: 600;
2249
+ line-height: 1;
2250
+ opacity: 0;
2251
+ transform: translateY(-2px);
2252
+ transition: opacity 120ms ease, transform 120ms ease, background 120ms ease;
2253
+ cursor: pointer;
2254
+ }
2255
+
2256
+ .eep-ai-agent__attachment:hover .eep-ai-agent__attachment-copy,
2257
+ .eep-ai-agent__attachment-copy:focus-visible {
2258
+ opacity: 1;
2259
+ transform: translateY(0);
2260
+ }
2261
+
2262
+ .eep-ai-agent__attachment-copy:hover {
2263
+ background: rgba(17, 24, 39, 0.88);
2264
+ }
2265
+
2266
+ .eep-ai-agent__attachment:hover {
2267
+ border-color: #9ca3af;
2268
+ }
2269
+
2270
+ .eep-ai-agent__attachment img {
2271
+ display: block;
2272
+ width: 100%;
2273
+ height: auto;
2274
+ }
2275
+
2276
+ .eep-ai-agent__composer-wrap {
2277
+ flex: 0 0 auto;
2278
+ padding: 16px 12px 12px;
2279
+ background: linear-gradient(180deg, rgba(247, 247, 248, 0), var(--eep-ai-bg) 24%);
2280
+ }
2281
+
2282
+ .eep-ai-agent__composer-meta {
2283
+ display: grid;
2284
+ gap: 8px;
2285
+ margin-bottom: 8px;
2286
+ }
2287
+
2288
+ .eep-ai-agent__pending-attachments {
2289
+ display: flex;
2290
+ gap: 8px;
2291
+ overflow-x: auto;
2292
+ padding-bottom: 1px;
2293
+ }
2294
+
2295
+ .eep-ai-agent__pending-attachment {
2296
+ position: relative;
2297
+ width: 70px;
2298
+ height: 54px;
2299
+ flex: 0 0 auto;
2300
+ padding: 0;
2301
+ border: 1px solid var(--eep-ai-line-strong);
2302
+ border-radius: 8px;
2303
+ overflow: hidden;
2304
+ background: var(--eep-ai-surface);
2305
+ cursor: zoom-in;
2306
+ }
2307
+
2308
+ .eep-ai-agent__pending-attachment img {
2309
+ width: 100%;
2310
+ height: 100%;
2311
+ display: block;
2312
+ object-fit: cover;
2313
+ }
2314
+
2315
+ .eep-ai-agent__pending-attachment span {
2316
+ position: absolute;
2317
+ top: 3px;
2318
+ right: 3px;
2319
+ width: 18px;
2320
+ height: 18px;
2321
+ border-radius: 999px;
2322
+ display: grid;
2323
+ place-items: center;
2324
+ background: rgba(17, 24, 39, 0.72);
2325
+ color: #fff;
2326
+ font-size: 15px;
2327
+ line-height: 1;
2328
+ cursor: pointer;
2329
+ }
2330
+
2331
+ .eep-ai-agent__pending-attachment-loading {
2332
+ border: 2px solid rgba(255, 255, 255, 0.48);
2333
+ border-top-color: #fff;
2334
+ font-size: 0;
2335
+ cursor: default;
2336
+ animation: eep-ai-agent-upload-spin 800ms linear infinite;
2337
+ }
2338
+
2339
+ @keyframes eep-ai-agent-upload-spin {
2340
+ to {
2341
+ transform: rotate(360deg);
2342
+ }
2343
+ }
2344
+
2345
+ .eep-ai-agent__activity,
2346
+ .eep-ai-agent__error {
2347
+ font-size: 12px;
2348
+ line-height: 1.4;
2349
+ }
2350
+
2351
+ .eep-ai-agent__activity {
2352
+ position: relative;
2353
+ min-height: 34px;
2354
+ display: flex;
2355
+ align-items: center;
2356
+ gap: 8px;
2357
+ overflow: hidden;
2358
+ padding: 8px 11px 8px 12px;
2359
+ border-left: 3px solid transparent;
2360
+ border: 1px solid transparent;
2361
+ border-radius: 4px;
2362
+ color: var(--eep-ai-muted);
2363
+ }
2364
+
2365
+ .eep-ai-agent__activity.is-working {
2366
+ border-color: rgba(22, 93, 255, 0.28);
2367
+ border-left-color: var(--eep-ai-primary);
2368
+ background: linear-gradient(90deg, rgba(22, 93, 255, 0.12), rgba(22, 93, 255, 0.045));
2369
+ color: var(--eep-ai-primary-text);
2370
+ font-weight: 600;
2371
+ box-shadow: 0 6px 16px rgba(22, 93, 255, 0.08);
2372
+ }
2373
+
2374
+ .eep-ai-agent__activity.is-success {
2375
+ border-left-color: #22c55e;
2376
+ background: rgba(34, 197, 94, 0.07);
2377
+ color: #15803d;
2378
+ font-weight: 600;
2379
+ }
2380
+
2381
+ .eep-ai-agent__activity.is-warning {
2382
+ border-left-color: #f59e0b;
2383
+ background: rgba(245, 158, 11, 0.08);
2384
+ color: #b45309;
2385
+ font-weight: 600;
2386
+ }
2387
+
2388
+ .eep-ai-agent__activity-icon {
2389
+ width: 14px;
2390
+ height: 14px;
2391
+ flex: 0 0 auto;
2392
+ border-radius: 999px;
2393
+ display: grid;
2394
+ place-items: center;
2395
+ border: 1.5px solid currentColor;
2396
+ background: transparent;
2397
+ color: currentColor;
2398
+ font-size: 9px;
2399
+ line-height: 1;
2400
+ }
2401
+
2402
+ .eep-ai-agent__activity-dots {
2403
+ flex: 0 0 auto;
2404
+ display: inline-flex;
2405
+ align-items: center;
2406
+ gap: 3px;
2407
+ }
2408
+
2409
+ .eep-ai-agent__activity-dots span {
2410
+ width: 5px;
2411
+ height: 5px;
2412
+ border-radius: 999px;
2413
+ background: currentColor;
2414
+ animation: eep-ai-agent-working-dot 1s ease-in-out infinite;
2415
+ }
2416
+
2417
+ .eep-ai-agent__activity-dots span:nth-child(2) {
2418
+ animation-delay: 140ms;
2419
+ }
2420
+
2421
+ .eep-ai-agent__activity-dots span:nth-child(3) {
2422
+ animation-delay: 280ms;
2423
+ }
2424
+
2425
+ .eep-ai-agent__activity-text {
2426
+ min-width: 0;
2427
+ overflow: hidden;
2428
+ text-overflow: ellipsis;
2429
+ white-space: nowrap;
2430
+ }
2431
+
2432
+ .eep-ai-agent__activity-bar {
2433
+ position: absolute;
2434
+ left: 0;
2435
+ right: 0;
2436
+ bottom: 0;
2437
+ height: 2px;
2438
+ overflow: hidden;
2439
+ background: rgba(22, 93, 255, 0.14);
2440
+ }
2441
+
2442
+ .eep-ai-agent__activity-bar::before {
2443
+ content: "";
2444
+ position: absolute;
2445
+ top: 0;
2446
+ bottom: 0;
2447
+ width: 38%;
2448
+ border-radius: 999px;
2449
+ background: var(--eep-ai-primary);
2450
+ animation: eep-ai-agent-working-bar 1.2s ease-in-out infinite;
2451
+ }
2452
+
2453
+ @keyframes eep-ai-agent-working-dot {
2454
+ 0%,
2455
+ 80%,
2456
+ 100% {
2457
+ opacity: 0.34;
2458
+ transform: translateY(0);
2459
+ }
2460
+ 40% {
2461
+ opacity: 1;
2462
+ transform: translateY(-2px);
2463
+ }
2464
+ }
2465
+
2466
+ @keyframes eep-ai-agent-working-bar {
2467
+ 0% {
2468
+ transform: translateX(-100%);
2469
+ }
2470
+ 100% {
2471
+ transform: translateX(280%);
2472
+ }
2473
+ }
2474
+
2475
+ .eep-ai-agent__error {
2476
+ padding: 0 2px;
2477
+ color: #b42318;
2478
+ }
2479
+
2480
+ .eep-ai-agent__pending-action {
2481
+ justify-self: start;
2482
+ min-height: 32px;
2483
+ padding: 0 14px;
2484
+ border: 1px solid var(--eep-ai-primary);
2485
+ border-radius: 8px;
2486
+ background: var(--eep-ai-primary);
2487
+ color: #fff;
2488
+ font-size: 12px;
2489
+ font-weight: 600;
2490
+ cursor: pointer;
2491
+ }
2492
+
2493
+ .eep-ai-agent__pending-action:hover {
2494
+ border-color: var(--eep-ai-primary-hover);
2495
+ background: var(--eep-ai-primary-hover);
2496
+ }
2497
+
2498
+ .eep-ai-agent__quick-actions {
2499
+ position: relative;
2500
+ z-index: 2;
2501
+ margin-bottom: 10px;
2502
+ }
2503
+
2504
+ .eep-ai-agent__quick-actions-bar {
2505
+ display: flex;
2506
+ align-items: center;
2507
+ gap: 8px;
2508
+ }
2509
+
2510
+ .eep-ai-agent__quick-action-pill,
2511
+ .eep-ai-agent__quick-action-more {
2512
+ min-width: 0;
2513
+ height: 32px;
2514
+ border: 1px solid #d9dfe9;
2515
+ border-radius: 999px;
2516
+ background: rgba(255, 255, 255, 0.76);
2517
+ color: #4b5563;
2518
+ font-size: 12px;
2519
+ font-weight: 600;
2520
+ line-height: 30px;
2521
+ overflow: hidden;
2522
+ text-overflow: ellipsis;
2523
+ white-space: nowrap;
2524
+ cursor: pointer;
2525
+ transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
2526
+ }
2527
+
2528
+ .eep-ai-agent__quick-action-pill {
2529
+ flex: 0 1 auto;
2530
+ padding: 0 15px;
2531
+ text-align: center;
2532
+ }
2533
+
2534
+ .eep-ai-agent__quick-action-pill.is-featured {
2535
+ border-color: var(--eep-ai-primary-line);
2536
+ background: var(--eep-ai-primary-light);
2537
+ color: var(--eep-ai-primary-text);
2538
+ }
2539
+
2540
+ .eep-ai-agent__quick-action-more {
2541
+ flex: 0 0 36px;
2542
+ width: 36px;
2543
+ margin-left: auto;
2544
+ padding: 0;
2545
+ display: grid;
2546
+ place-items: center;
2547
+ color: var(--eep-ai-muted);
2548
+ }
2549
+
2550
+ .eep-ai-agent__quick-action-pill:hover,
2551
+ .eep-ai-agent__quick-action-more:hover {
2552
+ border-color: #b9c3d4;
2553
+ background: #fff;
2554
+ color: #111827;
2555
+ box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
2556
+ }
2557
+
2558
+ .eep-ai-agent__quick-action-pill:disabled,
2559
+ .eep-ai-agent__quick-action-more:disabled {
2560
+ cursor: not-allowed;
2561
+ opacity: 0.55;
2562
+ transform: none;
2563
+ box-shadow: none;
2564
+ }
2565
+
2566
+ .eep-ai-agent__quick-actions-menu {
2567
+ position: absolute;
2568
+ left: 0;
2569
+ right: 0;
2570
+ bottom: 40px;
2571
+ display: grid;
2572
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2573
+ gap: 6px;
2574
+ padding: 8px;
2575
+ border: 1px solid rgba(209, 213, 219, 0.88);
2576
+ border-radius: 12px;
2577
+ background: rgba(255, 255, 255, 0.98);
2578
+ box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
2579
+ }
2580
+
2581
+ .eep-ai-agent__quick-action-menu-item {
2582
+ min-width: 0;
2583
+ min-height: 32px;
2584
+ padding: 0 9px;
2585
+ border: 0;
2586
+ border-radius: 8px;
2587
+ background: transparent;
2588
+ color: var(--eep-ai-text);
2589
+ font-size: 12px;
2590
+ font-weight: 600;
2591
+ text-align: left;
2592
+ overflow: hidden;
2593
+ text-overflow: ellipsis;
2594
+ white-space: nowrap;
2595
+ cursor: pointer;
2596
+ }
2597
+
2598
+ .eep-ai-agent__quick-action-menu-item:hover {
2599
+ background: #f3f4f6;
2600
+ }
2601
+
2602
+ .eep-ai-agent__composer {
2603
+ display: grid;
2604
+ grid-template-columns: minmax(0, 1fr) 38px 38px;
2605
+ gap: 8px;
2606
+ align-items: end;
2607
+ border: 1px solid var(--eep-ai-line-strong);
2608
+ border-radius: 8px;
2609
+ padding: 9px;
2610
+ background: var(--eep-ai-surface);
2611
+ box-shadow: var(--eep-ai-shadow);
2612
+ }
2613
+
2614
+ .eep-ai-agent__composer:focus-within {
2615
+ border-color: #9ca3af;
2616
+ box-shadow: var(--eep-ai-shadow), 0 0 0 3px rgba(17, 24, 39, 0.08);
2617
+ }
2618
+
2619
+ .eep-ai-agent__composer-input {
2620
+ min-width: 0;
2621
+ }
2622
+
2623
+ .eep-ai-agent__composer textarea {
2624
+ width: 100%;
2625
+ min-height: 36px;
2626
+ max-height: 120px;
2627
+ overflow-y: hidden;
2628
+ resize: none;
2629
+ border: 0;
2630
+ outline: 0;
2631
+ padding: 6px 4px 2px;
2632
+ color: var(--eep-ai-text);
2633
+ background: transparent;
2634
+ font-size: 13px;
2635
+ line-height: 1.45;
2636
+ }
2637
+
2638
+ .eep-ai-agent__composer textarea::placeholder {
2639
+ color: var(--eep-ai-subtle);
2640
+ }
2641
+
2642
+ .eep-ai-agent__composer-hint {
2643
+ padding: 1px 4px 0;
2644
+ color: var(--eep-ai-subtle);
2645
+ font-size: 11px;
2646
+ line-height: 1.35;
2647
+ }
2648
+
2649
+ .eep-ai-agent__file-input {
2650
+ display: none;
2651
+ }
2652
+
2653
+ .eep-ai-agent__attach,
2654
+ .eep-ai-agent__send {
2655
+ width: 38px;
2656
+ height: 38px;
2657
+ border-radius: 8px;
2658
+ display: grid;
2659
+ place-items: center;
2660
+ cursor: pointer;
2661
+ }
2662
+
2663
+ .eep-ai-agent__attach {
2664
+ border: 1px solid var(--eep-ai-line);
2665
+ background: var(--eep-ai-surface);
2666
+ color: var(--eep-ai-text);
2667
+ }
2668
+
2669
+ .eep-ai-agent__attach:hover {
2670
+ background: #f4f4f5;
2671
+ }
2672
+
2673
+ .eep-ai-agent__send {
2674
+ border: 0;
2675
+ background: var(--eep-ai-primary);
2676
+ color: #fff;
2677
+ box-shadow: 0 8px 18px rgba(var(--primary-6, 22, 93, 255), 0.28);
2678
+ }
2679
+
2680
+ .eep-ai-agent__send:hover {
2681
+ background: var(--eep-ai-primary-hover);
2682
+ }
2683
+
2684
+ .eep-ai-agent__send:active {
2685
+ background: var(--eep-ai-primary-active);
2686
+ }
2687
+
2688
+ .eep-ai-agent__send:disabled {
2689
+ background: #c7cbd1;
2690
+ box-shadow: none;
2691
+ }
2692
+
2693
+ .eep-ai-agent__lightbox {
2694
+ position: fixed;
2695
+ inset: 0;
2696
+ z-index: 3000;
2697
+ display: grid;
2698
+ place-items: center;
2699
+ padding: 48px;
2700
+ background: rgba(17, 24, 39, 0.48);
2701
+ cursor: zoom-out;
2702
+ }
2703
+
2704
+ .eep-ai-agent__lightbox img {
2705
+ max-width: min(860px, 88vw);
2706
+ max-height: 82vh;
2707
+ border-radius: 12px;
2708
+ display: block;
2709
+ background: var(--eep-ai-surface);
2710
+ box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
2711
+ cursor: default;
2712
+ }
2713
+
2714
+ .eep-ai-agent__lightbox-close {
2715
+ position: fixed;
2716
+ top: 20px;
2717
+ right: 20px;
2718
+ width: 36px;
2719
+ height: 36px;
2720
+ border: 0;
2721
+ border-radius: 999px;
2722
+ display: grid;
2723
+ place-items: center;
2724
+ background: rgba(255, 255, 255, 0.92);
2725
+ color: var(--eep-ai-text);
2726
+ font-size: 24px;
2727
+ line-height: 1;
2728
+ cursor: pointer;
2729
+ }
2730
+ ._blocksDrawer_ek6hr_1 {
1864
2731
  display: flex;
1865
2732
  flex-direction: column;
1866
2733
  height: 100%;