-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from pennions/feat/tree-navigation-component
Feat/tree navigation component
- Loading branch information
Showing
81 changed files
with
3,769 additions
and
2,099 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,54 @@ | ||
.cursor-not-allowed:hover { | ||
cursor: not-allowed !important; | ||
} | ||
|
||
/* If you indicate that it can be clicked, stop text selection*/ | ||
.cursor-pointer { | ||
-webkit-user-select: none; | ||
/* Safari */ | ||
-ms-user-select: none; | ||
/* IE 10 and IE 11 */ | ||
user-select: none; | ||
/* Standard syntax */ | ||
} | ||
|
||
.cursor-pointer:hover { | ||
cursor: pointer !important; | ||
} | ||
|
||
.cursor-grab:hover { | ||
cursor: grab !important; | ||
} | ||
|
||
.cursor-grabbing:hover { | ||
cursor: grabbing !important; | ||
} | ||
|
||
.cursor-zoom-in:hover { | ||
cursor: zoom-in !important; | ||
} | ||
|
||
.cursor-zoom-out:hover { | ||
cursor: zoom-out !important; | ||
} | ||
|
||
.cursor-wait:hover { | ||
cursor: wait !important; | ||
} | ||
|
||
.cursor-help:hover { | ||
cursor: help !important; | ||
} | ||
.cursor-default, | ||
.cursor-default:hover { | ||
cursor: default !important; | ||
} | ||
|
||
.cursor-no-select { | ||
-webkit-user-select: none !important; | ||
/* Safari */ | ||
-ms-user-select: none !important; | ||
/* IE 10 and IE 11 */ | ||
user-select: none !important; | ||
/* Standard syntax */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
import { configCreator } from './configCreator'; | ||
export const htmxExtensionsConfig = configCreator('htmx-extensions/ibiss-ui/htmx-ibiss-ui.js', 'htmx-ibiss-ui'); | ||
|
||
export const htmxExtensionsConfig = configCreator('htmx-extensions/ibiss-ui/htmx-ibiss-ui.js', 'htmx-ibiss-ui'); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.