jqh 4 years ago
parent
commit
d7195eff86
2 changed files with 4 additions and 4 deletions
  1. 3 3
      resources/views/form/file.blade.php
  2. 1 1
      src/Console/stubs/extension/view.stub

+ 3 - 3
resources/views/form/file.blade.php

@@ -1,15 +1,15 @@
 <style>
     .webuploader-pick {
-        background-color: @primary;
+        background-color: {!! admin_color()->primary() !!};
     }
 
     .web-uploader .placeholder .flashTip a {
-        color: @primary(-10);
+        color: {!! admin_color()->primary(-10) !!};
     }
 
     .web-uploader .statusBar .upload-progress span.percentage,
     .web-uploader .filelist li p.upload-progress span {
-        background: @primary(-8);
+        background: {!! admin_color()->primary(-8) !!};
     }
 </style>
 

+ 1 - 1
src/Console/stubs/extension/view.stub

@@ -4,7 +4,7 @@
 
 <style>
 	.extension-demo {
-		color: @primary;
+		color: {!! admin_color()->primary() !!};
 	}
 </style>