Compare commits

..

1 Commits

Author SHA1 Message Date
vaidankarswapnil
e0f6fe84f4 Fixed a11y graph svg title issue 2022-02-01 12:28:21 +05:30
3 changed files with 5 additions and 16 deletions

View File

@@ -141,19 +141,6 @@ export const transparentDetailsHeaderStyle: Partial<IDetailsColumnStyles> = {
},
};
export const transparentDetailsCostHeaderStyle: Partial<IDetailsColumnStyles> = {
root: {
selectors: {
":hover": {
background: "transparent",
},
".ms-DetailsHeader-cellTitle": {
visibility: "hidden",
},
},
},
};
export const customDetailsListStyles: Partial<IDetailsListStyles> = {
root: {
selectors: {

View File

@@ -38,7 +38,6 @@ import {
PriceBreakdown,
saveThroughputWarningMessage,
titleAndInputStackProps,
transparentDetailsCostHeaderStyle,
transparentDetailsHeaderStyle,
} from "../../SettingsRenderUtils";
import { getSanitizedInputValue, IsComponentDirtyResult, isDirty } from "../../SettingsUtils";
@@ -220,12 +219,12 @@ export class ThroughputInputAutoPilotV3Component extends React.Component<
const estimatedSpendingColumns: IColumn[] = [
{
key: "costType",
name: "Cost Type",
name: "",
fieldName: "costType",
minWidth: 100,
maxWidth: 200,
isResizable: true,
styles: transparentDetailsCostHeaderStyle,
styles: transparentDetailsHeaderStyle,
},
{
key: "minPerMonth",

View File

@@ -54,7 +54,9 @@ export class GraphVizComponent extends React.Component<GraphVizComponentProps> {
}
}
xmlSpace="preserve"
aria-label="Load more icon"
>
<title>Load More Icon</title>
<g style={{ opacity: 1 }}>
<g>
<g style={{ opacity: 0.4 }}>
@@ -151,6 +153,7 @@ export class GraphVizComponent extends React.Component<GraphVizComponentProps> {
width="20px"
height="20px"
>
<title>Triangle Right</title>
<polygon points="0.5,10 0.5,0 5.2,5 " />
</svg>
{/*<!-- Make whole area clickable instead of the shape -->*/}