File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
src/platform/packages/shared/kbn-unified-tabs/src/components/tab Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,16 @@ export const Tab: React.FC<TabProps> = (props) => {
221221 ) : (
222222 < div css = { getTabLabelContainerCss ( euiTheme ) } className = "unifiedTabs__tabLabel" >
223223 { previewData ?. status === TabStatus . RUNNING && (
224- < EuiProgress size = "xs" color = "accent" position = "absolute" />
224+ < EuiProgress
225+ size = "xs"
226+ color = "accent"
227+ position = "absolute"
228+ css = { css `
229+ // we can't simply use overflow: hidden; because then curved notches are not visible
230+ border-top-left-radius : ${ euiTheme . border . radius . small } ;
231+ border-top-right-radius : ${ euiTheme . border . radius . small } ;
232+ ` }
233+ />
225234 ) }
226235 < EuiFlexGroup
227236 ref = { tabLabelRef }
You can’t perform that action at this time.
0 commit comments