- client: show tooltips on tap for mobile devices

This commit is contained in:
Ildar Kamalov
2020-07-24 16:11:45 +03:00
parent 946bda37a3
commit dd2c9d96e7
5 changed files with 55 additions and 27 deletions

View File

@@ -62,6 +62,7 @@ export const CHECK_TIMEOUT = 1000;
export const SUCCESS_TOAST_TIMEOUT = 5000;
export const FAILURE_TOAST_TIMEOUT = 30000;
export const HIDE_TOOLTIP_DELAY = 300;
export const HIDE_TOOLTIP_CLICK_DELAY = 100;
export const MODAL_OPEN_TIMEOUT = 150;
export const UNSAFE_PORTS = [
@@ -472,6 +473,7 @@ export const FORM_NAME = {
CACHE: 'cache',
};
export const smallScreenSize = 767;
export const SMALL_SCREEN_SIZE = 767;
export const MEDIUM_SCREEN_SIZE = 1023;
export const SECONDS_IN_HOUR = 60 * 60;