threepipe
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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .customContextGrid {
  2. background: #eeeeee55;
  3. border: 0.5px solid rgba(220, 220, 220, 0.2);
  4. width: auto;
  5. height: auto;
  6. position: absolute;
  7. display: flex;
  8. flex-direction: row;
  9. flex-wrap: wrap;
  10. z-index: 200;
  11. padding: 0.35rem 0.35rem;
  12. border-radius: 0.375rem;
  13. min-width: 5rem;
  14. pointer-events: auto;
  15. box-shadow: 0px 2px 6px rgba(12, 12, 12, 0.2);
  16. color: #111111;
  17. font-size: 0.65rem;
  18. font-family: Inter, "Roboto Mono", "Source Code Pro", Menlo, Courier, monospace;
  19. backdrop-filter: blur(20px);
  20. }
  21. .customContextGridItems {
  22. background-color: transparent;
  23. cursor: pointer;
  24. border-radius: 0.25rem;
  25. line-height: 1rem;
  26. font-weight: 500;
  27. overflow: hidden;
  28. margin: 0.12rem;
  29. }
  30. .customContextGridItems:hover {
  31. color: white;
  32. /*background-color: #017AFF;*/
  33. box-shadow: 0 0 7px 0px rgba(64, 64, 64, 0.3);
  34. }
  35. .customContextGridItemImage {
  36. width: 100%;
  37. height: 100%;
  38. }
  39. .customContextGridHeading {
  40. width: 100%;
  41. padding: 5px;
  42. font-size: 0.85rem;
  43. }
  44. .customContextGridParent {
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. width: 270px;
  49. height: calc(100% - 100px);
  50. overflow-y: scroll;
  51. z-index: 100;
  52. display: flex;
  53. flex-direction: column;
  54. margin-bottom: 50px;
  55. margin-top: 50px;
  56. }
  57. /* Hide scrollbar for Chrome, Safari and Opera */
  58. .customContextGridParent::-webkit-scrollbar {
  59. display: none;
  60. }
  61. /* Hide scrollbar for IE, Edge and Firefox */
  62. .customContextGridParent {
  63. -ms-overflow-style: none; /* IE and Edge */
  64. scrollbar-width: none; /* Firefox */
  65. }