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.

64 lines
1.2 KiB

  1. div.ownership-viewer {
  2. max-width: max-content;
  3. margin: auto 5px;
  4. line-height: initial;
  5. display: block ruby;
  6. }
  7. div.ownership-viewer > a {
  8. display: inline-flex;
  9. }
  10. div.ownership-viewer div {
  11. background-color: transparent;
  12. }
  13. .ownership-viewer-user {
  14. width: 10px;
  15. height: 10px;
  16. margin-left: 2px;
  17. margin-right: 2px;
  18. margin: auto 2px auto 2px;
  19. }
  20. .ownership-viewer-all {
  21. width: 0;
  22. height: 0;
  23. margin: auto 2px auto 2px;
  24. border-bottom: 7px solid red;
  25. border-top: 7px solid green;
  26. border-left: 7px solid yellow;
  27. border-right: 7px solid blue;
  28. }
  29. .ownership-viewer-all.ownership-viewer-inherit {
  30. /* Move the center point up on the triangle*/
  31. border-top-width: 5px;
  32. border-bottom-width: 9px;
  33. }
  34. .ownership-viewer-inherit {
  35. /* Create a downwards triangle */
  36. clip-path: polygon(50% 100%, 0 0, 100% 0);
  37. }
  38. .ownership-viewer-limited {
  39. /* Create a diamond */
  40. -webkit-transform-origin: 50% 50%;
  41. -ms-transform-origin: 50% 50%;
  42. transform-origin: 50% 50%;
  43. -webkit-transform: rotate(45deg);
  44. -ms-transform: rotate(45deg);
  45. transform: rotate(45deg);
  46. }
  47. .ownership-viewer-observer {
  48. /* Create a square */
  49. border-radius: 0;
  50. }
  51. .ownership-viewer-owner {
  52. /* Create a circle */
  53. border-radius: 50%;
  54. }