jqh 5 anos atrás
pai
commit
4734a87f56

+ 1 - 1
resources/assets/dcat/sass/components/_box.scss

@@ -1,6 +1,6 @@
 .box {
   position: relative;
-  border-radius: .4rem;
+  border-radius: .5rem;
   background: #ffffff;
   border-top: 2px solid transparent;
   margin-bottom: 10px;

+ 0 - 1
resources/assets/dcat/sass/components/_card.scss

@@ -1,6 +1,5 @@
 .card {
   box-shadow: $shadow;
-  border-radius: .4rem;
 }
 
 .card.dcat-box {

+ 6 - 0
resources/assets/dcat/sass/components/_layer.scss

@@ -1,5 +1,6 @@
 .layui-layer {
   box-shadow: 0 2px 4px 0 rgba(0,0,0,.2)!important;
+  border-radius: .5rem!important;
 }
 
 .layui-layer-title {
@@ -11,6 +12,7 @@
   text-transform: capitalize;
   overflow: hidden;
   background-color: #fff!important;
+  border-radius: .5rem .5rem 0 0!important;
 }
 .layui-layer-setwin .layui-layer-min cite {
   background: transparent!important;
@@ -70,3 +72,7 @@
   background-color: $primary!important;
   color: $white!important;
 }
+
+.layui-layer-border {
+  border: 0!important;
+}

+ 1 - 1
resources/assets/dcat/sass/components/_table.scss

@@ -39,7 +39,7 @@ table.data-list-view.dataTable, table.data-thumb-view.dataTable {
 }
 table.data-list-view.dataTable tbody tr:hover, table.data-thumb-view.dataTable tbody tr:hover {
   transform: none;
-  background: #fafafa;
+  background: $dark20;
 }
 
 .table td {

+ 8 - 3
resources/dist/dcat/css/dcat-app.css

@@ -2081,7 +2081,7 @@ table.data-thumb-view.dataTable {
 table.data-list-view.dataTable tbody tr:hover,
 table.data-thumb-view.dataTable tbody tr:hover {
   transform: none;
-  background: #fafafa;
+  background: #f6fbff;
 }
 
 .table td {
@@ -2294,7 +2294,6 @@ table.dataTable.complex-headers tfoot td {
 
 .card {
   box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
-  border-radius: 0.4rem;
 }
 
 .card.dcat-box .card-header {
@@ -2352,6 +2351,7 @@ table.dataTable.complex-headers tfoot td {
 
 .layui-layer {
   box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2) !important;
+  border-radius: 0.5rem !important;
 }
 
 .layui-layer-title {
@@ -2363,6 +2363,7 @@ table.dataTable.complex-headers tfoot td {
   text-transform: capitalize;
   overflow: hidden;
   background-color: #fff !important;
+  border-radius: 0.5rem 0.5rem 0 0 !important;
 }
 
 .layui-layer-setwin .layui-layer-min cite {
@@ -2427,6 +2428,10 @@ table.dataTable.complex-headers tfoot td {
   color: #fff !important;
 }
 
+.layui-layer-border {
+  border: 0 !important;
+}
+
 .customizer {
   width: 450px;
   right: -450px;
@@ -2520,7 +2525,7 @@ table.dataTable.complex-headers tfoot td {
 
 .box {
   position: relative;
-  border-radius: 0.4rem;
+  border-radius: 0.5rem;
   background: #ffffff;
   border-top: 2px solid transparent;
   margin-bottom: 10px;

+ 1 - 1
resources/views/tree/branch.blade.php

@@ -11,7 +11,7 @@
             @endif
 
             @if($useDelete)
-            <a href="javascript:void(0);" data-url="{{ $path }}/{{ $branch[$keyName] }}" data-action="delete"><i class="feather icon-trash-2"></i></a>
+            <a href="javascript:void(0);" data-url="{{ $path }}/{{ $branch[$keyName] }}" data-action="delete"><i class="feather icon-trash"></i></a>
             @endif
         </span>
     </div>

+ 1 - 1
src/Grid/Displayers/Actions.php

@@ -280,7 +280,7 @@ EOF;
     {
         return <<<EOT
 <a href="javascript:void(0);" data-url="{$this->resource()}/{$this->getKey()}" data-action="delete">
-    <i class="feather icon-trash-2 grid-action-icon"></i>
+    <i class="feather icon-trash grid-action-icon"></i>
 </a>&nbsp;
 EOT;
     }

+ 1 - 1
src/SimpleGrid.php

@@ -22,7 +22,7 @@ class SimpleGrid extends Grid
         $this->rowSelector()->click();
 
         Content::composing(function (Content $content) {
-            Admin::style('#app{padding: 1rem}');
+            Admin::style('#app{padding: 1.4rem 1rem 1rem}');
 
             $content->full();
         }, true);