Răsfoiți Sursa

按钮阴影

jqh 5 ani în urmă
părinte
comite
0f8da8b033

+ 8 - 2
resources/assets/dcat/sass/_variables.scss

@@ -54,9 +54,15 @@ $font-color: #414750;
 
 // 常用阴影颜色
 $shadow: 0 2px 4px 0 rgba(0,0,0,.08);
+$shadow-100: 0 3px 1px -2px rgba(0,0,0,.05), 0 2px 2px 0 rgba(0,0,0,.05), 0 1px 5px 1px rgba(0,0,0,.05);
+$shadow-200: 0 3px 1px -2px rgba(0,0,0,.1), 0 2px 2px 0 rgba(0,0,0,.1), 0 1px 5px 1px rgba(0,0,0,.1);
 
-$btn-shadow: 0 3px 1px -2px rgba(0,0,0,.1), 0 2px 2px 0 rgba(0,0,0,.1), 0 1px 5px 1px rgba(0,0,0,.1);
-$btn-shadow-hover: 0 3px 1px -2px rgba(0,0,0,.05), 0 2px 2px 0 rgba(0,0,0,.05), 0 1px 5px 1px rgba(0,0,0,.05);
+$btn-shadow: $shadow-100;
+$btn-shadow-hover: $shadow-200;
+
+$btn-group-btn-shadow: 0 2px 1px 0 rgba(0,0,0,.08);
+//$btn-shadow: 0 3px 1px -2px rgba(0,0,0,.1), 0 2px 2px 0 rgba(0,0,0,.1), 0 1px 5px 1px rgba(0,0,0,.1);
+//$btn-shadow-hover: 0 3px 1px -2px rgba(0,0,0,.05), 0 2px 2px 0 rgba(0,0,0,.05), 0 1px 5px 1px rgba(0,0,0,.05);
 
 
 // body背景颜色

+ 38 - 5
resources/assets/dcat/sass/components/_button.scss

@@ -3,7 +3,22 @@
   font-size: .95rem;
   height: 36px;
   line-height: .7;
-  border-radius: 0.35rem;
+  border-radius: 0.2rem;
+  box-shadow: $shadow-100;
+}
+
+.btn-group {
+  .btn {
+    box-shadow: none;
+  }
+  .btn:not(.btn-white):hover {
+    box-shadow: $shadow-200;
+  }
+  .btn.btn-white {
+    box-shadow: $btn-group-btn-shadow;
+  }
+
+  box-shadow: $shadow-100;
 }
 
 .btn-sm, .btn-group-sm > .btn {
@@ -29,6 +44,7 @@
   background: $white;
   border: 1px solid $custom;
   color: $custom;
+  box-shadow: none;
 }
 
 .btn-outline-custom:hover {
@@ -36,9 +52,26 @@
   color: $custom;
 }
 
