mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
29 lines
594 B
CSS
29 lines
594 B
CSS
|
/**
|
||
|
* @provides diffusion-icons-css
|
||
|
*/
|
||
|
|
||
|
.diffusion-path-icon {
|
||
|
display: block;
|
||
|
padding-left: 28px;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: 1px 1px;
|
||
|
height: 18px;
|
||
|
padding-top: 1px;
|
||
|
}
|
||
|
|
||
|
.diffusion-path-icon-ext {
|
||
|
background-image: url(/rsrc/image/icon/fatcow/folder_go.png);
|
||
|
}
|
||
|
|
||
|
.diffusion-path-icon-dir {
|
||
|
background-image: url(/rsrc/image/icon/fatcow/folder.png);
|
||
|
}
|
||
|
|
||
|
.diffusion-path-icon-file {
|
||
|
background-image: url(/rsrc/image/icon/fatcow/page_white_text.png);
|
||
|
}
|
||
|
|
||
|
.diffusion-path-icon-link {
|
||
|
background-image: url(/rsrc/image/icon/fatcow/page_white_link.png);
|
||
|
}
|