Skip to content

Commit ebfa326

Browse files
committed
minor design improvements
1 parent a5bece2 commit ebfa326

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/containers/views/DataFileNew.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ export class DataFileNew extends Component {
6868
<div className="side-unit">
6969
<a onClick={() => this.handleClickSave()}
7070
className={"btn"+(datafileChanged ? " btn-success " : " btn-inactive ")+"btn-fat"}>
71-
<i className="fa fa-save" aria-hidden="true"></i>
72-
{updated ? 'Saved' : 'Save'}
71+
<i className="fa fa-plus-square" aria-hidden="true"></i>
72+
{updated ? 'Created' : 'Create'}
7373
</a>
7474
</div>
7575
</div>

src/containers/views/DocumentNew.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class DocumentNew extends Component {
8686
<div className="side-unit">
8787
<a onClick={() => this.handleClickSave()}
8888
className={"btn"+(fieldChanged ? " btn-success " : " btn-inactive ")+"btn-fat"}>
89-
<i className="fa fa-plus-square-o" aria-hidden="true"></i>
89+
<i className="fa fa-plus-square" aria-hidden="true"></i>
9090
{updated ? 'Created' : 'Create'}
9191
</a>
9292
</div>

src/containers/views/PageNew.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class PageNew extends Component {
7878
<div className="side-unit">
7979
<a onClick={() => this.handleClickSave()}
8080
className={"btn"+(fieldChanged ? " btn-success " : " btn-inactive ")+"btn-fat"}>
81-
<i className="fa fa-plus-square-o" aria-hidden="true"></i>
81+
<i className="fa fa-plus-square" aria-hidden="true"></i>
8282
{updated ? 'Created' : 'Create'}
8383
</a>
8484
</div>

src/styles/form.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
box-shadow: none;
4343
border: 0;
4444
border-bottom: 1px solid #ededed;
45-
@include border-radius($border-radius);
4645
&:focus {
4746
color: #000 !important;
4847
border-bottom: 2px solid $border-color-focus;

0 commit comments

Comments
 (0)