Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/dragdropdetector.css
2868 views
1
/*
2
* Copyright 2007 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/*
9
* Styling for the drag drop detector.
10
*
11
* Author: [email protected] (Robby Walker)
12
* Author: [email protected] (Wayne Crosby)
13
*/
14
15
.goog-dragdrop-w3c-editable-iframe {
16
position: absolute;
17
width: 100%;
18
height: 10px;
19
top: -150px;
20
left: 0;
21
z-index: 10000;
22
padding: 0;
23
overflow: hidden;
24
opacity: 0;
25
-moz-opacity: 0;
26
}
27
28
.goog-dragdrop-ie-editable-iframe {
29
width: 100%;
30
height: 5000px;
31
}
32
33
.goog-dragdrop-ie-input {
34
width: 100%;
35
height: 5000px;
36
}
37
38
.goog-dragdrop-ie-div {
39
position: absolute;
40
top: -5000px;
41
left: 0;
42
width: 100%;
43
height: 5000px;
44
z-index: 10000;
45
background-color: white;
46
filter: alpha(opacity=0);
47
overflow: hidden;
48
}
49
50