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.

155 lines
3.4 KiB

1 year ago
  1. /* Token HUD (right click token) */
  2. /* Glass - Remove prior styling */
  3. .placeable-hud,
  4. #token-hud .attribute,
  5. .placeable-hud input[type="text"] {
  6. border: none;
  7. border-radius: 0px;
  8. box-shadow: none;
  9. backdrop-filter: none;
  10. background: none;
  11. background-image: none;
  12. }
  13. /* Glass - Add new styling */
  14. .placeable-hud .control-icon,
  15. .placeable-hud input[type="text"] {
  16. border: none;
  17. border-radius: var(--dorako-radius);
  18. background-color: var(--dorako-bg-current);
  19. /* backdrop-filter: var(--dorako-vibrancy); */
  20. /*will-change: backdrop-filter;*/
  21. transform: translate3d(0px, 0px, 0px);
  22. box-shadow: var(--glassy);
  23. }
  24. .middle .attribute {
  25. display: flex;
  26. gap: 10px;
  27. align-content: space-evenly;
  28. justify-content: space-evenly;
  29. }
  30. #token-hud .attribute i.fas {
  31. z-index: 1;
  32. }
  33. #token-hud .attribute {
  34. flex: 0 0 40px;
  35. }
  36. #token-hud .attribute.elevation {
  37. transition: background-color 0.15s ease-out;
  38. position: relative;
  39. width: 40px;
  40. margin: unset;
  41. box-shadow: none;
  42. }
  43. .placeable-hud input[type="text"]:focus {
  44. border: none;
  45. transition: background-color 0.15s ease-out;
  46. box-shadow: var(--glassy);
  47. }
  48. #token-hud .attribute.elevation:hover {
  49. transition: background-color 0.15s ease-out;
  50. background-color: rgb(162, 226, 252);
  51. }
  52. /* #token-hud .attribute.bar1 {
  53. background-color: none;
  54. box-shadow: none;
  55. } */
  56. #token-hud .attribute input {
  57. transition: background-color 0.15s ease-out;
  58. border: none;
  59. box-shadow: var(--glassy);
  60. background-color: var(--dorako-bg-current);
  61. /* backdrop-filter: brightness(250%); */
  62. }
  63. /* #token-hud .attribute.bar1:hover {
  64. transition: background-color 0.15s ease-out;
  65. border: none;
  66. background-color: #7cd00077;
  67. box-shadow: var(--glassy);
  68. } */
  69. .placeable-hud input[type="text"] {
  70. border-radius: 3px;
  71. }
  72. #token-hud .attribute.bar1 input:hover,
  73. .placeable-hud input[type="text"]:hover {
  74. /* backdrop-filter: var(--dorako-vibrancy-active); */
  75. }
  76. .placeable-hud input[type="text"] {
  77. /* width: 100%; */
  78. min-width: 40px;
  79. border: unset;
  80. color: var(--color-text-light-2);
  81. text-shadow: var(--dorako-text-shadow);
  82. height: 40px;
  83. line-height: 40px;
  84. margin: 0;
  85. /* border-radius: var(--dorako-radius); */
  86. font-size: var(--font-size-28);
  87. font-weight: bold;
  88. pointer-events: all;
  89. background: none;
  90. }
  91. .placeable-hud .control-icon {
  92. margin: 0px;
  93. }
  94. #token-hud .col.right {
  95. /* left: 100px; */
  96. gap: 10px;
  97. }
  98. #token-hud .col.left {
  99. gap: 10px;
  100. text-shadow: var(--dorako-text-shadow);
  101. }
  102. .placeable-hud .control-icon:not(:nth-child(2)) {
  103. margin: 0px;
  104. background-color: var(--paizo-blue-dark);
  105. transition: background-color 0.15s ease-out;
  106. }
  107. .placeable-hud .control-icon.active {
  108. border: unset;
  109. background-color: var(--paizo-blue-bright);
  110. transition: background-color 0.15s ease-out;
  111. }
  112. .placeable-hud .control-icon:not(:nth-child(2)):hover {
  113. transition: background-color 0.15s ease-out;
  114. background-color: var(--paizo-blue);
  115. /* backdrop-filter: var(--dorako-vibrancy-active); */
  116. }
  117. .placeable-hud .control-icon:nth-child(2):hover {
  118. transition: background-color 0.15s ease-out;
  119. background-color: var(--paizo-red);
  120. /* backdrop-filter: var(--dorako-vibrancy-active); */
  121. }
  122. .placeable-hud .control-icon,
  123. .placeable-hud .control-icon img {
  124. opacity: 1;
  125. color: rgb(240, 240, 240);
  126. }