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.

275 lines
5.5 KiB

1 year ago
  1. /* Sidebar */
  2. /* Glass - Remove prior styling */
  3. #sidebar,
  4. #sidebar-tabs {
  5. border: none;
  6. border-radius: 0px;
  7. box-shadow: none;
  8. backdrop-filter: none;
  9. background: none;
  10. background-image: none;
  11. }
  12. #sidebar {
  13. height: -webkit-fill-available;
  14. margin: var(--edge-margin) var(--edge-margin) var(--edge-margin) 0px;
  15. --header-color: #fff;
  16. --header-bg: var(--primary);
  17. /* display: inline-block; */
  18. }
  19. /* Glass - Add new styling */
  20. /* .window-content .sidebar-tab * {
  21. text-shadow: var(--dorako-text-shadow);
  22. } */
  23. /* .sidebar-popout.app */
  24. #sidebar.app {
  25. border: none;
  26. border-radius: var(--dorako-radius);
  27. background-color: var(--dorako-bg-current);
  28. /* backdrop-filter: var(--dorako-vibrancy); */
  29. /*will-change: backdrop-filter;*/
  30. transform: translate3d(0px, 0px, 0px);
  31. box-shadow: var(--glassy);
  32. }
  33. #sidebar-tabs {
  34. --sidebar-tab-height: 4px;
  35. --sidebar-tab-width: 4px;
  36. color: var(--color-text-light-highlight);
  37. border: 1px solid var(--color-border-highlight-alt);
  38. box-shadow: none;
  39. border: none;
  40. padding: none;
  41. margin: none;
  42. }
  43. #sidebar-tabs>.item {
  44. transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  45. position: relative;
  46. flex: 0 0 21px;
  47. line-height: 22px;
  48. border: none;
  49. border-radius: 6px;
  50. margin: 1px;
  51. }
  52. #sidebar-tabs>.item.active {
  53. color: white;
  54. box-shadow: none;
  55. border: none;
  56. box-shadow: none;
  57. border-bottom: none;
  58. /* box-shadow: 0 0 10px inset var(--paizo-blue-bright); */
  59. background-color: var(--paizo-red-bright);
  60. /* border: 1px solid wheat; */
  61. margin: 1px;
  62. transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  63. box-shadow: var(--gold-and-glow);
  64. }
  65. #sidebar-tabs>.item:not(.active):hover {
  66. color: white;
  67. box-shadow: none;
  68. border: none;
  69. box-shadow: none;
  70. border-bottom: none;
  71. /* box-shadow: 0 0 10px inset var(--paizo-blue-bright); */
  72. background-color: var(--paizo-red);
  73. /* border: 1px solid wheat; */
  74. border-radius: 6px;
  75. margin: 1px;
  76. transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  77. box-shadow: var(--gold-and-glow);
  78. }
  79. #chat-popout nav.damage-log-nav.tabs {
  80. flex: 0;
  81. margin: 0px;
  82. box-shadow: var(--glassy);
  83. background-color: var(--dorako-bg-current);
  84. padding: 3px;
  85. }
  86. #damage-log {
  87. gap: 3px;
  88. display: flex;
  89. flex-direction: column;
  90. }
  91. nav.damage-log-nav .item.active {
  92. box-shadow: var(--gold-and-glow);
  93. background-color: var(--paizo-blue-bright);
  94. border: none;
  95. transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  96. border-radius: 5px;
  97. }
  98. nav.damage-log-nav .item {
  99. transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  100. margin: 2px;
  101. color: white;
  102. border-radius: 5px;
  103. margin: 2px;
  104. border: none;
  105. }
  106. nav.damage-log-nav .item:not(.active):hover {
  107. box-shadow: var(--gold-and-glow);
  108. background-color: var(--paizo-blue);
  109. border: none;
  110. transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  111. border-radius: 5px;
  112. }
  113. nav.damage-log-nav.tabs {
  114. flex: 0;
  115. margin: 0px;
  116. border-bottom: 0px solid wheat;
  117. box-shadow: none;
  118. }
  119. .dfce-cm-top:hover, .dfce-cm-middle:hover, .dfce-cm-bottom:hover {
  120. box-shadow: var(--gold-and-glow);
  121. }
  122. #sidebar.collapsed #sidebar-tabs>.item,
  123. #sidebar.collapsed #sidebar-tabs>.item.active {
  124. border: none;
  125. text-shadow: none;
  126. }
  127. #sidebar-tabs>.collapse {
  128. text-align: center;
  129. align-self: center;
  130. }
  131. #sidebar.app {
  132. background-image: none;
  133. /* max-height: 98%; */
  134. }
  135. #sidebar-tabs.tabs {
  136. margin: 0px;
  137. padding: 0px;
  138. }
  139. .sidebar-tab {
  140. gap: 5px;
  141. }
  142. #chat-form {
  143. flex: 0 0 var(--chat-input-height);
  144. }
  145. #chat-form textarea {
  146. max-height: var(--chat-input-height);
  147. height: 100%;
  148. background-image: none;
  149. border: none;
  150. background-color: rgba(200, 200, 200, 0.8);
  151. box-shadow: var(--glassy);
  152. overflow: visible;
  153. /* margin-left: 2px;
  154. margin-right: 2px; */
  155. width: -webkit-fill-available;
  156. font-size: 16px;
  157. font-family: var(--font-primary);
  158. }
  159. /* Scrollbar */
  160. /* #chat-log::-webkit-scrollbar {
  161. width: unset;
  162. height: unset;
  163. display: none;
  164. }
  165. #chat-log::-webkit-scrollbar-thumb {
  166. outline: none;
  167. border-radius: 3px;
  168. background: var(--color-text-light-1);
  169. border: none;
  170. display: none;
  171. }
  172. #chat-log:-webkit-scrollbar-track {
  173. box-shadow: 0 0 1px #999 inset;
  174. border-radius: 3px;
  175. padding:0px;
  176. margin: 0px;
  177. display: none;
  178. } */
  179. /* Polyglot */
  180. #polyglot {
  181. /* height: 20px; */
  182. line-height: unset;
  183. flex: none;
  184. }
  185. #polyglot label {
  186. /* display: flex;
  187. margin: auto;
  188. display: flex;
  189. align-items: center;
  190. justify-content: left;
  191. text-shadow: var(--dorako-text-shadow); */
  192. display: none;
  193. }
  194. /* .directory .action-buttons button {
  195. margin: 0px;
  196. } */
  197. /* #sidebar.app {
  198. resize:horizontal;
  199. } */
  200. /* CGP */
  201. #cgmp-typing-notify {
  202. padding: 3px;
  203. }
  204. #cgmp-typing-notify.hidden {
  205. padding: 0px;
  206. }
  207. /*
  208. #cgmp-typing-notify.hidden>* {
  209. display: none;
  210. } */
  211. #sidebar #chat {
  212. overflow: hidden;
  213. }
  214. #sidebar .bestiary-browser-btn {
  215. width: calc(100% - 8px);
  216. }
  217. /* .speaking-as--currentSpeaker+#chat-controls {
  218. padding: 0px;
  219. }
  220. .speaking-as--currentSpeaker {
  221. padding-left: 5px;
  222. border-radius: var(--dorako-radius);
  223. background-color: var(--dorako-bg-current);
  224. box-shadow: var(--glassy);
  225. margin: 0px 2px;
  226. } */
  227. #chat-controls .undefined>i {
  228. margin-right: 1px;
  229. margin-left: -1px;
  230. }