Files
stackrender/src/styles/globals.css
T
2025-05-16 01:23:28 +01:00

95 lines
1.7 KiB
CSS

.react-flow__attribution {
display: none;
}
.text-editable {
@apply dark:group-hover:bg-slate-900 group-hover:bg-slate-100 group-hover:ring-[0.5px] group-hover:ring-primary-700 rounded-md cursor-pointer;
}
.react-flow__node.selected {
transition: box-shadow 0.3s ease;
/* Add transition */
/* box-shadow: 0px 0px 15px 0px hsl(var(--heroui-secondary-50)), 0px 2px 30px 0px hsl(var(--heroui-secondary-50)), 0px 0px 1px 0px hsl(var(--heroui-secondary-50));
*/
}
.noselect {
user-select: none;
-webkit-user-select: none;
/* Safari */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* IE10+/Edge */
}
.react-flow__renderer {
cursor: default !important; /* or pointer, grab, etc. */
}
.sidebar-item[data-active="true"] svg {
color : hsl(var(--heroui-primary-900));
}
div[data-slot="input-wrapper"] {
outline : none ;
border-width: 1px;
}
div[data-slot="mainWrapper"] button[data-slot="trigger"] {
outline : none ;
border-width: 1px;
}
div[data-slot="content"] hr[role="separator"] {
display: none ;
}
@keyframes dash {
to {
stroke-dashoffset: -10;
}
}
/* Target the scrollbar */
::-webkit-scrollbar {
width: 4px; /* Width of the scrollbar */
}
/* Track (background of the scrollbar) */
::-webkit-scrollbar-track {
background: hsl(210 40% 96.1%) ; /* Light gray background */
}
/* Handle (the scroll thumb) */
::-webkit-scrollbar-thumb {
background: hsl(var(--heroui-default-300)); /* Darker gray */
border-radius: 6px; /* Rounded corners */
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: hsl(var(--nextui-default-400)); /* Darker on hover */
}