| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
-
- .customContextGrid {
- background: #eeeeee55;
- border: 0.5px solid rgba(220, 220, 220, 0.2);
- width: auto;
- height: auto;
- position: absolute;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- z-index: 200;
- padding: 0.35rem 0.35rem;
- border-radius: 0.375rem;
- min-width: 5rem;
- pointer-events: auto;
- box-shadow: 0px 2px 6px rgba(12, 12, 12, 0.2);
-
- color: #111111;
- font-size: 0.65rem;
- font-family: Inter, "Roboto Mono", "Source Code Pro", Menlo, Courier, monospace;
- backdrop-filter: blur(20px);
- }
-
- .customContextGridItems {
- background-color: transparent;
- cursor: pointer;
- border-radius: 0.25rem;
- line-height: 1rem;
- font-weight: 500;
- overflow: hidden;
- margin: 0.12rem;
- }
-
- .customContextGridItems:hover {
- color: white;
- /*background-color: #017AFF;*/
- box-shadow: 0 0 7px 0px rgba(64, 64, 64, 0.3);
- }
-
- .customContextGridItemImage {
- width: 100%;
- height: 100%;
- }
-
- .customContextGridHeading {
- width: 100%;
- padding: 5px;
- font-size: 0.85rem;
- }
-
- .customContextGridParent {
- position: absolute;
- top: 0;
- left: 0;
- width: 270px;
- height: calc(100% - 100px);
- overflow-y: scroll;
- z-index: 100;
- display: flex;
- flex-direction: column;
- margin-bottom: 50px;
- margin-top: 50px;
- }
-
- /* Hide scrollbar for Chrome, Safari and Opera */
- .customContextGridParent::-webkit-scrollbar {
- display: none;
- }
-
- /* Hide scrollbar for IE, Edge and Firefox */
- .customContextGridParent {
- -ms-overflow-style: none; /* IE and Edge */
- scrollbar-width: none; /* Firefox */
- }
|