Skip to content

Commit

Permalink
Merge pull request #7 from whyboris/release
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
whyboris authored Feb 9, 2020
2 parents 33f790c + 3acbea6 commit f8bed93
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simplest-file-renamer",
"version": "0.1.0",
"version": "1.0.0",
"description": "Simplest app to rename your files",
"homepage": "https://github.com/whyboris/Simplest-File-Renamer",
"author": {
Expand Down
2 changes: 2 additions & 0 deletions src/app/home/comparison/comparison.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
left: -100vw;
min-width: calc(150vw - 9px);
opacity: 0.7;
pointer-events: none;
position: absolute;
width: calc(150vw - 9px);
}
Expand All @@ -16,6 +17,7 @@
}

.show-error {
cursor: not-allowed;

.error-text {
background: white;
Expand Down
5 changes: 4 additions & 1 deletion src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@

<div
class="rename-container rename-overlay animated"
[ngStyle]="{ opacity: mode === 'review' ? 0 : (hover ? 0 : 1) }"
[ngStyle]="{
'opacity': hover ? 0 : 1,
'display': mode === 'review' ? 'none' : 'initial'
}"
>

<div #editor3>
Expand Down
3 changes: 1 addition & 2 deletions src/app/home/home.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ button {
& :nth-child(1) {
overflow: hidden; // hide scrollbars
padding-bottom: 10px; // compensate for hidden scrollbar
pointer-events: none;
transform: translateX(20px);
user-select: none;
}
Expand All @@ -152,7 +151,7 @@ button {
}

.rename-overlay {
pointer-events: none !important;
pointer-events: none;
user-select: none;
}

Expand Down

0 comments on commit f8bed93

Please sign in to comment.