diff onlypaths/theme/css/resizable.css @ 46:26c2b3ad21c7 laserkard

[svn r47] saving progresswww.cinemassacre.com/new/?page_id=30
author rlm
date Sun, 31 Jan 2010 12:33:33 -0500
parents
children
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/onlypaths/theme/css/resizable.css	Sun Jan 31 12:33:33 2010 -0500
     1.3 @@ -0,0 +1,143 @@
     1.4 +/*
     1.5 + * Ext JS Library 2.1
     1.6 + * Copyright(c) 2006-2008, Ext JS, LLC.
     1.7 + * licensing@extjs.com
     1.8 + * 
     1.9 + * http://extjs.com/license
    1.10 + */
    1.11 +
    1.12 +.x-resizable-handle {
    1.13 +    position:absolute;
    1.14 +    z-index:100;
    1.15 +    /* ie needs these */
    1.16 +    font-size:1px;
    1.17 +    line-height:6px;
    1.18 +    overflow:hidden;
    1.19 +	 background:white;
    1.20 +	 filter:alpha(opacity=0);
    1.21 +	 opacity:0;
    1.22 +	 zoom:1;
    1.23 +}
    1.24 +.x-resizable-handle-east{
    1.25 +    width:6px;
    1.26 +    cursor:e-resize;
    1.27 +    right:0;
    1.28 +    top:0;
    1.29 +    height:100%;
    1.30 +}
    1.31 +.ext-ie .x-resizable-handle-east {
    1.32 +      margin-right:-1px; /*IE rounding error*/
    1.33 +}
    1.34 +.x-resizable-handle-south{
    1.35 +    width:100%;
    1.36 +    cursor:s-resize;
    1.37 +    left:0;
    1.38 +    bottom:0;
    1.39 +    height:6px;
    1.40 +}
    1.41 +.ext-ie .x-resizable-handle-south {
    1.42 +     margin-bottom:-1px; /*IE rounding error*/
    1.43 +}
    1.44 +.x-resizable-handle-west{
    1.45 +    width:6px;
    1.46 +    cursor:w-resize;
    1.47 +    left:0;
    1.48 +    top:0;
    1.49 +    height:100%;
    1.50 +}
    1.51 +.x-resizable-handle-north{
    1.52 +    width:100%;
    1.53 +    cursor:n-resize;
    1.54 +    left:0;
    1.55 +    top:0;
    1.56 +    height:6px;
    1.57 +}
    1.58 +.x-resizable-handle-southeast{
    1.59 +    width:6px;
    1.60 +    cursor:se-resize;
    1.61 +    right:0;
    1.62 +    bottom:0;
    1.63 +    height:6px;
    1.64 +    z-index:101;
    1.65 +}
    1.66 +.x-resizable-handle-northwest{
    1.67 +    width:6px;
    1.68 +    cursor:nw-resize;
    1.69 +    left:0;
    1.70 +    top:0;
    1.71 +    height:6px;
    1.72 +    z-index:101;
    1.73 +}
    1.74 +.x-resizable-handle-northeast{
    1.75 +    width:6px;
    1.76 +    cursor:ne-resize;
    1.77 +    right:0;
    1.78 +    top:0;
    1.79 +    height:6px;
    1.80 +    z-index:101;
    1.81 +}
    1.82 +.x-resizable-handle-southwest{
    1.83 +    width:6px;
    1.84 +    cursor:sw-resize;
    1.85 +    left:0;
    1.86 +    bottom:0;
    1.87 +    height:6px;
    1.88 +    z-index:101;
    1.89 +}
    1.90 +.x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle{
    1.91 +    filter:alpha(opacity=100);
    1.92 +	 opacity:1;
    1.93 +}
    1.94 +.x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east{
    1.95 +    background:url(../images/default/sizer/e-handle.gif);
    1.96 +	 background-position: left;
    1.97 +}
    1.98 +.x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west{
    1.99 +    background:url(../images/default/sizer/e-handle.gif);
   1.100 +	 background-position: left;
   1.101 +}
   1.102 +.x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south{
   1.103 +    background:url(../images/default/sizer/s-handle.gif);
   1.104 +    background-position: top;
   1.105 +}
   1.106 +.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{
   1.107 +    background:url(../images/default/sizer/s-handle.gif);
   1.108 +    background-position: top;
   1.109 +}
   1.110 +.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{
   1.111 +    background:url(../images/default/sizer/se-handle.gif);
   1.112 +    background-position: top left;
   1.113 +}
   1.114 +.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{
   1.115 +    background:url(../images/default/sizer/nw-handle.gif);
   1.116 +    background-position:bottom right;
   1.117 +}
   1.118 +.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{
   1.119 +    background:url(../images/default/sizer/ne-handle.gif);
   1.120 +    background-position: bottom left;
   1.121 +}
   1.122 +.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{
   1.123 +    background:url(../images/default/sizer/sw-handle.gif);
   1.124 +    background-position: top right;
   1.125 +}
   1.126 +.x-resizable-proxy{
   1.127 +    border: 1px dashed #3b5a82;
   1.128 +    position:absolute;
   1.129 +    overflow:hidden;
   1.130 +    display:none;
   1.131 +	 left:0;top:0;
   1.132 +    z-index:50000;
   1.133 +}
   1.134 +.x-resizable-overlay{
   1.135 +    width:100%;
   1.136 +	 height:100%;
   1.137 +	 display:none;
   1.138 +	 position:absolute;
   1.139 +	 left:0;
   1.140 +	 top:0;
   1.141 +	 background:white;
   1.142 +	 z-index:200000;
   1.143 +	 -moz-opacity: 0;
   1.144 +    opacity:0;
   1.145 +    filter: alpha(opacity=0);
   1.146 +}