Co-authored-by: Alexandre Díaz <alexandre.diaz@tecnativa.com>
Ensure that the title is displayed while the user holds the mouse click (while selecting content)
[FIX] Display of long search result items in mobile
[IMP] AppMenu searchbar style
[IMP] Add vertical padding to icons, to increase separation
[IMP] Add focus style on app icons
[IMP] Prevent user selection on menu
[IMP] Prevent dragging the menues
scss file to change ui variables easily
Deleted unnecesary padding
remove unnecesary styles
unnecesary styles
align menu items to left again
search results styles and fixes
prettier configuration fix
newline at end of file (variables.scss)
text color calculation for navbar
fix in img url
requested fixes
Transitions and focus fixes
fix in js settimeout
margin added in search-container
Fix in transition
Co-authored-by: Jairo Llopis <Yajo@users.noreply.github.com>
Remove duplicated css
Previous of this commit, AppDrawer closes when the action have an id
that is defined in a menu item and no rpc calls are running.
Now AppDrawer closes in a more generic way, is enough that a
controller is attached to consider that the AppDrawer needs to be
closed.
This patch fixes#1251.
The keydown event is faked in mobile chrome because it's not something reliable due to today's virtual keyboards prediction features. Typing a <kbd>C</kbd> character doesn't mean it will be there when user uses autocorrection/autoguessing.
Instead of that, we use now the `keydown` event exclusively for movement features, and `input` event exclusively for content changes in the search input element.
Apart from fixing search in mobile Chrome, it also makes code more readable.
The search input also disables autocompletion since it would be useless and annoying here.