Skip to content

Commit

Permalink
EZP-29381: Selected item becomes unselected for a moment while browsi…
Browse files Browse the repository at this point in the history
…ng content in UDW (#84)

* EZP-29381: Selected item becomes unselected for a moment while browsing content in UDW

* After review
  • Loading branch information
sunpietro authored and Łukasz Serwatka committed Jul 4, 2018
1 parent ea93243 commit 19e4f6e
Show file tree
Hide file tree
Showing 10 changed files with 240 additions and 188 deletions.
2 changes: 1 addition & 1 deletion Resources/public/js/MultiFileUpload.module.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resources/public/js/MultiFileUpload.module.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resources/public/js/SubItems.module.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resources/public/js/SubItems.module.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resources/public/js/UniversalDiscovery.module.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resources/public/js/UniversalDiscovery.module.js.map

Large diffs are not rendered by default.

Expand Up @@ -5,6 +5,7 @@
flex: 0 0 24ch;
border-radius: 4px;
overflow: auto;
transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.c-finder-tree-branch__list-wrapper {
Expand All @@ -21,7 +22,7 @@
width: 80%;
border-radius: 4px;
margin: 0 auto 10px;
transition: background .3s cubic-bezier(.25, .8, .25, 1), color .3s cubic-bezier(.25, .8, .25, 1);
transition: background 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
cursor: pointer;
}

Expand All @@ -36,3 +37,8 @@
flex: 0 0 3ch;
cursor: pointer;
}

.c-finder-tree-branch--loading {
pointer-events: none;
opacity: 0.75;
}

0 comments on commit 19e4f6e

Please sign in to comment.