Commit 867804573562ef0ac5acf470420b97e43488ccde

Michael Schmidt 2020-01-06T20:09:40

Added missing `.token` selector (#2161) This fixes lone `.namespace` rules without the .token component selector some themes had.

diff --git a/themes/prism-coy.css b/themes/prism-coy.css
index 5118dca..2d873dc 100644
--- a/themes/prism-coy.css
+++ b/themes/prism-coy.css
@@ -178,7 +178,7 @@ pre[class*="language-"]:after {
 	cursor: help;
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }
 
diff --git a/themes/prism-dark.css b/themes/prism-dark.css
index 73387bf..ea98cd1 100644
--- a/themes/prism-dark.css
+++ b/themes/prism-dark.css
@@ -70,7 +70,7 @@ pre[class*="language-"] {
 	opacity: .7;
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }
 
diff --git a/themes/prism-funky.css b/themes/prism-funky.css
index d30d912..21a8941 100644
--- a/themes/prism-funky.css
+++ b/themes/prism-funky.css
@@ -59,7 +59,7 @@ code[class*="language-"] {
 	color: #999;
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }
 
diff --git a/themes/prism-okaidia.css b/themes/prism-okaidia.css
index 767417b..fcb5fc4 100644
--- a/themes/prism-okaidia.css
+++ b/themes/prism-okaidia.css
@@ -59,7 +59,7 @@ pre[class*="language-"] {
 	color: #f8f8f2;
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }
 
diff --git a/themes/prism-solarizedlight.css b/themes/prism-solarizedlight.css
index 6c4715e..65e4a65 100644
--- a/themes/prism-solarizedlight.css
+++ b/themes/prism-solarizedlight.css
@@ -91,7 +91,7 @@ pre[class*="language-"] {
 	color: #586e75; /* base01 */
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }
 
diff --git a/themes/prism-twilight.css b/themes/prism-twilight.css
index 662df42..941d6d7 100644
--- a/themes/prism-twilight.css
+++ b/themes/prism-twilight.css
@@ -85,7 +85,7 @@ code[class*="language-"]::selection, code[class*="language-"] ::selection {
 	opacity: .7;
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }
 
diff --git a/themes/prism.css b/themes/prism.css
index ec469f0..618a412 100644
--- a/themes/prism.css
+++ b/themes/prism.css
@@ -77,7 +77,7 @@ pre[class*="language-"] {
 	color: #999;
 }
 
-.namespace {
+.token.namespace {
 	opacity: .7;
 }