themefisher / sleek-bootstrap

Sleek Dashboard - Free Bootstrap Admin Template and UI Kit
https://themefisher.com/products/sleek
MIT License
889 stars 186 forks source link

RFC: change uncommon breadcrumb style #282

Closed rchavik closed 4 years ago

rchavik commented 4 years ago

I noticed 3 things:

Following is an example of breadcrumbs displaying file path. image

Ideally, it should be something like this:

image

rchavik commented 4 years ago

This patch addresses the first 2 items:

diff --git a/scss/_bredcrumb.scss b/scss/_bredcrumb.scss
index 9c44208..6ccb989 100644
--- a/scss/_bredcrumb.scss
+++ b/scss/_bredcrumb.scss
@@ -13,13 +13,11 @@
     justify-content: space-between;
   }
 }
-.breadcrumb {  
+.breadcrumb {
   .breadcrumb-item {
     font-size: 0.98rem;
-    text-transform: capitalize;
     a {
       color: $secondary;
-      text-transform: capitalize;
     }
   }
   &.breadcrumb-inverse {
@@ -94,10 +92,6 @@
   }
 }
 .breadcrumb-item+.breadcrumb-item::before {
-  content: '\f763';
-  font-family: $font-family-icon;
-  transform: rotate(45deg);
-  font-size: 7px;
+  content: '/';
   color: $secondary;
-
 }
rchavik commented 4 years ago

This is my current attempt to adopt sleek: http://demo.croogo.org/4.0/admin/file-manager (link is to the filemanager plugin that uses the above breadcrumb styles)

rchavik commented 4 years ago

I can haz comment? :smile: