Fixed image paths in CSS files

CSS should not use external images (to let the offline copy work smoothly), but some resources are still external
This commit is contained in:
Clipperz
2013-01-08 15:55:07 +01:00
parent 758bd68eee
commit 2e9f8124d1
16 changed files with 369 additions and 369 deletions

View File

@@ -96,7 +96,7 @@ refer to http://www.clipperz.com.
background-color:#c3daf9;
}
.ylayout-panel-hd{
background-image: url(../images/default/layout/panel-title-light-bg.gif);
background-image: url(./images/default/layout/panel-title-light-bg.gif);
color: black;
border-bottom:1px solid #98c0f4;
position:relative;
@@ -135,40 +135,40 @@ refer to http://www.clipperz.com.
background-position:center;
}
.ylayout-close{
background-image:url(../images/default/layout/layout-sprite.gif);
background-image:url(./images/default/layout/layout-sprite.gif);
background-repeat: no-repeat;
background-position: 50% -48px;
}
.ylayout-collapse-west,.ylayout-expand-east{
background-image:url(../images/default/layout/layout-sprite.gif);
background-image:url(./images/default/layout/layout-sprite.gif);
background-repeat: no-repeat;
background-position: 50% 0;
}
.ylayout-expand-west,.ylayout-collapse-east{
background-image:url(../images/default/layout/layout-sprite.gif);
background-image:url(./images/default/layout/layout-sprite.gif);
background-repeat: no-repeat;
background-position: 50% -12px;
}
.ylayout-collapse-north,.ylayout-expand-south{
background-image:url(../images/default/layout/layout-sprite.gif);
background-image:url(./images/default/layout/layout-sprite.gif);
background-repeat: no-repeat;
background-position: 50% -24px;
}
.ylayout-expand-north,.ylayout-collapse-south{
background-image:url(../images/default/layout/layout-sprite.gif);
background-image:url(./images/default/layout/layout-sprite.gif);
background-repeat: no-repeat;
background-position: 50% -36px;
}
.ylayout-split-h{
background-image:url(../images/default/sizer/e-handle.gif);
background-image:url(./images/default/sizer/e-handle.gif);
background-position: left;
}
.ylayout-split-v{
background-image:url(../images/default/sizer/s-handle.gif);
background-image:url(./images/default/sizer/s-handle.gif);
background-position: top;
}
.ylayout-panel .ytab-wrap{
background:url(../images/default/layout/gradient-bg.gif);
background:url(./images/default/layout/gradient-bg.gif);
}
.ylayout-panel .yui-ext-tabbody {
background-color:white;
@@ -204,7 +204,7 @@ refer to http://www.clipperz.com.
border: 2px solid #6593cf;
}
.ylayout-panel-proxy {
background-image: url(../images/default/layout/gradient-bg.gif);
background-image: url(./images/default/layout/gradient-bg.gif);
background-color:#c3daf9;
border:1px dashed #6593cf;
z-index:10001;
@@ -222,4 +222,4 @@ refer to http://www.clipperz.com.
-moz-user-select: none;
-khtml-user-select: none;
cursor:default;
}
}