HEX

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
Server: Apache
System: Linux 4.19.0-0.bpo.9-amd64 x86_64 at red40
User: u547966 (5490)
PHP: 5.3.29-mh2
Disabled: syslog, dl, popen, proc_open, proc_nice, proc_get_status, proc_close, proc_terminate, posix_mkfifo, chown, chgrp, accelerator_reset, opcache_reset, accelerator_get_status, opcache_get_status, 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_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority
Upload Files
File: /home/u547966/brikov.ru/www/wp-content/plugins/foogallery/freemius/assets/scss/admin/_tooltip.scss
.fs-tooltip-trigger
{
    &:not(a)
    {
        cursor: help;
    }

    position: relative;

    .fs-tooltip
    {
        opacity:       0;
        visibility:    hidden;
        @include transition(opacity 0.3s ease-in-out);
        position:      absolute;
        background:    $tooltip-bkg-color;
        color:         $tooltip-color;
        font-family:   'arial', serif;
        font-size:     12px;
        padding:       10px;
        z-index:       999999;
        bottom:        100%;
        margin-bottom: 5px;
        left:          0;
        right:         0;
        @include border-radius(5px);
        @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
        line-height:   1.3em;
        font-weight:   bold;
        text-align:    left;

        .rtl &
        {
            text-align: right;
        }

        &::after
        {
            content:      ' ';
            display:      block;
            width:        0;
            height:       0;
            border-style: solid;
            border-width: 5px 5px 0 5px;
            border-color: $tooltip-bkg-color transparent transparent transparent;
            position:     absolute;
            top:          100%;
            left:         21px;

            .rtl &
            {
                right: 21px;
                left:  auto;
            }
        }
    }

    &:hover
    {
        .fs-tooltip
        {
            visibility: visible;
            opacity:    1;
        }
    }
}