mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-05-17 13:54:51 +01:00
Fixed a11y issue for the settings label
This commit is contained in:
parent
de5df90f75
commit
bb1bbc2f70
@ -2885,6 +2885,10 @@ a:link {
|
|||||||
|
|
||||||
.settingsSectionPart {
|
.settingsSectionPart {
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
|
label {
|
||||||
|
padding: 0 !important;
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.settingsSectionLabel {
|
.settingsSectionLabel {
|
||||||
|
@ -188,14 +188,11 @@ export const SettingsPane: FunctionComponent = () => {
|
|||||||
{shouldShowCrossPartitionOption && (
|
{shouldShowCrossPartitionOption && (
|
||||||
<div className="settingsSection">
|
<div className="settingsSection">
|
||||||
<div className="settingsSectionPart">
|
<div className="settingsSectionPart">
|
||||||
<div className="settingsSectionLabel">
|
<label className="settingsSectionLabel">Enable cross-partition query</label>
|
||||||
Enable cross-partition query
|
|
||||||
<InfoTooltip>
|
<InfoTooltip>
|
||||||
Send more than one request while executing a query. More than one request is necessary if the query is
|
Send more than one request while executing a query. More than one request is necessary if the query is
|
||||||
not scoped to single partition key value.
|
not scoped to single partition key value.
|
||||||
</InfoTooltip>
|
</InfoTooltip>
|
||||||
</div>
|
|
||||||
|
|
||||||
<Checkbox
|
<Checkbox
|
||||||
styles={{
|
styles={{
|
||||||
label: { padding: 0 },
|
label: { padding: 0 },
|
||||||
@ -211,14 +208,14 @@ export const SettingsPane: FunctionComponent = () => {
|
|||||||
{shouldShowParallelismOption && (
|
{shouldShowParallelismOption && (
|
||||||
<div className="settingsSection">
|
<div className="settingsSection">
|
||||||
<div className="settingsSectionPart">
|
<div className="settingsSectionPart">
|
||||||
<div className="settingsSectionLabel">
|
<label className="settingsSectionLabel" htmlFor="input65">
|
||||||
Max degree of parallelism
|
Max degree of parallelism
|
||||||
|
</label>
|
||||||
<InfoTooltip>
|
<InfoTooltip>
|
||||||
Gets or sets the number of concurrent operations run client side during parallel query execution. A
|
Gets or sets the number of concurrent operations run client side during parallel query execution. A
|
||||||
positive property value limits the number of concurrent operations to the set value. If it is set to
|
positive property value limits the number of concurrent operations to the set value. If it is set to
|
||||||
less than 0, the system automatically decides the number of concurrent operations to run.
|
less than 0, the system automatically decides the number of concurrent operations to run.
|
||||||
</InfoTooltip>
|
</InfoTooltip>
|
||||||
</div>
|
|
||||||
|
|
||||||
<SpinButton
|
<SpinButton
|
||||||
min={-1}
|
min={-1}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user