%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.248 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/eoffice/frontend/web/assets/3444cefd/build/ |
Upload File : |
// Datepicker standalone .less buildfile. Includes all necessary mixins/variables/rules from bootstrap // and imports the included datepicker.less to output a minimal standalone datepicker.css // // Usage: // lessc build_standalone.less datepicker.css // // Variables, mixins, and rules copied from bootstrap 2.0.2 @import "build.less"; // Dropdown css @zindexDropdown: 1000; @grayDark: #333; @baseLineHeight: 18px; @tableBackground: transparent; // overall background-color @dropdownBackground: @white; @dropdownBorder: rgba(0,0,0,.2); @dropdownLinkColor: @grayDark; @dropdownLinkColorHover: @white; @dropdownLinkBackgroundHover: @linkColor; // Drop shadows .box-shadow(@shadow) { -webkit-box-shadow: @shadow; -moz-box-shadow: @shadow; box-shadow: @shadow; } // The dropdown menu (ul) // ---------------------- .datetimepicker.dropdown-menu { position: absolute; top: 100%; left: 0; z-index: @zindexDropdown; float: left; display: none; // none by default, but block on "open" of the menu min-width: 160px; list-style: none; background-color: @dropdownBackground; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,.2); .border-radius(5px); .box-shadow(0 5px 10px rgba(0,0,0,.2)); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; *border-right-width: 2px; *border-bottom-width: 2px; // Normally inherited from bootstrap's `body` color: #333333; font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; font-size:13px; line-height: @baseLineHeight; th, td { padding: 4px 5px; } } // Alternative arrows // May require `charset="UTF-8"` in your `<link>` tag .datetimepicker { .prev, .next {font-style:normal;} .prev:after {content:"«";} .next:after {content:"»";} }