summaryrefslogtreecommitdiff
path: root/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-04-03 18:25:24 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-04-03 18:25:24 +0200
commit8c63d66265ec3ef8c90f15bf908ded424f80e7de (patch)
tree5cdcaaf292cde0c1c053ee8ebf16b307ec623c06 /src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css
parent296e95083b0d4defda03f910b0f2c653c4745f85 (diff)
downloadscala-8c63d66265ec3ef8c90f15bf908ded424f80e7de.tar.gz
scala-8c63d66265ec3ef8c90f15bf908ded424f80e7de.tar.bz2
scala-8c63d66265ec3ef8c90f15bf908ded424f80e7de.zip
Fix incorrect svg on objects with companion traits
Diffstat (limited to 'src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css')
-rw-r--r--src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css
index def2da65e7..f222749dd2 100644
--- a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css
+++ b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.css
@@ -216,18 +216,22 @@ span.symbol > a {
background: url("class.svg") no-repeat center;
}
-.big-circle.cl.companion {
+.big-circle.class-companion-object {
background: url("class_comp.svg") no-repeat center;
}
-.big-circle.ob.companion {
+.big-circle.object-companion-class {
background: url("object_comp.svg") no-repeat center;
}
-.big-circle.tr.companion {
+.big-circle.trait-companion-object {
background: url("trait_comp.svg") no-repeat center;
}
+.big-circle.object-companion-trait {
+ background: url("object_comp_trait.svg") no-repeat center;
+}
+
.big-circle.object {
background: url("object.svg") no-repeat center;
}