scratch – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 office 1 /***
2 Styles below are only required if you're using <iframe> fallback in
3 addition to HTML5 drag & drop (only working in Firefox/Chrome).
4 ***/
5  
6 /* Essential FileDrop zone element configuration: */
7 .fd-zone {
8 position: relative;
9 overflow: hidden;
10 }
11  
12 /* Hides <input type="file"> while simulating "Browse" button: */
13 .fd-file {
14 opacity: 0;
15 position: absolute;
16 z-index: 1;
17 cursor: pointer;
18 filter: alpha(opacity=0);
19 font-family: sans-serif;w
20 }
21  
22 /* Provides visible feedback when use drags a file over the drop zone: */
23 .fd-zone.over {
24 background: #eee;
25 }