mirror of
https://github.com/godotengine/godot-prs-by-file.git
synced 2025-12-31 21:48:29 +03:00
Make sure images can be fetched in subfolders
This commit is contained in:
@@ -50,10 +50,10 @@ export default class FileItem extends LitElement {
|
||||
min-width: 16px;
|
||||
}
|
||||
:host .file-icon--folder {
|
||||
background-image: url('/folder.svg');
|
||||
background-image: url('folder.svg');
|
||||
}
|
||||
:host .file-icon--file {
|
||||
background-image: url('/file.svg');
|
||||
background-image: url('file.svg');
|
||||
filter: brightness(0.5);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ export default class RootItem extends LitElement {
|
||||
}
|
||||
|
||||
:host .root-icon {
|
||||
background-image: url('/filesystem.svg');
|
||||
background-image: url('filesystem.svg');
|
||||
background-size: cover;
|
||||
border-radius: 2px;
|
||||
display: inline-block;
|
||||
|
||||
@@ -50,7 +50,7 @@ export default class PullFilter extends LitElement {
|
||||
bottom: 0;
|
||||
width: 36px;
|
||||
background-color: var(--g-background-extra-color);
|
||||
background-image: url('/remove.svg');
|
||||
background-image: url('remove.svg');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 20px 20px;
|
||||
|
||||
Reference in New Issue
Block a user