Browse Source

added first page example (without demo menu changes)
- added text color variations in scss/_text
- added demo product images
- created scss/pages/_e_commerce
- created pages/examples/e_commerce.html

REJack 5 years ago
parent
commit
33a3044d54

+ 3 - 0
build/scss/AdminLTE.scss

@@ -50,6 +50,9 @@
 @import "404_500_errors";
 @import "invoice";
 @import "profile";
+// Pages
+// ---------------------------------------------------
+@import "pages/e_commerce";
 // Plugins
 // ---------------------------------------------------
 @import "plugins/fullcalendar";

+ 7 - 0
build/scss/_text.scss

@@ -19,3 +19,10 @@
 .text-xl {
   font-size: $font-size-xl;
 }
+
+
+@each $name, $color in $colors {
+  .text-#{$name} {
+    color: #{$color};
+  }
+}

+ 36 - 0
build/scss/pages/_e_commerce.scss

@@ -0,0 +1,36 @@
+.product-image {
+  @include img-fluid;
+  width: 100%;
+}
+
+.product-image-thumbs {
+  display: flex;
+  align-items: stretch;
+  margin-top: 2rem;
+}
+
+.product-image-thumb {
+
+  @include box-shadow($thumbnail-box-shadow);
+  @include border-radius($thumbnail-border-radius);
+
+  background-color: $thumbnail-bg;
+  border: $thumbnail-border-width solid $thumbnail-border-color;
+  display: flex;
+  margin-right: 1rem;
+  max-width: 6.5rem + ($thumbnail-padding * 2);
+  padding: $thumbnail-padding * 2;
+
+  img {
+    @include img-fluid;
+    align-self: center;
+  }
+
+  &:hover {
+    opacity: 0.5;
+  }
+}
+
+.product-share a {
+  margin-right: 0.5rem;
+}

+ 89 - 0
dist/css/adminlte.css

@@ -15381,6 +15381,43 @@ html.maximized-card {
   margin-bottom: 15px;
 }
 
+.product-image {
+  max-width: 100%;
+  height: auto;
+  width: 100%;
+}
+
+.product-image-thumbs  {
+  display: flex;
+  align-items: stretch;
+  margin-top: 2rem;
+}
+
+.product-image-thumb  {
+  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
+  border-radius: 0.25rem;
+  background-color: #ffffff;
+  border: 1px solid #dee2e6;
+  display: flex;
+  margin-right: 1rem;
+  max-width: 7rem;
+  padding: 0.5rem;
+}
+
+.product-image-thumb  img {
+  max-width: 100%;
+  height: auto;
+  align-self: center;
+}
+
+.product-image-thumb :hover {
+  opacity: 0.5;
+}
+
+.product-share a {
+  margin-right: 0.5rem;
+}
+
 /*
  * Plugin: Full Calendar
  * ---------------------
@@ -17346,6 +17383,58 @@ a.text-muted:hover {
   font-size: 2rem;
 }
 
+.text-blue {
+  color: #007bff;
+}
+
+.text-indigo {
+  color: #6610f2;
+}
+
+.text-purple {
+  color: #6f42c1;
+}
+
+.text-pink {
+  color: #e83e8c;
+}
+
+.text-red {
+  color: #dc3545;
+}
+
+.text-orange {
+  color: #fd7e14;
+}
+
+.text-yellow {
+  color: #ffc107;
+}
+
+.text-green {
+  color: #28a745;
+}
+
+.text-teal {
+  color: #20c997;
+}
+
+.text-cyan {
+  color: #17a2b8;
+}
+
+.text-white {
+  color: #ffffff;
+}
+
+.text-gray {
+  color: #6c757d;
+}
+
+.text-gray-dark {
+  color: #343a40;
+}
+
 .elevation-0 {
   box-shadow: none;
 }

File diff suppressed because it is too large
+ 1 - 1
dist/css/adminlte.css.map


File diff suppressed because it is too large
+ 1 - 1
dist/css/adminlte.min.css


File diff suppressed because it is too large
+ 1 - 1
dist/css/adminlte.min.css.map


BIN
dist/img/prod-1.jpg


BIN
dist/img/prod-2.jpg


BIN
dist/img/prod-3.jpg


BIN
dist/img/prod-4.jpg


BIN
dist/img/prod-5.jpg


File diff suppressed because it is too large
+ 742 - 0
pages/examples/e_commerce.html