Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. @import './../../../assets/scss/abstracts/variables';
  2. @import './../../../assets/scss/mixins/box-shadow';
  3. @import './../../../assets/scss/mixins/border-radius';
  4.  
  5. .popover {
  6. position: absolute;
  7. top: 30px;
  8. right: -1px;
  9. z-index: 2;
  10. padding: 0.5rem;
  11. border: 1px solid $gray-2;
  12. min-width: 152px;
  13. @include border-radius(8px);
  14. @include box-shadow($shadowDefault);
  15.  
  16. &.left {
  17. right: inherit;
  18. left: 0px;
  19. }
  20.  
  21. &:parent {
  22. display: none;
  23. }
  24.  
  25. // ul {
  26. // li {
  27. // a {
  28. // // border-bottom: 1px solid rgba(155, 173, 198, 0.2);
  29. // span {
  30. // &.icon {
  31. // &:before {
  32. // color: $gray-5 !important;
  33. // font-size: 14px;
  34. // position: relative;
  35. // top: -2px;
  36. // }
  37. // }
  38. // }
  39. // &:hover {
  40. // background: $gray-6;
  41. // }
  42. // }
  43. // &:last-child {
  44. // a {
  45. // border-bottom: none;
  46. // padding-bottom: 0 !important;
  47. // }
  48. // }
  49. // }
  50. // &:before {
  51. // content: '';
  52. // width: 14px;
  53. // height: 14px;
  54. // border: 1px solid #dae3ee;
  55. // border-right: none;
  56. // border-bottom: none;
  57. // position: absolute;
  58. // top: -7.5px;
  59. // right: 16px;
  60. // background: white;
  61. // transform: rotate(45deg);
  62. // border-radius: 2px 0 0 0;
  63. // //@include box-shadow($shadowDefault);
  64. // }
  65. // }
  66. }
  67.  
  68. // .subMenu {
  69. // li {
  70. // a {
  71. // span {
  72. // &:before {
  73. // color: lime !important;
  74. // }
  75. // }
  76. // }
  77. // }
  78. // }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement