_list-group.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* ===============================================================================================
  2. File Name: list-group.scss
  3. Description: Contain list item, list group related extended SCSS.
  4. ----------------------------------------------------------------------------------------------
  5. Item name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
  6. Author: PIXINVENT
  7. Author URL: http://www.themeforest.net/user/pixinvent
  8. ================================================================================================*/
  9. // Inline list style with pipeline seperator
  10. ul.list-inline {
  11. li {
  12. display: inline-block;
  13. }
  14. &.list-inline-pipe {
  15. >li+li:before {
  16. content: ' | ';
  17. padding-right: 2px;
  18. }
  19. }
  20. }
  21. // bootstrap list group
  22. .list-group {
  23. .list-group-item {
  24. line-height: 1.5;
  25. &.active {
  26. &:hover {
  27. background-color: $primary;
  28. }
  29. &:focus{
  30. // color: $body-color;
  31. outline: 0;
  32. &:hover{
  33. color: $white;
  34. }
  35. }
  36. }
  37. &:hover {
  38. background-color: $body-bg;
  39. }
  40. i {
  41. font-size: 1.2rem;
  42. font-weight: 100;
  43. position: relative;
  44. }
  45. &:not(.active):focus:active{
  46. color: inherit;
  47. }
  48. }
  49. .list-group-item-action{
  50. // &:active{
  51. // background-color: $primary;
  52. // color: $white;
  53. // }
  54. &:focus{
  55. // background-color: $body-bg;
  56. outline: 0;
  57. }
  58. }
  59. }
  60. // for drag and drop border radius on selected
  61. .list-group-item.gu-mirror{
  62. border-radius: 0;
  63. }
  64. // Inline users list
  65. .users-list{
  66. li+li {
  67. margin-left: -.785rem;
  68. }
  69. li{
  70. img{
  71. border: 2px solid $white;
  72. box-shadow: 0px 2px 10px 0px rgba($gray-600, 0.3)
  73. }
  74. .badge{
  75. color: $black;
  76. }
  77. }
  78. }