PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/Agent/components/messages/WorkflowMessage.jsx +8 -8 3.1.2 → trunk View file →
@@ -32,9 +32,9 @@
32 32 return (
33 33 <div className="flex flex-col gap-px p-2 text-center text-xs italic">
34 34 {answerId && <Rating answerId={answerId} />}
35 35 {hasSuggestions && (
36 - <div className="relative mb-4 ml-9 mr-2 mt-4 flex flex-col gap-0.5 border-t border-gray-300 p-0 pt-4 text-sm text-gray-800 rtl:ml-2 rtl:mr-9">
36 + <div className="relative mb-4 ms-10 mt-4 flex flex-col gap-0.5 border-t border-gray-300 p-0 pt-4 text-sm text-gray-800">
37 37 <p className="m-0 mb-2 p-0 px-2 text-left text-sm not-italic text-gray-900 rtl:text-right">
38 38 {__(
39 39 "What's next? Would you like to do something else?",
40 40 'extendify-local',
@@ -48,13 +48,13 @@
48 48 };
49 49
50 50 const WorkflowToolCompleted = ({ label }) => {
51 51 return (
52 - <div className="flex w-full items-start gap-2.5 p-2">
52 + <div className="flex w-full items-start gap-2.5 px-2.5 py-2">
53 53 <div className="w-7 shrink-0" />
54 54 <div className="flex min-w-0 flex-1 flex-col gap-1">
55 - <div className="flex items-center gap-2 rounded-lg border border-wp-alert-green bg-wp-alert-green/20 p-3 text-green-900">
56 - <div className="h-6 w-6 leading-none">
55 + <div className="flex items-center gap-2 border-l-4 border-l-wp-alert-green bg-wp-notice-success p-3 text-gray-900">
56 + <div className="h-6 w-6 leading-none text-wp-alert-green">
57 57 <svg
58 58 xmlns="http://www.w3.org/2000/svg"
59 59 fill="none"
60 60 viewBox="0 0 24 24"
@@ -71,9 +71,9 @@
71 71 </svg>
72 72 </div>
73 73 <div className="text-sm">
74 74 {decodeEntities(label) ||
75 - __('Workflow completed successfully', 'extendify-local')}
75 + __('Your site was updated', 'extendify-local')}
76 76 </div>
77 77 </div>
78 78 </div>
79 79 </div>
@@ -81,15 +81,15 @@
81 81 };
82 82
83 83 const WorkflowToolCanceled = ({ label }) => {
84 84 return (
85 - <div className="flex w-full items-start gap-2.5 p-2">
85 + <div className="flex w-full items-start gap-2.5 px-2.5 py-2">
86 86 <div className="w-7 shrink-0" />
87 87 <div className="flex min-w-0 flex-1 flex-col gap-1">
88 - <div className="flex items-center gap-2 rounded-lg border border-gray-300 bg-gray-50 p-3 text-gray-700">
88 + <div className="flex items-center gap-2 border-l-4 border-l-wp-notice-neutral bg-gray-50 p-3 text-gray-900">
89 89 <div className="text-sm">
90 90 {decodeEntities(label) ||
91 - __('Workflow was canceled', 'extendify-local')}
91 + __('Canceled — nothing was changed', 'extendify-local')}
92 92 </div>
93 93 </div>
94 94 </div>
95 95 </div>