summaryrefslogtreecommitdiff
path: root/frontend/beta/css/yui-extensions/resizable.css
Unidiff
Diffstat (limited to 'frontend/beta/css/yui-extensions/resizable.css') (more/less context) (show whitespace changes)
-rw-r--r--frontend/beta/css/yui-extensions/resizable.css160
1 files changed, 160 insertions, 0 deletions
diff --git a/frontend/beta/css/yui-extensions/resizable.css b/frontend/beta/css/yui-extensions/resizable.css
new file mode 100644
index 0000000..46fef2a
--- a/dev/null
+++ b/frontend/beta/css/yui-extensions/resizable.css
@@ -0,0 +1,160 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29.yresizable-handle {
30 position:absolute;
31 z-index:100;
32 /* ie needs these */
33 font-size:1px;
34 line-height:6px;
35 overflow:hidden;
36 background:white;
37 filter:alpha(opacity=0);
38 opacity:0;
39 zoom:1;
40}
41.yresizable-handle-east{
42 width:6px;
43 cursor:e-resize;
44 right:0px;
45 top:0px;
46 height:100%;
47 margin-right:-1px; /*IE rounding error*/
48}
49.yresizable-handle-south{
50 width:100%;
51 cursor:s-resize;
52 left:0px;
53 bottom:0px;
54 height:6px;
55 margin-bottom:-1px; /*IE rounding error*/
56}
57.yresizable-handle-west{
58 width:6px;
59 cursor:w-resize;
60 left:0px;
61 top:0px;
62 height:100%;
63}
64.yresizable-handle-north{
65 width:100%;
66 cursor:n-resize;
67 left:0px;
68 top:0px;
69 height:6px;
70}
71.yresizable-handle-southeast{
72 width:6px;
73 cursor:se-resize;
74 right:0px;
75 bottom:0px;
76 height:6px;
77 z-index:101;
78}
79.yresizable-handle-northwest{
80 width:6px;
81 cursor:nw-resize;
82 left:0px;
83 top:0px;
84 height:6px;
85 z-index:101;
86}
87.yresizable-handle-northeast{
88 width:6px;
89 cursor:ne-resize;
90 right:0px;
91 top:0px;
92 height:6px;
93 z-index:101;
94}
95.yresizable-handle-southwest{
96 width:6px;
97 cursor:sw-resize;
98 left:0px;
99 bottom:0px;
100 height:6px;
101 z-index:101;
102}
103.yresizable-over .yresizable-handle, .yresizable-pinned .yresizable-handle{
104 filter:alpha(opacity=100);
105 opacity:1;
106}
107.yresizable-over .yresizable-handle-east, .yresizable-pinned .yresizable-handle-east{
108 background:url(../images/default/sizer/e-handle.gif);
109 background-position: left;
110}
111.yresizable-over .yresizable-handle-west, .yresizable-pinned .yresizable-handle-west{
112 background:url(../images/default/sizer/e-handle.gif);
113 background-position: left;
114}
115.yresizable-over .yresizable-handle-south, .yresizable-pinned .yresizable-handle-south{
116 background:url(../images/default/sizer/s-handle.gif);
117 background-position: top;
118}
119.yresizable-over .yresizable-handle-north, .yresizable-pinned .yresizable-handle-north{
120 background:url(../images/default/sizer/s-handle.gif);
121 background-position: top;
122}
123.yresizable-over .yresizable-handle-southeast, .yresizable-pinned .yresizable-handle-southeast{
124 background:url(../images/default/sizer/corners-sprite.gif);
125 background-position: top left;
126}
127.yresizable-over .yresizable-handle-northwest, .yresizable-pinned .yresizable-handle-northwest{
128 background:url(../images/default/sizer/corners-sprite.gif);
129 background-position:bottom right;
130}
131.yresizable-over .yresizable-handle-northeast, .yresizable-pinned .yresizable-handle-northeast{
132 background:url(../images/default/sizer/corners-sprite.gif);
133 background-position: bottom left;
134}
135.yresizable-over .yresizable-handle-southwest, .yresizable-pinned .yresizable-handle-southwest{
136 background:url(../images/default/sizer/corners-sprite.gif);
137 background-position: top right;
138}
139.yresizable-proxy{
140 border: 1px dashed #6593cf;
141 position:absolute;
142 overflow:hidden;
143 visibility:hidden;
144 left:0;top:0;
145 z-index:1001;
146}
147.yresizable-overlay{
148 width:100%;
149 height:100%;
150 display:none;
151 position:absolute;
152 left:0;
153 top:0;
154 background:white;
155 z-index:20000;
156 -moz-opacity: 0;
157 opacity:0;
158 filter: alpha(opacity=0);
159 border:1px solid red;
160}