From b7472c1e046ecf1dfaa01dba47a7a5b1ccdbf20c Mon Sep 17 00:00:00 2001 From: Roberto Aranda Date: Fri, 13 Sep 2024 10:20:41 +0200 Subject: [PATCH] Performance Profiler: Fix tab header color in IPad (#94500) * Performance Profiler: Fix tab header color in IPad * Fix formatting issues in Team City due to a README.md file --- client/components/date-range/README.md | 8 ++++---- .../components/metric-tab-bar/style.scss | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/client/components/date-range/README.md b/client/components/date-range/README.md index ab714f98de893..bc3460cc2a3da 100644 --- a/client/components/date-range/README.md +++ b/client/components/date-range/README.md @@ -34,10 +34,10 @@ Props are displayed as a table with Name, Type, Default, and Description as head | `onDateCommit(startDate, endDate)` | `Function` | `undefined` | callback function called when a date is _committed_ (ie: "Applied"). | | `onDateSelect(startDate, endDate)` | `Function` | `undefined` | callback function called when a date is _selected_ (but not committed ie: "Applied") | | `triggerText( startDateText, endDateText )` | `Function` | `undefined` | function to generate the text displayed in the trigger button. Passed the start/end date text in `MM/DD/YYYY` format (or locale specific alternative) | -| `displayShortcuts` | `Boolean` | `false` | determines whether to display the shortcuts menu alongside the calendar -| `useArrowNavigation` | `Boolean` | `false` | determines whether to display the arrow navigation instead of the month labelled buttons as navigation between calendar months | -| `overlay` | `node` | `null` | renders the overlay above the calendar and date inputs if passed | -| `customTitle` | `String` | `` | provides the option to pass a custom alternative title to the popover | +| `displayShortcuts` | `Boolean` | `false` | determines whether to display the shortcuts menu alongside the calendar | +| `useArrowNavigation` | `Boolean` | `false` | determines whether to display the arrow navigation instead of the month labelled buttons as navigation between calendar months | +| `overlay` | `node` | `null` | renders the overlay above the calendar and date inputs if passed | +| `customTitle` | `String` | `` | provides the option to pass a custom alternative title to the popover | #### Render Props diff --git a/client/performance-profiler/components/metric-tab-bar/style.scss b/client/performance-profiler/components/metric-tab-bar/style.scss index 540517d439f3d..47028e281420e 100644 --- a/client/performance-profiler/components/metric-tab-bar/style.scss +++ b/client/performance-profiler/components/metric-tab-bar/style.scss @@ -7,6 +7,10 @@ $blueberry-color: #3858e9; display: flex; flex-direction: row; justify-content: space-between; + + button { + color: inherit; + } } .metric-tab-bar__tab {