GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/themes/stable/css/image/editors/ |
Upload File : |
/** * @file * Functional styles for the Image module's in-place editor. */ /** * A minimum width/height is required so that users can drag and drop files * onto small images. */ .quickedit-image-element { min-width: 200px; min-height: 200px; } .quickedit-image-dropzone { display: flex; flex-direction: column; align-items: center; justify-content: center; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .quickedit-image-icon { display: block; width: 50px; height: 50px; background-repeat: no-repeat; background-size: cover; } .quickedit-image-field-info { display: flex; align-items: center; justify-content: flex-end; } .quickedit-image-text { display: block; } /** * If we do not prevent pointer-events for child elements, our drag+drop events * will not fire properly. This can lead to unintentional redirects if a file * is dropped on a child element when a user intended to upload it. */ .quickedit-image-dropzone * { pointer-events: none; }