Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_breadcrumb.scss 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /** =====================
  2. Breadcrumb css start
  3. ========================== **/
  4. .caption-breadcrumb{
  5. .breadcrumb-header{
  6. display:inline-block;
  7. span{
  8. display: block;
  9. font-size: 13px;
  10. margin-top: 5px;
  11. }
  12. }
  13. }
  14. .front-icon-breadcrumb{
  15. .breadcrumb-header{
  16. display: inline-block;
  17. }
  18. .big-icon{
  19. display: inline-block;
  20. i{
  21. font-size: 50px;
  22. margin-right: 10px;
  23. color: $primary-color;
  24. }
  25. }
  26. .d-inline-block{
  27. span{
  28. display: block;
  29. font-size: 13px;
  30. margin-top: 5px;
  31. }
  32. }
  33. }
  34. .breadcrumb{
  35. background-color: transparent;
  36. margin-bottom: 0;
  37. }
  38. .primary-breadcrumb{
  39. @extend .caption-breadcrumb;
  40. background-color: $primary-color;
  41. color: #fff;
  42. h5,a,.breadcrumb li:last-child a,.breadcrumb-item+.breadcrumb-item::before{
  43. color: #fff;
  44. }
  45. }
  46. .inverse-breadcrumb{
  47. @extend .primary-breadcrumb;
  48. background-color: $inverse-color;
  49. }
  50. .danger-breadcrumb{
  51. @extend .primary-breadcrumb;
  52. background-color: $danger-color;
  53. }
  54. .info-breadcrumb{
  55. @extend .primary-breadcrumb;
  56. background-color: $info-color;
  57. }
  58. .warning-breadcrumb{
  59. @extend .primary-breadcrumb;
  60. background-color: $warning-color;
  61. }
  62. .success-breadcrumb{
  63. @extend .primary-breadcrumb;
  64. background-color: $success-color;
  65. }
  66. /**====== Breadcrumb css end ======**/