All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
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.

28 lines
551 B

1 year ago
  1. #chat-form {
  2. position: relative;
  3. }
  4. #chat-form .chatghosttextarea {
  5. position: absolute;
  6. top: 0;
  7. left: 0px;
  8. z-index: 1;
  9. opacity: 0.5;
  10. box-shadow: none;
  11. outline: none;
  12. pointer-events: none;
  13. background: transparent;
  14. display: none;
  15. }
  16. .chatghosttextarea:not(.show) {
  17. display: none;
  18. }
  19. /* adds focus styling for context menu LIs */
  20. #context-menu li.context-item:focus {
  21. outline: none;
  22. box-shadow: 0 0 10px #ff6400, inset 0px 0px 0px 1px red;
  23. }