@@ -18,115 +18,8 @@ define(function (require, exports, module) {
1818 const toastMessageStyles = require ( "text!./browser-css/toast-message.css" ) ;
1919 const dialogOverlayStyles = require ( "text!./browser-css/dialog-overlay.css" ) ;
2020
21- const aiPromptBoxStyles = `
22- :host {
23- all: initial !important;
24- }
25-
26- .phoenix-ai-prompt-box {
27- position: absolute !important;
28- background: #3C3F41 !important;
29- border: 1px solid #4285F4 !important;
30- border-radius: 4px !important;
31- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
32- font-family: Arial, sans-serif !important;
33- z-index: 2147483647 !important;
34- width: var(--ai-box-width) !important;
35- padding: 0 !important;
36- box-sizing: border-box !important;
37- }
38-
39- .phoenix-ai-prompt-input-container {
40- position: relative !important;
41- }
42-
43- .phoenix-ai-prompt-textarea {
44- width: 100% !important;
45- height: var(--ai-box-height) !important;
46- border: none !important;
47- border-radius: 4px 4px 0 0 !important;
48- padding: 12px 40px 12px 16px !important;
49- font-size: 14px !important;
50- font-family: Arial, sans-serif !important;
51- resize: none !important;
52- outline: none !important;
53- box-sizing: border-box !important;
54- background: transparent !important;
55- color: #c5c5c5 !important;
56- transition: background 0.2s ease !important;
57- }
58-
59- .phoenix-ai-prompt-textarea:focus {
60- background: rgba(255, 255, 255, 0.03) !important;
61- }
62-
63- .phoenix-ai-prompt-textarea::placeholder {
64- color: #a0a0a0 !important;
65- opacity: 0.7 !important;
66- }
67-
68- .phoenix-ai-prompt-send-button {
69- background-color: transparent !important;
70- border: 1px solid transparent !important;
71- color: #a0a0a0 !important;
72- border-radius: 4px !important;
73- cursor: pointer !important;
74- padding: 3px 6px !important;
75- display: flex !important;
76- align-items: center !important;
77- justify-content: center !important;
78- font-size: 14px !important;
79- transition: all 0.2s ease !important;
80- }
81-
82- .phoenix-ai-prompt-send-button:hover:not(:disabled) {
83- border: 1px solid rgba(0, 0, 0, 0.24) !important;
84- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
85- }
86-
87- .phoenix-ai-prompt-send-button:disabled {
88- opacity: 0.5 !important;
89- cursor: not-allowed !important;
90- }
91-
92- .phoenix-ai-bottom-controls {
93- border-top: 1px solid rgba(255,255,255,0.14) !important;
94- padding: 8px 16px !important;
95- background: transparent !important;
96- border-radius: 0 0 4px 4px !important;
97- display: flex !important;
98- align-items: center !important;
99- justify-content: space-between !important;
100- }
101-
102- .phoenix-ai-model-select {
103- padding: 4px 8px !important;
104- border: 1px solid transparent !important;
105- border-radius: 4px !important;
106- font-size: 12px !important;
107- background: transparent !important;
108- color: #a0a0a0 !important;
109- outline: none !important;
110- cursor: pointer !important;
111- transition: all 0.2s ease !important;
112- }
113-
114- .phoenix-ai-model-select:hover {
115- border: 1px solid rgba(0, 0, 0, 0.24) !important;
116- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
117- }
118-
119- .phoenix-ai-model-select:focus {
120- border: 1px solid rgba(0, 0, 0, 0.24) !important;
121- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
122- }
123-
124- .phoenix-ai-model-select option {
125- background: #000 !important;
126- color: #fff !important;
127- padding: 4px 8px !important;
128- }
129- ` ;
21+ // this is the AI prompt box that comes up when you click on the AI button in the ribbon
22+ const aiPromptBoxStyles = require ( "text!./browser-css/ai-prompt-box.css" ) ;
13023
13124 const imageGalleryStyles = `
13225 :host {
0 commit comments