BookmarkFolderTree.module.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. $grw-foldertree-item-padding-left: 15px;
  2. $grw-bookmark-item-padding-left: 35px;
  3. .grw-folder-tree-container :global {
  4. .grw-foldertree-item-container, .grw-drop-item-area {
  5. & .grw-accept-drop-item {
  6. border-style: dashed !important;
  7. border-width: 0.15rem !important;
  8. }
  9. }
  10. .grw-drop-item-area {
  11. padding: 1rem;
  12. & .grw-accept-drop-item {
  13. padding: 0.7rem;
  14. }
  15. }
  16. .grw-drag-drop-container > .grw-drop-item-area {
  17. margin: 1rem;
  18. border-style: dashed !important;
  19. border-width: 0.15rem !important;
  20. }
  21. }
  22. .grw-foldertree :global {
  23. .btn-page-item-control .icon-plus::before {
  24. font-size: 18px;
  25. }
  26. .list-group-item {
  27. .grw-visible-on-hover {
  28. display: none;
  29. }
  30. &:hover {
  31. .grw-visible-on-hover {
  32. display: block;
  33. }
  34. }
  35. .grw-foldertree-triangle-btn {
  36. background-color: transparent;
  37. transition: all 0.2s ease-out;
  38. transform: rotate(0deg);
  39. &.grw-foldertree-open {
  40. transform: rotate(90deg);
  41. }
  42. }
  43. .grw-foldertree-title-anchor {
  44. width: 100%;
  45. overflow: hidden;
  46. text-decoration: none;
  47. }
  48. }
  49. .grw-foldertree-item-container {
  50. .grw-triangle-container {
  51. min-width: 35px;
  52. height: 40px;
  53. }
  54. .grw-bookmark-item-list{
  55. min-width: 30px;
  56. height: 50px;
  57. .picture {
  58. width: 16px;
  59. height: 16px;
  60. vertical-align: text-bottom;
  61. &.picture-md {
  62. width: 20px;
  63. height: 20px;
  64. }
  65. }
  66. .grw-foldertree-control{
  67. margin-left: auto;
  68. }
  69. }
  70. }
  71. }