Browse Source

Brompton: Remove `!important` flags from utility classes.

Allan Cole 5 years ago
parent
commit
e9d3d9e170
1 changed files with 34 additions and 34 deletions
  1. 34 34
      brompton/style-editor.css

+ 34 - 34
brompton/style-editor.css

@@ -1029,36 +1029,36 @@ table th,
 	line-height: 1.125;
 }
 
-.has-primary-color[class] {
-	color: #C04239 !important;
+.has-primary-color {
+	color: #C04239;
 }
 
-.has-secondary-color[class] {
-	color: #FFFFFF !important;
+.has-secondary-color {
+	color: #FFFFFF;
 }
 
-.has-foreground-color[class] {
-	color: #252E36 !important;
+.has-foreground-color {
+	color: #252E36;
 }
 
-.has-foreground-light-color[class] {
-	color: #666666 !important;
+.has-foreground-light-color {
+	color: #666666;
 }
 
-.has-foreground-dark-color[class] {
-	color: #474747 !important;
+.has-foreground-dark-color {
+	color: #474747;
 }
 
-.has-background-light-color[class] {
-	color: #CFCDC7 !important;
+.has-background-light-color {
+	color: #CFCDC7;
 }
 
-.has-background-dark-color[class] {
-	color: #B9B6B2 !important;
+.has-background-dark-color {
+	color: #B9B6B2;
 }
 
-.has-background-color[class] {
-	color: #E8E4DD !important;
+.has-background-color {
+	color: #E8E4DD;
 }
 
 .has-background:not(.has-background-background-color) a,
@@ -1066,48 +1066,48 @@ table th,
 	color: currentColor;
 }
 
-.has-primary-background-color[class] {
-	background-color: #C04239 !important;
+.has-primary-background-color {
+	background-color: #C04239;
 	color: #E8E4DD;
 }
 
-.has-primary-background-color[class] {
-	background-color: #C04239 !important;
+.has-primary-background-color {
+	background-color: #C04239;
 	color: #E8E4DD;
 }
 
-.has-secondary-background-color[class] {
-	background-color: #FFFFFF !important;
+.has-secondary-background-color {
+	background-color: #FFFFFF;
 	color: #E8E4DD;
 }
 
-.has-foreground-background-color[class] {
-	background-color: #252E36 !important;
+.has-foreground-background-color {
+	background-color: #252E36;
 	color: #E8E4DD;
 }
 
-.has-foreground-light-background-color[class] {
-	background-color: #666666 !important;
+.has-foreground-light-background-color {
+	background-color: #666666;
 	color: #E8E4DD;
 }
 
-.has-foreground-dark-background-color[class] {
-	background-color: #474747 !important;
+.has-foreground-dark-background-color {
+	background-color: #474747;
 	color: #E8E4DD;
 }
 
-.has-background-light-background-color[class] {
-	background-color: #CFCDC7 !important;
+.has-background-light-background-color {
+	background-color: #CFCDC7;
 	color: #252E36;
 }
 
-.has-background-dark-background-color[class] {
-	background-color: #B9B6B2 !important;
+.has-background-dark-background-color {
+	background-color: #B9B6B2;
 	color: #252E36;
 }
 
-.has-background-background-color[class] {
-	background-color: #E8E4DD !important;
+.has-background-background-color {
+	background-color: #E8E4DD;
 	color: #252E36;
 }