File tree Expand file tree Collapse file tree
packages/devtools_app/lib/src/standalone_ui/ide_shared/property_editor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -161,16 +161,19 @@ class _PropertyEditorFooter extends StatelessWidget {
161161 final colorScheme = theme.colorScheme;
162162 final documentationLink = _documentationLink ();
163163 return Container (
164- color: colorScheme.secondary,
164+ decoration: BoxDecoration (
165+ color: colorScheme.surface,
166+ border: Border (top: BorderSide (color: Theme .of (context).focusColor)),
167+ ),
165168 height: _PropertyEditorConnectedPanel .footerHeight,
166169 padding: const EdgeInsets .symmetric (vertical: densePadding),
167170 alignment: Alignment .center,
168171 child: Row (
169172 children: [
173+ const Spacer (),
170174 if (documentationLink != null )
171175 _DocsLink (documentationLink: documentationLink),
172- const Spacer (),
173- ReportFeedbackButton (color: colorScheme.onSecondary),
176+ ReportFeedbackButton (color: colorScheme.onSurface),
174177 ],
175178 ),
176179 );
You can’t perform that action at this time.
0 commit comments