summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/graphs-v2/palette/interfaces/i-dragdrop-event.d.ts
blob: 26c042611c222482b550da4380d9f3430ea7341e (plain)
1
2
3

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /
interface IDragDropEvent extends JQueryEventObject {
    dataTransfer: any;
    toElement: {
        naturalWidth: number;
        naturalHeight: number;
    }
}
ml>