Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
SeleniumHQ
GitHub Repository: SeleniumHQ/Selenium
Path: blob/trunk/third_party/closure/goog/css/dragdropdetector.css
4083 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
@provide 'goog.css.dragdropdetector';
16
17
.goog-dragdrop-w3c-editable-iframe {
18
position: absolute;
19
width: 100%;
20
height: 10px;
21
top: -150px;
22
left: 0;
23
z-index: 10000;
24
padding: 0;
25
overflow: hidden;
26
opacity: 0;
27
-moz-opacity: 0;
28
}
29
30
.goog-dragdrop-ie-editable-iframe {
31
width: 100%;
32
height: 5000px;
33
}
34
35
.goog-dragdrop-ie-input {
36
width: 100%;
37
height: 5000px;
38
}
39
40
.goog-dragdrop-ie-div {
41
position: absolute;
42
top: -5000px;
43
left: 0;
44
width: 100%;
45
height: 5000px;
46
z-index: 10000;
47
background-color: white;
48
filter: alpha(opacity=0);
49
overflow: hidden;
50
}
51
52