Skip to content

Commit

Permalink
update icons
Browse files Browse the repository at this point in the history
  • Loading branch information
madushadhanushka committed Sep 17, 2019
1 parent ba22b78 commit 8c61299
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 14 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ Online version available at [Differ](https://differ.netlify.com)
2. JSON
3. Properties

![Screen Shot](/doc/Screenshot.png)

## Demo
[![Differ](http:https://img.youtube.com/vi/O1LqN8wELDs/0.jpg)](http:https://www.youtube.com/watch?v=O1LqN8wELDs)
![Screen Shot](/doc/differgif.gif)

## Build Setup

Expand Down
Binary file added doc/differgif.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/renderer/assets/folder.jpg
Binary file not shown.
Binary file added src/renderer/assets/folder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/renderer/assets/plain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/renderer/assets/top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 10 additions & 10 deletions src/renderer/views/form/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,23 @@
</el-row>
<div class="el-form-item_custom">
<span class="tooltip">
<img src="./../../assets/compare.png" width="50px" height="50px" @click="onSubmit" class="compare-btn list-ico-prop">
<span class="tooltiptext">Compare</span>
<img :src="this.infile.inputModeImg" width="40px" height="40px" @click="onModeChange" class="list-ico-prop">
<span class="tooltiptext">{{this.infile.inputModeCmt}}</span>
</span>
<span class="tooltip">
<img :src="this.infile.outputTypeImg" width="50px" height="50px" @click="onTypeChange" class="list-ico-prop">
<span class="tooltiptext">{{this.infile.outputTypeCmt}}</span>
<img src="./../../assets/compare.png" width="40px" height="40px" @click="onSubmit" class="compare-btn list-ico-prop">
<span class="tooltiptext">Compare</span>
</span>
<span class="tooltip">
<img :src="this.infile.inputModeImg" width="50px" height="50px" @click="onModeChange" class="list-ico-prop">
<span class="tooltiptext">{{this.infile.inputModeCmt}}</span>
<img :src="this.infile.outputTypeImg" width="40px" height="40px" @click="onTypeChange" class="list-ico-prop">
<span class="tooltiptext">{{this.infile.outputTypeCmt}}</span>
</span>
<span class="tooltip">
<img :src="this.infile.compareModeImg" width="50px" height="50px" @click="onCompareModeChange" class="list-ico-prop">
<img :src="this.infile.compareModeImg" width="40px" height="40px" @click="onCompareModeChange" class="list-ico-prop">
<span class="tooltiptext">{{this.infile.compareModeCmt}}</span>
</span>
<span class="tooltip">
<img src="./../../assets/top.png" width="50px" height="50px" @click="scrollFix('#top_div')" class="list-ico-prop">
<img src="./../../assets/top.png" width="40px" height="40px" @click="scrollFix('#top_div')" class="list-ico-prop">
<span class="tooltiptext">Move top</span>
</span>
</div>
Expand Down Expand Up @@ -76,7 +76,7 @@ export default {
outputTypeCmt: 'Change to Unify mode',
inputDirMode: true,
inputMode: 'Folder',
inputModeImg: require('./../../assets/folder.jpg'),
inputModeImg: require('./../../assets/folder.png'),
inputModeCmt: 'Change to File mode',
diffList: []
}
Expand Down Expand Up @@ -462,7 +462,7 @@ export default {
this.infile.inputDirMode = true
this.infile.filenameOne = 'Select folder one'
this.infile.filenameTwo = 'Select folder two'
this.infile.inputModeImg = require('./../../assets/folder.jpg')
this.infile.inputModeImg = require('./../../assets/folder.png')
this.infile.inputModeCmt = 'Change to File mode'
} else {
this.infile.inputMode = 'File'
Expand Down

0 comments on commit 8c61299

Please sign in to comment.