Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class CreateIndexCheckbox extends React.Component {
render() {
return (
<div className="create-index-checkbox">
<label>
<input
type="checkbox"
checked={this.state.checked}
Expand All @@ -48,6 +49,7 @@ class CreateIndexCheckbox extends React.Component {
<p className="create-index-checkbox-description">
{this.props.description}
</p>
</label>
</div>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class CreateIndexModal extends React.Component {
constructor(props) {
super(props);
this.state = {
showOptions: false,
showOptions: true,
error: false,
errorMessage: '',
inProgress: false,
Expand Down
5 changes: 5 additions & 0 deletions src/internal-packages/indexes/styles/create-index-modal.less
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
background: #fff;
border-color: #ddd;
border-radius: 2px;
cursor: pointer;
}
}

Expand All @@ -57,13 +58,15 @@

.create-index-checkbox-input {
font-size: 120%;
cursor: pointer;
}

.create-index-checkbox-description {
display: inline-block;
font-weight: normal;
margin-bottom: 4px;
margin-left: 10px;
cursor: pointer;
}
}

Expand All @@ -85,6 +88,7 @@

&[disabled] {
border: 1px solid rgba(204, 204, 204, 0.3);
cursor: not-allowed;
}
}

Expand All @@ -105,6 +109,7 @@
}

.options-toggle-bar {
cursor: pointer;
.options-toggle-bar-header {
margin-top: 10px;

Expand Down