HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprm_old/wp-content/themes/ronneby/assets/less.lib/admin/vc-tooltip.less
/* 
    Created on : 26.10.2016, 13:55:58
    Author     : DFD
	Styles for : Visual Composer backend tooltip
*/
.dfd-vc-toolip {
	.rel();
	.clearfix();
	float: left;
	> i {
		font-size: 12px;
		font-style: normal;
		.rel();
		bottom: 1px;
		text-align: center;
		padding: 0 6px;
		margin-right: 8px;
		color: #ffffff;
		&:before {
			content: "?";
			.rel();
			z-index: 1;
		}
		&:after {
			content: "";
			.block();
			width: 16px;
			height: 16px;
			.abs();
			top: 50%;
			left: 50%;
			margin-top: -8px;
			margin-left: -8px;
			background: #c9c9c9;
			.rounded(50%);
			z-index: 0;
		}
	}
	span.dfd-vc-tooltip-text {
		font-size: 13px;
		font-weight: normal;
		text-transform: none;
		.abs();
		bottom: 100%;
		left: 0;
		margin-bottom: 10px;
		min-width: 200px;
		padding: 15px;
		color: #ffffff;
		background: #333333;
		.rounded(6px);
		opacity: 0;
		visibility: hidden;
		z-index: 9;
		.transition(~"opacity .3s ease .3s, visibility .3s ease .3s");
		&:before {
			content: "";
			position: absolute;
			top: 100%;
			left: 10px;
			display: block;
			border: 3px solid transparent;
			border-top: 2px solid #383838;
			border-left: 2px solid #383838;
		}
	}
	&:hover {
		span.dfd-vc-tooltip-text {
			opacity: 1;
			visibility: visible;
		}
	}
	&.tooltip-bottom {
		span.dfd-vc-tooltip-text {
			top: 100%;
			bottom: auto;
			margin-top: 10px;
			margin-bottom: 0;
			&:before {
				top: auto;
				bottom: 100%;
				border-top: 3px solid transparent;
				border-bottom: 2px solid #383838;
			}
		}
	}
}