Skip to content

Commit

Permalink
Fixing path issue in scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
Baas-hub committed Aug 21, 2022
1 parent 9b2f856 commit d74ac17
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
24 changes: 12 additions & 12 deletions src/dotnet/APIView/APIViewWeb/Client/css/java.scss
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
.icon-assembly {
background: url(icons/java/common/assembly.svg) center left no-repeat !important;
background: url(/icons/java/common/assembly.svg) center left no-repeat !important;
}

.icon-gradle {
background: url(icons/java/common/gradle.svg) center left no-repeat !important;
background: url(/icons/java/common/gradle.svg) center left no-repeat !important;
}

.icon-maven {
background: url(icons/java/common/maven.svg) center left no-repeat !important;
background: url(/icons/java/common/maven.svg) center left no-repeat !important;
}

.icon-package {
background: url(icons/java/common/package.svg) center left no-repeat !important;
background: url(/icons/java/common/package.svg) center left no-repeat !important;
}

.icon-spring {
background: url(icons/java/common/spring.svg) center left no-repeat !important;
background: url(/icons/java/common/spring.svg) center left no-repeat !important;
}

.icon-unknown {
background: url(icons/java/common/unknown.svg) center left no-repeat !important;
background: url(/icons/java/common/unknown.svg) center left no-repeat !important;
}

.icon-xamarinAndroid {
background: url(icons/java/common/xamarinAndroid.svg) center left no-repeat !important;
background: url(/icons/java/common/xamarinAndroid.svg) center left no-repeat !important;
}

.icon-annotation {
background: url(icons/java/java/annotation.svg) center left no-repeat !important;
background: url(/icons/java/java/annotation.svg) center left no-repeat !important;
}

.icon-class {
background: url(icons/java/java/class.svg) center left no-repeat !important;
background: url(/icons/java/java/class.svg) center left no-repeat !important;
}

.icon-enum {
background: url(icons/java/java/enum.svg) center left no-repeat !important;
background: url(/icons/java/java/enum.svg) center left no-repeat !important;
}

.icon-interface {
background: url(icons/java/java/interface.svg) center left no-repeat !important;
background: url(/icons/java/java/interface.svg) center left no-repeat !important;
}

.icon-java_module {
background: url(icons/java/common/module.svg) center left no-repeat !important;
background: url(/icons/java/common/module.svg) center left no-repeat !important;
}
32 changes: 16 additions & 16 deletions src/dotnet/APIView/APIViewWeb/Client/css/kotlin.scss
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
.icon-assembly {
background: url(icons/java/common/assembly.svg) center left no-repeat !important;
background: url(/icons/java/common/assembly.svg) center left no-repeat !important;
}

.icon-gradle {
background: url(icons/java/common/gradle.svg) center left no-repeat !important;
background: url(/icons/java/common/gradle.svg) center left no-repeat !important;
}

.icon-maven {
background: url(icons/java/common/maven.svg) center left no-repeat !important;
background: url(/icons/java/common/maven.svg) center left no-repeat !important;
}

.icon-package {
background: url(icons/java/common/package.svg) center left no-repeat !important;
background: url(/icons/java/common/package.svg) center left no-repeat !important;
}

.icon-spring {
background: url(icons/java/common/spring.svg) center left no-repeat !important;
background: url(/icons/java/common/spring.svg) center left no-repeat !important;
}

.icon-unknown {
background: url(icons/java/common/unknown.svg) center left no-repeat !important;
background: url(/icons/java/common/unknown.svg) center left no-repeat !important;
}

.icon-xamarinAndroid {
background: url(icons/java/common/xamarinAndroid.svg) center left no-repeat !important;
background: url(/icons/java/common/xamarinAndroid.svg) center left no-repeat !important;
}

.icon-annotation {
background: url(icons/java/kotlin/annotation.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/annotation.svg) center left no-repeat !important;
}

.icon-class {
background: url(icons/java/kotlin/class.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/class.svg) center left no-repeat !important;
}

.icon-enum {
background: url(icons/java/kotlin/enum.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/enum.svg) center left no-repeat !important;
}

.icon-interface {
background: url(icons/java/kotlin/interface.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/interface.svg) center left no-repeat !important;
}

.icon-function {
background: url(icons/java/kotlin/function.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/function.svg) center left no-repeat !important;
}

.icon-kotlinLanguage {
background: url(icons/java/kotlin/kotlinLanguage.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/kotlinLanguage.svg) center left no-repeat !important;
}

.icon-object {
background: url(icons/java/kotlin/object.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/object.svg) center left no-repeat !important;
}

.icon-property {
background: url(icons/java/kotlin/property.svg) center left no-repeat !important;
background: url(/icons/java/kotlin/property.svg) center left no-repeat !important;
}

.icon-java_module {
background: url(icons/java/common/module.svg) center left no-repeat !important;
background: url(/icons/java/common/module.svg) center left no-repeat !important;
}

0 comments on commit d74ac17

Please sign in to comment.