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.

148 lines
3.7 KiB

1 year ago
  1. /* Window Control */
  2. #minimized-bar {
  3. display: none !important;
  4. }
  5. .window-app.minimized .window-header {
  6. /* border: 1px solid transparent; */
  7. border: none;
  8. /* border-radius: 5px; */
  9. /* background-color: var(--dorako-bg-current); */
  10. /* backdrop-filter: var(--dorako-vibrancy); */
  11. /* box-shadow: 0 0 3px black; */
  12. }
  13. /* .window-app .window-content {
  14. box-shadow: var(--gold-and-glow)
  15. } */
  16. .app.window-app {
  17. transition: background-color 0.25s;
  18. /* backdrop-filter: var(--dorako-vibrancy); */
  19. background-color: var(--dorako-bg-current);
  20. box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5),
  21. var(--glassy);
  22. }
  23. .app.window-app .window-header {
  24. border-bottom: 1px solid #484848;
  25. }
  26. .app.window-app.minimized .window-header {
  27. border-bottom: none;
  28. }
  29. .app.window-app.minimized {
  30. /* box-shadow: none; */
  31. }
  32. .sheet.journal-entry {
  33. box-shadow: var(--glassy), 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
  34. background-color: var(--dorako-bg-current);
  35. /* backdrop-filter: var(--dorako-vibrancy); */
  36. }
  37. .sheet.journal-entry .window-content {
  38. overflow: visible;
  39. }
  40. .sheet.journal-entry .journal-entry-content {
  41. border: none;
  42. border-radius: 10px 0 0 0;
  43. margin-right: 2px;
  44. margin-left: 2px;
  45. height: calc(100% - 2px);
  46. box-shadow: var(--gold-and-glow), var(--glassy)
  47. }
  48. .sheet.window-app:not(.outlaws-wrapper, .minimized).journal-entry .window-header {
  49. box-shadow: none;
  50. border: none;
  51. background-color: unset;
  52. }
  53. .sheet.journal-entry .journal-entry-content {
  54. background: none;
  55. background-color: var(--bg);
  56. background-image: var(--pf2e-sheets-bg);
  57. background-size: cover;
  58. }
  59. .sheet.journal-entry:not(.bloodlords-wrapper, .outlaws-wrapper) .journal-sidebar {
  60. text-shadow: var(--dorako-text-shadow);
  61. }
  62. .sheet.journal-entry .pages-list .directory-item.active:last-of-type {
  63. border-bottom: 1px solid wheat;
  64. }
  65. .sheet.journal-entry .pages-list .directory-item:not(.active)+.active,
  66. .sheet.journal-entry .pages-list .directory-item.active+ :not(.active),
  67. .sheet.journal-entry .pages-list .directory-item.active:first-of-type {
  68. border-top: 1px solid wheat;
  69. }
  70. .directory .directory-item.context, .directory .directory-item.active {
  71. border-color: wheat;
  72. }
  73. /* .sheet.journal-entry .journal-entry-page * {
  74. text-shadow: 0px 1px 1px white;
  75. } */
  76. .sheet.journal-entry .journal-sidebar .directory-header .header-search input,
  77. .sheet.journal-entry .journal-sidebar .action-buttons button.create,
  78. .sheet.journal-entry .journal-sidebar .action-buttons button.next,
  79. .sheet.journal-entry .journal-sidebar .action-buttons button.previous {
  80. border: none;
  81. box-shadow: var(--gold-and-glow);
  82. }
  83. #tooltip {
  84. /* position: absolute;
  85. width: max-content;
  86. max-width: 320px;
  87. padding: 6px 8px; */
  88. background: var(--pf2e-color-mono-dark);
  89. /* font-family: var(--font-primary);
  90. font-size: var(--font-size-16);
  91. line-height: var(--font-size-16);
  92. color: var(--color-text-light-highlight); */
  93. border: none;
  94. /* border-radius: 3px; */
  95. box-shadow: var(--glassy);
  96. /* z-index: var(--z-index-tooltip);
  97. pointer-events: none;
  98. visibility: hidden;
  99. opacity: 0;
  100. transition: visibility 0s 500ms, opacity 500ms; */
  101. }
  102. .app.window-app.image-popout .window-header,
  103. .app.window-app.journal-sheet .window-header {
  104. border-bottom: none;
  105. }
  106. /* Windows Vista styling */
  107. /* .window-app .window-content {
  108. border-radius: 5px;
  109. }
  110. .pf2e.actor .window-content,
  111. .sheet.hazard .window-content,
  112. section.window-content {
  113. margin: 0px 5px 5px 5px;
  114. border-radius: 3px;
  115. box-shadow: var(--gold-and-glow);
  116. }
  117. .image-popout section.window-content,
  118. .journal-sheet section.window-content {
  119. margin: unset;
  120. box-shadow: unset;
  121. }
  122. .app.window-app .window-header {
  123. border-bottom: unset;
  124. }
  125. */