-.btn-shadow {
-  box-shadow: $btn-shadow;
+.btn-white:hover {
+  box-shadow: $btn-shadow-hover !important;
+}
+
+.btn-light {
+  border-color: #f0f0f0!important;
+  background-color: #f0f0f0!important;
+  color: #444;
 }
-.btn-shadow:hover {
-  box-shadow: $btn-shadow-hover;
+
+.btn-light:hover {
+  box-shadow: $btn-shadow-hover!important;
+  color: #444!important;
+}
+
+.btn-no-shadow {
+  box-shadow: none;
+}
+
+.btn-outline-primary, .btn-outline-success, .btn-outline-danger, .btn-outline-info, .btn-outline-warning, .btn-outline-dark,
+.btn-flat-primary, .btn-flat-success, .btn-flat-danger, .btn-flat-info, .btn-flat-warning, .btn-flat-dark {
+  box-shadow: none;
 }

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

@@ -1,6 +1,3 @@
 .card {
   box-shadow: $shadow;
-}
-.card .card-header {
-  justify-content: normal;
 }

+ 1 - 1
resources/assets/sass/core/mixins/main-menu-mixin.scss

@@ -71,7 +71,7 @@
     $main-menu-top-open-color:          darken($theme-color, 10%);
     $main-menu-top-open-bg:             darken($theme-bg, 4%);
     $main-menu-top-open-hover-bg:       darken($theme-bg, 6%);
-    $main-menu-top-open-head-bg:        darken($theme-bg, 4%);
+    $main-menu-top-open-head-bg:        darken($theme-bg, 3%);
 
     $main-menu-active-color:            lighten($theme-color, 10%);
     $main-menu-active-bg:               darken($theme-bg, 4%);

+ 1 - 1
resources/assets/sass/core/variables/_variables.scss

@@ -25,7 +25,7 @@ $black: #22292f;
 //$indigo: #4d5ec1;
 $indigo: #5c6bc6;
 
-$blue: #00cfe8; //$info
+$blue: #3085d6; //$info
 $red: #ea5455; //$danger
 $orange: #ff9f43; //$warning
 $green: #21b978; //$success

+ 2 - 2
resources/dist/css/bootstrap-extended.css

@@ -212,7 +212,7 @@ pre code {
 
 .table-inverse {
   color: #fff;
-  background-color: #00cfe8;
+  background-color: #3085d6;
 }
 
 .table-hover-animation {
@@ -3843,7 +3843,7 @@ _:-ms-lang(x),
 }
 
 .modal .modal-header.bg-info .close span {
-  color: #00cfe8;
+  color: #3085d6;
 }
 
 .modal .modal-header.bg-danger .close span {

+ 44 - 44
resources/dist/css/bootstrap.css

@@ -15,7 +15,7 @@
  */
 
 :root {
-  --blue: #00cfe8;
+  --blue: #3085d6;
   --indigo: #5c6bc6;
   --purple: #6f42c1;
   --pink: #e83e8c;
@@ -31,7 +31,7 @@
   --primary: #5c6bc6;
   --secondary: #b8c2cc;
   --success: #21b978;
-  --info: #00cfe8;
+  --info: #3085d6;
   --warning: #ff9f43;
   --danger: #ea5455;
   --light: #babfc7;
@@ -1752,23 +1752,23 @@ pre code {
 .table-info,
 .table-info > th,
 .table-info > td {
-  background-color: #b8f2f9;
+  background-color: #c5ddf4;
 }
 
 .table-info th,
 .table-info td,
 .table-info thead th,
 .table-info tbody + tbody {
-  border-color: #7ae6f3;
+  border-color: #93c0ea;
 }
 
 .table-hover .table-info:hover {
-  background-color: #a0eef7;
+  background-color: #b0d0f0;
 }
 
 .table-hover .table-info:hover > td,
 .table-hover .table-info:hover > th {
-  background-color: #a0eef7;
+  background-color: #b0d0f0;
 }
 
 .table-warning,
@@ -2685,40 +2685,40 @@ fieldset:disabled a.btn {
 
 .btn-info {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-info:hover {
   color: #fff;
-  background-color: #00adc2;
-  border-color: #00a1b5;
+  background-color: #2572bb;
+  border-color: #236bb0;
 }
 
 .btn-info:focus,
 .btn-info.focus {
-  box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(79, 151, 220, 0.5);
 }
 
 .btn-info.disabled,
 .btn-info:disabled {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-info:not(:disabled):not(.disabled):active,
 .btn-info:not(:disabled):not(.disabled).active,
 .show > .btn-info.dropdown-toggle {
   color: #fff;
-  background-color: #00a1b5;
-  border-color: #0096a8;
+  background-color: #236bb0;
+  border-color: #2165a5;
 }
 
 .btn-info:not(:disabled):not(.disabled):active:focus,
 .btn-info:not(:disabled):not(.disabled).active:focus,
 .show > .btn-info.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(79, 151, 220, 0.5);
 }
 
 .btn-warning {
@@ -2982,24 +2982,24 @@ fieldset:disabled a.btn {
 }
 
 .btn-outline-info {
-  color: #00cfe8;
-  border-color: #00cfe8;
+  color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-outline-info:hover {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-outline-info:focus,
 .btn-outline-info.focus {
-  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(48, 133, 214, 0.5);
 }
 
 .btn-outline-info.disabled,
 .btn-outline-info:disabled {
-  color: #00cfe8;
+  color: #3085d6;
   background-color: transparent;
 }
 
@@ -3007,14 +3007,14 @@ fieldset:disabled a.btn {
 .btn-outline-info:not(:disabled):not(.disabled).active,
 .show > .btn-outline-info.dropdown-toggle {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-outline-info:not(:disabled):not(.disabled):active:focus,
 .btn-outline-info:not(:disabled):not(.disabled).active:focus,
 .show > .btn-outline-info.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(48, 133, 214, 0.5);
 }
 
 .btn-outline-warning {
@@ -5213,19 +5213,19 @@ a.badge-success.focus {
 
 .badge-info {
   color: #fff;
-  background-color: #00cfe8;
+  background-color: #3085d6;
 }
 
 a.badge-info:hover,
 a.badge-info:focus {
   color: #fff;
-  background-color: #00a1b5;
+  background-color: #236bb0;
 }
 
 a.badge-info:focus,
 a.badge-info.focus {
   outline: 0;
-  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(48, 133, 214, 0.5);
 }
 
 .badge-warning {
@@ -5386,17 +5386,17 @@ a.badge-dark.focus {
 }
 
 .alert-info {
-  color: #107f8f;
-  background-color: #ccf5fa;
-  border-color: #b8f2f9;
+  color: #295986;
+  background-color: #d6e7f7;
+  border-color: #c5ddf4;
 }
 
 .alert-info hr {
-  border-top-color: #a0eef7;
+  border-top-color: #b0d0f0;
 }
 
 .alert-info .alert-link {
-  color: #0b5661;
+  color: #1d3f5f;
 }
 
 .alert-warning {
@@ -5776,20 +5776,20 @@ a.badge-dark.focus {
 }
 
 .list-group-item-info {
-  color: #107f8f;
-  background-color: #b8f2f9;
+  color: #295986;
+  background-color: #c5ddf4;
 }
 
 .list-group-item-info.list-group-item-action:hover,
 .list-group-item-info.list-group-item-action:focus {
-  color: #107f8f;
-  background-color: #a0eef7;
+  color: #295986;
+  background-color: #b0d0f0;
 }
 
 .list-group-item-info.list-group-item-action.active {
   color: #fff;
-  background-color: #107f8f;
-  border-color: #107f8f;
+  background-color: #295986;
+  border-color: #295986;
 }
 
 .list-group-item-warning {
@@ -6767,14 +6767,14 @@ button.bg-success:focus {
 }
 
 .bg-info {
-  background-color: #00cfe8 !important;
+  background-color: #3085d6 !important;
 }
 
 a.bg-info:hover,
 a.bg-info:focus,
 button.bg-info:hover,
 button.bg-info:focus {
-  background-color: #00a1b5 !important;
+  background-color: #236bb0 !important;
 }
 
 .bg-warning {
@@ -6882,7 +6882,7 @@ button.bg-dark:focus {
 }
 
 .border-info {
-  border-color: #00cfe8 !important;
+  border-color: #3085d6 !important;
 }
 
 .border-warning {
@@ -11569,12 +11569,12 @@ a.text-success:focus {
 }
 
 .text-info {
-  color: #00cfe8 !important;
+  color: #3085d6 !important;
 }
 
 a.text-info:hover,
 a.text-info:focus {
-  color: #008b9c !important;
+  color: #1f5e9b !important;
 }
 
 .text-warning {

Fișier diff suprimat deoarece este prea mare
+ 239 - 239
resources/dist/css/colors.css


+ 2 - 2
resources/dist/css/components.css

@@ -474,7 +474,7 @@ body.fixed-footer footer.footer-dark {
 .main-menu.menu-light .navigation > li.open > a,
 .main-menu.menu-light .navigation > li.sidebar-group-active > a {
   color: #494949;
-  background: whitesmoke;
+  background: #f7f7f7;
   transition: transform 0.25s ease 0s;
   border-radius: 6px;
   margin-bottom: 7px;
@@ -689,7 +689,7 @@ body.fixed-footer footer.footer-dark {
 .main-menu.menu-dark .navigation > li.open > a,
 .main-menu.menu-dark .navigation > li.sidebar-group-active > a {
   color: #c3c3c3;
-  background: #0c102a;
+  background: #0d112e;
   transition: transform 0.25s ease 0s;
   border-radius: 6px;
   margin-bottom: 7px;

+ 2 - 2
resources/dist/css/core/colors/palette-gradient.css

@@ -153,7 +153,7 @@
 .bg-gradient-info {
   background: #640064;
   color: #fff;
-  background-image: linear-gradient(30deg, #00cfe8, rgba(0, 207, 232, 0.5));
+  background-image: linear-gradient(30deg, #3085d6, rgba(48, 133, 214, 0.5));
   background-repeat: repeat-x;
 }
 
@@ -163,7 +163,7 @@
 }
 
 .gradient-light-info {
-  background: linear-gradient(30deg, #00cfe8 0%, #2d91ff 100%);
+  background: linear-gradient(30deg, #3085d6 0%, #5e6cec 100%);
   color: #fff;
 }
 

+ 4 - 4
resources/dist/css/core/colors/palette-noui.css

@@ -118,20 +118,20 @@
 }
 
 .slider-info .noUi-connect {
-  background: #00cfe8 !important;
+  background: #3085d6 !important;
 }
 
 .slider-info.noUi-connect {
-  background: #00cfe8 !important;
+  background: #3085d6 !important;
 }
 
 .slider-info .noUi-handle {
-  border-color: #00cfe8 !important;
+  border-color: #3085d6 !important;
 }
 
 .slider-info.circle-filled .noUi-handle,
 .slider-info.square .noUi-handle {
-  background: #00cfe8 !important;
+  background: #3085d6 !important;
 }
 
 .slider-warning .noUi-connect {

+ 19 - 19
resources/dist/css/plugins/calendars/fullcalendar.css

@@ -175,40 +175,40 @@ fieldset:disabled .fc a.fc-button,
 
 .btn-info {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-info:hover {
   color: #fff;
-  background-color: #00adc2;
-  border-color: #00a1b5;
+  background-color: #2572bb;
+  border-color: #236bb0;
 }
 
 .btn-info:focus,
 .btn-info.focus {
-  box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(79, 151, 220, 0.5);
 }
 
 .btn-info.disabled,
 .btn-info:disabled {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-info:not(:disabled):not(.disabled):active,
 .btn-info:not(:disabled):not(.disabled).active,
 .show > .btn-info.dropdown-toggle {
   color: #fff;
-  background-color: #00a1b5;
-  border-color: #0096a8;
+  background-color: #236bb0;
+  border-color: #2165a5;
 }
 
 .btn-info:not(:disabled):not(.disabled):active:focus,
 .btn-info:not(:disabled):not(.disabled).active:focus,
 .show > .btn-info.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(38, 214, 235, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(79, 151, 220, 0.5);
 }
 
 .btn-warning {
@@ -484,24 +484,24 @@ fieldset:disabled .fc a.fc-button,
 }
 
 .btn-outline-info {
-  color: #00cfe8;
-  border-color: #00cfe8;
+  color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-outline-info:hover {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-outline-info:focus,
 .btn-outline-info.focus {
-  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(48, 133, 214, 0.5);
 }
 
 .btn-outline-info.disabled,
 .btn-outline-info:disabled {
-  color: #00cfe8;
+  color: #3085d6;
   background-color: transparent;
 }
 
@@ -509,14 +509,14 @@ fieldset:disabled .fc a.fc-button,
 .btn-outline-info:not(:disabled):not(.disabled).active,
 .show > .btn-outline-info.dropdown-toggle {
   color: #fff;
-  background-color: #00cfe8;
-  border-color: #00cfe8;
+  background-color: #3085d6;
+  border-color: #3085d6;
 }
 
 .btn-outline-info:not(:disabled):not(.disabled):active:focus,
 .btn-outline-info:not(:disabled):not(.disabled).active:focus,
 .show > .btn-outline-info.dropdown-toggle:focus {
-  box-shadow: 0 0 0 0.2rem rgba(0, 207, 232, 0.5);
+  box-shadow: 0 0 0 0.2rem rgba(48, 133, 214, 0.5);
 }
 
 .btn-outline-warning {

+ 1 - 1
resources/dist/css/plugins/extensions/toastr.css

@@ -26,7 +26,7 @@
 }
 
 .toast-info {
-  background-color: #00cfe8;
+  background-color: #3085d6;
 }
 
 .toast-warning {

+ 36 - 36
resources/dist/css/plugins/loaders/animations/ball-grid-beat.css

@@ -27,66 +27,66 @@
 }
 
 .ball-grid-beat > div:nth-child(1) {
-  -webkit-animation-delay: 0.54s;
-          animation-delay: 0.54s;
-  -webkit-animation-duration: 0.79s;
-          animation-duration: 0.79s;
+  -webkit-animation-delay: 0.09s;
+          animation-delay: 0.09s;
+  -webkit-animation-duration: 0.73s;
+          animation-duration: 0.73s;
 }
 
 .ball-grid-beat > div:nth-child(2) {
-  -webkit-animation-delay: 0.29s;
-          animation-delay: 0.29s;
-  -webkit-animation-duration: 0.78s;
-          animation-duration: 0.78s;
+  -webkit-animation-delay: 0.8s;
+          animation-delay: 0.8s;
+  -webkit-animation-duration: 1.03s;
+          animation-duration: 1.03s;
 }
 
 .ball-grid-beat > div:nth-child(3) {
-  -webkit-animation-delay: 0.55s;
-          animation-delay: 0.55s;
-  -webkit-animation-duration: 1.07s;
-          animation-duration: 1.07s;
+  -webkit-animation-delay: 0.8s;
+          animation-delay: 0.8s;
+  -webkit-animation-duration: 1.11s;
+          animation-duration: 1.11s;
 }
 
 .ball-grid-beat > div:nth-child(4) {
-  -webkit-animation-delay: 0.64s;
-          animation-delay: 0.64s;
-  -webkit-animation-duration: 1.16s;
-          animation-duration: 1.16s;
+  -webkit-animation-delay: 0.01s;
+          animation-delay: 0.01s;
+  -webkit-animation-duration: 0.83s;
+          animation-duration: 0.83s;
 }
 
 .ball-grid-beat > div:nth-child(5) {
-  -webkit-animation-delay: 0.32s;
-          animation-delay: 0.32s;
-  -webkit-animation-duration: 1.54s;
-          animation-duration: 1.54s;
+  -webkit-animation-delay: 0.1s;
+          animation-delay: 0.1s;
+  -webkit-animation-duration: 1.22s;
+          animation-duration: 1.22s;
 }
 
 .ball-grid-beat > div:nth-child(6) {
-  -webkit-animation-delay: -0.07s;
-          animation-delay: -0.07s;
-  -webkit-animation-duration: 1.34s;
-          animation-duration: 1.34s;
+  -webkit-animation-delay: 0.07s;
+          animation-delay: 0.07s;
+  -webkit-animation-duration: 1.2s;
+          animation-duration: 1.2s;
 }
 
 .ball-grid-beat > div:nth-child(7) {
-  -webkit-animation-delay: 0.06s;
-          animation-delay: 0.06s;
-  -webkit-animation-duration: 0.88s;
-          animation-duration: 0.88s;
+  -webkit-animation-delay: 0.77s;
+          animation-delay: 0.77s;
+  -webkit-animation-duration: 0.69s;
+          animation-duration: 0.69s;
 }
 
 .ball-grid-beat > div:nth-child(8) {
-  -webkit-animation-delay: -0.02s;
-          animation-delay: -0.02s;
-  -webkit-animation-duration: 0.81s;
-          animation-duration: 0.81s;
+  -webkit-animation-delay: 0.36s;
+          animation-delay: 0.36s;
+  -webkit-animation-duration: 1.14s;
+          animation-duration: 1.14s;
 }
 
 .ball-grid-beat > div:nth-child(9) {
-  -webkit-animation-delay: 0.56s;
-          animation-delay: 0.56s;
-  -webkit-animation-duration: 1.09s;
-          animation-duration: 1.09s;
+  -webkit-animation-delay: 0.34s;
+          animation-delay: 0.34s;
+  -webkit-animation-duration: 1.01s;
+          animation-duration: 1.01s;
 }
 
 .ball-grid-beat > div {

+ 32 - 32
resources/dist/css/plugins/loaders/animations/ball-grid-pulse.css

@@ -39,15 +39,15 @@
 }
 
 .ball-grid-pulse > div:nth-child(1) {
-  -webkit-animation-delay: 0.14s;
-          animation-delay: 0.14s;
-  -webkit-animation-duration: 1.59s;
-          animation-duration: 1.59s;
+  -webkit-animation-delay: 0.63s;
+          animation-delay: 0.63s;
+  -webkit-animation-duration: 1.5s;
+          animation-duration: 1.5s;
 }
 
 .ball-grid-pulse > div:nth-child(2) {
-  -webkit-animation-delay: 0.36s;
-          animation-delay: 0.36s;
+  -webkit-animation-delay: 0.42s;
+          animation-delay: 0.42s;
   -webkit-animation-duration: 1.32s;
           animation-duration: 1.32s;
 }
@@ -55,50 +55,50 @@
 .ball-grid-pulse > div:nth-child(3) {
   -webkit-animation-delay: 0.65s;
           animation-delay: 0.65s;
-  -webkit-animation-duration: 0.61s;
-          animation-duration: 0.61s;
+  -webkit-animation-duration: 1.28s;
+          animation-duration: 1.28s;
 }
 
 .ball-grid-pulse > div:nth-child(4) {
-  -webkit-animation-delay: 0.13s;
-          animation-delay: 0.13s;
-  -webkit-animation-duration: 1.38s;
-          animation-duration: 1.38s;
+  -webkit-animation-delay: 0.77s;
+          animation-delay: 0.77s;
+  -webkit-animation-duration: 0.64s;
+          animation-duration: 0.64s;
 }
 
 .ball-grid-pulse > div:nth-child(5) {
-  -webkit-animation-delay: -0.05s;
-          animation-delay: -0.05s;
-  -webkit-animation-duration: 0.86s;
-          animation-duration: 0.86s;
+  -webkit-animation-delay: 0.73s;
+          animation-delay: 0.73s;
+  -webkit-animation-duration: 1.1s;
+          animation-duration: 1.1s;
 }
 
 .ball-grid-pulse > div:nth-child(6) {
-  -webkit-animation-delay: 0.77s;
-          animation-delay: 0.77s;
-  -webkit-animation-duration: 0.7s;
-          animation-duration: 0.7s;
+  -webkit-animation-delay: 0.33s;
+          animation-delay: 0.33s;
+  -webkit-animation-duration: 1.48s;
+          animation-duration: 1.48s;
 }
 
 .ball-grid-pulse > div:nth-child(7) {
-  -webkit-animation-delay: 0.09s;
-          animation-delay: 0.09s;
-  -webkit-animation-duration: 0.99s;
-          animation-duration: 0.99s;
+  -webkit-animation-delay: -0.04s;
+          animation-delay: -0.04s;
+  -webkit-animation-duration: 0.75s;
+          animation-duration: 0.75s;
 }
 
 .ball-grid-pulse > div:nth-child(8) {
-  -webkit-animation-delay: 0.61s;
-          animation-delay: 0.61s;
-  -webkit-animation-duration: 1.1s;
-          animation-duration: 1.1s;
+  -webkit-animation-delay: -0.09s;
+          animation-delay: -0.09s;
+  -webkit-animation-duration: 1.52s;
+          animation-duration: 1.52s;
 }
 
 .ball-grid-pulse > div:nth-child(9) {
-  -webkit-animation-delay: 0.34s;
-          animation-delay: 0.34s;
-  -webkit-animation-duration: 1.3s;
-          animation-duration: 1.3s;
+  -webkit-animation-delay: 0.8s;
+          animation-delay: 0.8s;
+  -webkit-animation-duration: 0.97s;
+          animation-duration: 0.97s;
 }
 
 .ball-grid-pulse > div {

+ 16 - 16
resources/dist/css/plugins/loaders/animations/line-scale-random.css

@@ -31,31 +31,31 @@
 }
 
 .line-scale-party > div:nth-child(1) {
-  -webkit-animation-delay: 0s;
-          animation-delay: 0s;
-  -webkit-animation-duration: 0.76s;
-          animation-duration: 0.76s;
+  -webkit-animation-delay: -0.15s;
+          animation-delay: -0.15s;
+  -webkit-animation-duration: 1.17s;
+          animation-duration: 1.17s;
 }
 
 .line-scale-party > div:nth-child(2) {
-  -webkit-animation-delay: 0.79s;
-          animation-delay: 0.79s;
-  -webkit-animation-duration: 0.52s;
-          animation-duration: 0.52s;
+  -webkit-animation-delay: 0.22s;
+          animation-delay: 0.22s;
+  -webkit-animation-duration: 0.38s;
+          animation-duration: 0.38s;
 }
 
 .line-scale-party > div:nth-child(3) {
-  -webkit-animation-delay: 0.12s;
-          animation-delay: 0.12s;
-  -webkit-animation-duration: 1.07s;
-          animation-duration: 1.07s;
+  -webkit-animation-delay: 0.18s;
+          animation-delay: 0.18s;
+  -webkit-animation-duration: 1.16s;
+          animation-duration: 1.16s;
 }
 
 .line-scale-party > div:nth-child(4) {
-  -webkit-animation-delay: 0.3s;
-          animation-delay: 0.3s;
-  -webkit-animation-duration: 1.3s;
-          animation-duration: 1.3s;
+  -webkit-animation-delay: 0.02s;
+          animation-delay: 0.02s;
+  -webkit-animation-duration: 0.93s;
+          animation-duration: 0.93s;
 }
 
 .line-scale-party > div {

+ 86 - 86
resources/dist/css/plugins/loaders/loaders.css

@@ -1454,66 +1454,66 @@
 }
 
 .ball-grid-beat > div:nth-child(1) {
-  -webkit-animation-delay: -0.12s;
-          animation-delay: -0.12s;
-  -webkit-animation-duration: 0.96s;
-          animation-duration: 0.96s;
+  -webkit-animation-delay: -0.15s;
+          animation-delay: -0.15s;
+  -webkit-animation-duration: 1.17s;
+          animation-duration: 1.17s;
 }
 
 .ball-grid-beat > div:nth-child(2) {
-  -webkit-animation-delay: 0.24s;
-          animation-delay: 0.24s;
-  -webkit-animation-duration: 0.81s;
-          animation-duration: 0.81s;
+  -webkit-animation-delay: -0.11s;
+          animation-delay: -0.11s;
+  -webkit-animation-duration: 1.08s;
+          animation-duration: 1.08s;
 }
 
 .ball-grid-beat > div:nth-child(3) {
-  -webkit-animation-delay: 0.11s;
-          animation-delay: 0.11s;
-  -webkit-animation-duration: 1.42s;
-          animation-duration: 1.42s;
+  -webkit-animation-delay: 0.07s;
+          animation-delay: 0.07s;
+  -webkit-animation-duration: 1.32s;
+          animation-duration: 1.32s;
 }
 
 .ball-grid-beat > div:nth-child(4) {
-  -webkit-animation-delay: 0.16s;
-          animation-delay: 0.16s;
-  -webkit-animation-duration: 0.73s;
-          animation-duration: 0.73s;
+  -webkit-animation-delay: 0.12s;
+          animation-delay: 0.12s;
+  -webkit-animation-duration: 0.91s;
+          animation-duration: 0.91s;
 }
 
 .ball-grid-beat > div:nth-child(5) {
-  -webkit-animation-delay: 0.39s;
-          animation-delay: 0.39s;
-  -webkit-animation-duration: 1.45s;
-          animation-duration: 1.45s;
+  -webkit-animation-delay: 0.45s;
+          animation-delay: 0.45s;
+  -webkit-animation-duration: 1.47s;
+          animation-duration: 1.47s;
 }
 
 .ball-grid-beat > div:nth-child(6) {
-  -webkit-animation-delay: -0.02s;
-          animation-delay: -0.02s;
-  -webkit-animation-duration: 1.11s;
-          animation-duration: 1.11s;
+  -webkit-animation-delay: 0.12s;
+          animation-delay: 0.12s;
+  -webkit-animation-duration: 1.35s;
+          animation-duration: 1.35s;
 }
 
 .ball-grid-beat > div:nth-child(7) {
-  -webkit-animation-delay: 0.1s;
-          animation-delay: 0.1s;
-  -webkit-animation-duration: 1.03s;
-          animation-duration: 1.03s;
+  -webkit-animation-delay: 0.75s;
+          animation-delay: 0.75s;
+  -webkit-animation-duration: 1.6s;
+          animation-duration: 1.6s;
 }
 
 .ball-grid-beat > div:nth-child(8) {
-  -webkit-animation-delay: 0.42s;
-          animation-delay: 0.42s;
-  -webkit-animation-duration: 1.55s;
-          animation-duration: 1.55s;
+  -webkit-animation-delay: 0.18s;
+          animation-delay: 0.18s;
+  -webkit-animation-duration: 1.57s;
+          animation-duration: 1.57s;
 }
 
 .ball-grid-beat > div:nth-child(9) {
-  -webkit-animation-delay: 0.17s;
-          animation-delay: 0.17s;
-  -webkit-animation-duration: 1.34s;
-          animation-duration: 1.34s;
+  -webkit-animation-delay: -0.13s;
+          animation-delay: -0.13s;
+  -webkit-animation-duration: 1.16s;
+          animation-duration: 1.16s;
 }
 
 .ball-grid-beat > div {
@@ -1575,66 +1575,66 @@
 }
 
 .ball-grid-pulse > div:nth-child(1) {
-  -webkit-animation-delay: 0.27s;
-          animation-delay: 0.27s;
-  -webkit-animation-duration: 1.01s;
-          animation-duration: 1.01s;
+  -webkit-animation-delay: 0.5s;
+          animation-delay: 0.5s;
+  -webkit-animation-duration: 0.63s;
+          animation-duration: 0.63s;
 }
 
 .ball-grid-pulse > div:nth-child(2) {
-  -webkit-animation-delay: 0.19s;
-          animation-delay: 0.19s;
-  -webkit-animation-duration: 1.14s;
-          animation-duration: 1.14s;
+  -webkit-animation-delay: 0.06s;
+          animation-delay: 0.06s;
+  -webkit-animation-duration: 1.47s;
+          animation-duration: 1.47s;
 }
 
 .ball-grid-pulse > div:nth-child(3) {
-  -webkit-animation-delay: 0.1s;
-          animation-delay: 0.1s;
-  -webkit-animation-duration: 1.11s;
-          animation-duration: 1.11s;
+  -webkit-animation-delay: 0.45s;
+          animation-delay: 0.45s;
+  -webkit-animation-duration: 1.28s;
+          animation-duration: 1.28s;
 }
 
 .ball-grid-pulse > div:nth-child(4) {
   -webkit-animation-delay: 0.44s;
           animation-delay: 0.44s;
-  -webkit-animation-duration: 1.51s;
-          animation-duration: 1.51s;
+  -webkit-animation-duration: 0.84s;
+          animation-duration: 0.84s;
 }
 
 .ball-grid-pulse > div:nth-child(5) {
-  -webkit-animation-delay: 0.74s;
-          animation-delay: 0.74s;
-  -webkit-animation-duration: 1.58s;
-          animation-duration: 1.58s;
+  -webkit-animation-delay: 0.48s;
+          animation-delay: 0.48s;
+  -webkit-animation-duration: 1.57s;
+          animation-duration: 1.57s;
 }
 
 .ball-grid-pulse > div:nth-child(6) {
-  -webkit-animation-delay: 0.05s;
-          animation-delay: 0.05s;
-  -webkit-animation-duration: 0.7s;
-          animation-duration: 0.7s;
+  -webkit-animation-delay: 0.51s;
+          animation-delay: 0.51s;
+  -webkit-animation-duration: 1.39s;
+          animation-duration: 1.39s;
 }
 
 .ball-grid-pulse > div:nth-child(7) {
-  -webkit-animation-delay: 0.43s;
-          animation-delay: 0.43s;
-  -webkit-animation-duration: 1.31s;
-          animation-duration: 1.31s;
+  -webkit-animation-delay: 0.74s;
+          animation-delay: 0.74s;
+  -webkit-animation-duration: 0.94s;
+          animation-duration: 0.94s;
 }
 
 .ball-grid-pulse > div:nth-child(8) {
-  -webkit-animation-delay: 0.11s;
-          animation-delay: 0.11s;
-  -webkit-animation-duration: 0.84s;
-          animation-duration: 0.84s;
+  -webkit-animation-delay: 0.05s;
+          animation-delay: 0.05s;
+  -webkit-animation-duration: 0.81s;
+          animation-duration: 0.81s;
 }
 
 .ball-grid-pulse > div:nth-child(9) {
-  -webkit-animation-delay: 0.51s;
-          animation-delay: 0.51s;
-  -webkit-animation-duration: 1.08s;
-          animation-duration: 1.08s;
+  -webkit-animation-delay: 0.12s;
+          animation-delay: 0.12s;
+  -webkit-animation-duration: 1.5s;
+          animation-duration: 1.5s;
 }
 
 .ball-grid-pulse > div {
@@ -2181,31 +2181,31 @@
 }
 
 .line-scale-party > div:nth-child(1) {
-  -webkit-animation-delay: -0.18s;
-          animation-delay: -0.18s;
-  -webkit-animation-duration: 0.42s;
-          animation-duration: 0.42s;
+  -webkit-animation-delay: -0.02s;
+          animation-delay: -0.02s;
+  -webkit-animation-duration: 0.61s;
+          animation-duration: 0.61s;
 }
 
 .line-scale-party > div:nth-child(2) {
-  -webkit-animation-delay: -0.18s;
-          animation-delay: -0.18s;
-  -webkit-animation-duration: 0.46s;
-          animation-duration: 0.46s;
+  -webkit-animation-delay: 0.71s;
+          animation-delay: 0.71s;
+  -webkit-animation-duration: 1.15s;
+          animation-duration: 1.15s;
 }
 
 .line-scale-party > div:nth-child(3) {
-  -webkit-animation-delay: 0.7s;
-          animation-delay: 0.7s;
-  -webkit-animation-duration: 1.19s;
-          animation-duration: 1.19s;
+  -webkit-animation-delay: 0.56s;
+          animation-delay: 0.56s;
+  -webkit-animation-duration: 0.39s;
+          animation-duration: 0.39s;
 }
 
 .line-scale-party > div:nth-child(4) {
-  -webkit-animation-delay: 0.07s;
-          animation-delay: 0.07s;
-  -webkit-animation-duration: 1.15s;
-          animation-duration: 1.15s;
+  -webkit-animation-delay: 0.22s;
+          animation-delay: 0.22s;
+  -webkit-animation-duration: 0.92s;
+          animation-duration: 0.92s;
 }
 
 .line-scale-party > div {

+ 1 - 1
resources/dist/css/themes/dark-layout.css

@@ -2009,7 +2009,7 @@ body.dark-layout .swal2-container .swal2-modal .swal2-content .swal2-input {
 }
 
 body.dark-layout .toast-container .toast.toast-info {
-  background-color: #00cfe8;
+  background-color: #3085d6;
 }
 
 body.dark-layout .toast-container .toast.toast-success {

+ 49 - 9
resources/dist/dcat/css/app.css

@@ -1743,7 +1743,24 @@ html body .content .content-wrapper {
   font-size: 0.95rem;
   height: 36px;
   line-height: 0.7;
-  border-radius: 0.35rem;
+  border-radius: 0.2rem;
+  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 5px 1px rgba(0, 0, 0, 0.05);
+}
+
+.btn-group {
+  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 5px 1px rgba(0, 0, 0, 0.05);
+}
+
+.btn-group .btn {
+  box-shadow: none;
+}
+
+.btn-group .btn:not(.btn-white):hover {
+  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 1px rgba(0, 0, 0, 0.1);
+}
+
+.btn-group .btn.btn-white {
+  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.08);
 }
 
 .btn-sm,
@@ -1769,6 +1786,7 @@ html body .content .content-wrapper {
   background: #fff;
   border: 1px solid #59a9f8;
   color: #59a9f8;
+  box-shadow: none;
 }
 
 .btn-outline-custom:hover {
@@ -1776,12 +1794,38 @@ html body .content .content-wrapper {
   color: #59a9f8;
 }
 
-.btn-shadow {
-  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 1px rgba(0, 0, 0, 0.1);
+.btn-white:hover {
+  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 1px rgba(0, 0, 0, 0.1) !important;
 }
 
-.btn-shadow:hover {
-  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 5px 1px rgba(0, 0, 0, 0.05);
+.btn-light {
+  border-color: #f0f0f0 !important;
+  background-color: #f0f0f0 !important;
+  color: #444;
+}
+
+.btn-light:hover {
+  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.1), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 1px rgba(0, 0, 0, 0.1) !important;
+  color: #444 !important;
+}
+
+.btn-no-shadow {
+  box-shadow: none;
+}
+
+.btn-outline-primary,
+.btn-outline-success,
+.btn-outline-danger,
+.btn-outline-info,
+.btn-outline-warning,
+.btn-outline-dark,
+.btn-flat-primary,
+.btn-flat-success,
+.btn-flat-danger,
+.btn-flat-info,
+.btn-flat-warning,
+.btn-flat-dark {
+  box-shadow: none;
 }
 
 .pagination .page-item .page-link {
@@ -1927,10 +1971,6 @@ table.data-thumb-view.dataTable tbody tr:hover {
   box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
 }
 
-.card .card-header {
-  justify-content: normal;
-}
-
 .dd-item > button:before {
   font-family: "feather";
   content: "\E844" !important;

+ 1 - 1
resources/views/filter/button.blade.php

@@ -1,4 +1,4 @@
-<div class="btn-group filter-button-group" style="margin-right:3px">
+<div class="btn-group filter-button-group btn-no-shadow" style="margin-right:3px">
     <label class="btn btn-outline-primary {{ $scopes->isNotEmpty() ? 'dropdown-toggle' : '' }} {{ $btn_class }}" @if($only_scopes)data-toggle="dropdown"@endif>
         <i class="feather icon-filter"></i>@if($show_filter_text)<span class="hidden-xs">&nbsp;&nbsp;{{ trans('admin.filter') }}</span>@endif
     </label>

+ 27 - 23
resources/views/tree.blade.php

@@ -1,33 +1,37 @@
 <div class="card-header">
 
-    <div class="btn-group" style="margin-right:3px">
-        <button class="btn btn-primary btn-sm {{ $id }}-tree-tools" data-action="expand">
-            <i class="feather icon-plus-square"></i>&nbsp;<span class="hidden-xs">{{ trans('admin.expand') }}</span>
-        </button>
-        <button class="btn btn-primary btn-sm {{ $id }}-tree-tools" data-action="collapse">
-            <i class="feather icon-minus-square"></i><span class="hidden-xs">&nbsp;{{ trans('admin.collapse') }}</span>
-        </button>
-    </div>
+    <div>
+        <div class="btn-group" style="margin-right:3px">
+            <button class="btn btn-primary btn-sm {{ $id }}-tree-tools" data-action="expand">
+                <i class="feather icon-plus-square"></i>&nbsp;<span class="hidden-xs">{{ trans('admin.expand') }}</span>
+            </button>
+            <button class="btn btn-primary btn-sm {{ $id }}-tree-tools" data-action="collapse">
+                <i class="feather icon-minus-square"></i><span class="hidden-xs">&nbsp;{{ trans('admin.collapse') }}</span>
+            </button>
+        </div>
 
-    @if($useSave)
-    &nbsp;<div class="btn-group" style="margin-right:3px">
-        <button class="btn btn-primary btn-sm {{ $id }}-save" ><i class="feather icon-save"></i><span class="hidden-xs">&nbsp;{{ trans('admin.save') }}</span></button>
-    </div>
-    @endif
+        @if($useSave)
+            &nbsp;<div class="btn-group" style="margin-right:3px">
+                <button class="btn btn-primary btn-sm {{ $id }}-save" ><i class="feather icon-save"></i><span class="hidden-xs">&nbsp;{{ trans('admin.save') }}</span></button>
+            </div>
+        @endif
 
-    @if($useRefresh)
-        &nbsp;<div class="btn-group" style="margin-right:3px">
-        <button class="btn btn-outline-custom btn-sm" data-action="refresh" ><i class="feather icon-refresh-cw"></i><span class="hidden-xs">&nbsp;{{ trans('admin.refresh') }}</span></button>
-    </div>
-    @endif
+        @if($useRefresh)
+            &nbsp;<div class="btn-group" style="margin-right:3px">
+                <button class="btn btn-custom btn-sm" data-action="refresh" ><i class="feather icon-refresh-cw"></i><span class="hidden-xs">&nbsp;{{ trans('admin.refresh') }}</span></button>
+            </div>
+        @endif
 
-    @if($tools)
-    &nbsp;<div class="btn-group" style="margin-right:3px">
-        {!! $tools !!}
+        @if($tools)
+            &nbsp;<div class="btn-group" style="margin-right:3px">
+                {!! $tools !!}
+            </div>
+        @endif
     </div>
-    @endif
 
-    {!! $createButton !!}
+    <div>
+        {!! $createButton !!}
+    </div>
 
 </div>
 

+ 2 - 2
src/Controllers/PermissionController.php

@@ -79,7 +79,7 @@ class PermissionController extends AdminController
         $tree->tools(function (Tree\Tools $tools) {
             $label = trans('admin.table');
             $url = url(request()->getPathInfo()).'?_layout=1';
-            $tools->add("<a class='btn btn-sm btn-white btn-shadow' href='{$url}'>$label</a>");
+            $tools->add("<a class='btn btn-sm btn-white ' href='{$url}'>$label</a>");
         });
 
         $tree->branch(function ($branch) {
@@ -184,7 +184,7 @@ class PermissionController extends AdminController
 
             $label = trans('admin.default');
             $url = url(request()->getPathInfo());
-            $tools->append("<a class='btn btn-sm btn-white btn-shadow' href='{$url}'>$label</a>");
+            $tools->append("<a class='btn btn-sm btn-white ' href='{$url}'>$label</a>");
         });
 
         $grid->filter(function (Grid\Filter $filter) {

+ 1 - 1
src/Extension/Grid/CreateExtensionButton.php

@@ -19,7 +19,7 @@ CSS
 
         $label = trans('admin.new');
 
-        return "<a id='create-extension' class='btn btn-success btn-sm'><i class=\"ti-plus\"></i> &nbsp;$label</a>";
+        return "<button id='create-extension' class='btn btn-outline-success'><i class=\"feather icon-plus\"></i> &nbsp;$label</button>";
     }
 
     protected function setupScript()

+ 1 - 1
src/Form/Tools.php

@@ -182,7 +182,7 @@ class Tools implements Renderable
 
         return <<<EOT
 <div class="btn-group pull-right" style="margin-right: 5px">
-    <a href="{$this->getListPath()}" class="btn btn-sm btn-white btn-shadow"><i class=" ti-view-list-alt"></i><span class="hidden-xs">&nbsp;$text</span></a>
+    <a href="{$this->getListPath()}" class="btn btn-sm btn-white "><i class=" ti-view-list-alt"></i><span class="hidden-xs">&nbsp;$text</span></a>
 </div>
 EOT;
     }

+ 1 - 1
src/Show/Field.php

@@ -300,7 +300,7 @@ class Field implements Renderable
             </div>
             <span class="mailbox-attachment-size">
               {$size}&nbsp;
-              <a href="{$url}" class="btn btn-white btn-shadow btn-xs pull-right" target="_blank"><i class="fa fa-cloud-download"></i></a>
+              <a href="{$url}" class="btn btn-white  btn-xs pull-right" target="_blank"><i class="fa fa-cloud-download"></i></a>
             </span>
       </div>
     </li>

+ 1 - 1
src/Show/Tools.php

@@ -256,7 +256,7 @@ class Tools implements Renderable
 
         return <<<HTML
 <div class="btn-group pull-right btn-mini" style="margin-right: 5px">
-    <a href="{$this->getListPath()}" class="btn btn-sm btn-white btn-shadow">
+    <a href="{$this->getListPath()}" class="btn btn-sm btn-white ">
         <i class=" ti-view-list-alt"></i><span class="hidden-xs"> {$list}</span>
     </a>
 </div>

+ 1 - 1
src/Widgets/Dropdown.php

@@ -27,7 +27,7 @@ class Dropdown extends Widget
      */
     protected $button = [
         'text'  => null,
-        'class' => 'btn btn-sm btn-white btn-shadow',
+        'class' => 'btn btn-sm btn-white ',
         'style' => null,
     ];
 

Unele fișiere nu au fost afișate deoarece prea multe fișiere au fost modificate în acest diff