Skip to content

Commit 61a9cb4

Browse files
Add pointer on hover in auto-refresh (#1714)
* Add pointer on hover in auto-refresh * Remove extra space * [#1717] Change mongo-connect configuration due to bug iwth mongodb+srv urls * Add pointer on hover in auto-refresh * Remove extra space * Implement Requested changes Co-authored-by: Cassie Tarakajian <[email protected]>
1 parent de5fd78 commit 61a9cb4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

client/modules/IDE/components/Toolbar.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ class Toolbar extends React.Component {
109109
<div className="toolbar__autorefresh">
110110
<input
111111
id="autorefresh"
112+
className="checkbox__autorefresh"
112113
type="checkbox"
113114
checked={this.props.autorefresh}
114115
onChange={(event) => {

client/styles/components/_toolbar.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@
149149
font-size: #{12 / $base-font-size}rem;
150150
}
151151

152+
.checkbox__autorefresh{
153+
cursor: pointer;
154+
}
155+
152156
.toolbar__edit-name-button {
153157
display: inline-block;
154158
vertical-align: top;

0 commit comments

Comments
 (0)