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.

127 lines
2.6 KiB

1 year ago
  1. #companionManager{
  2. min-width: 320px;
  3. }
  4. #companionManager .window-content{
  5. padding: 0px;
  6. }
  7. #companionManager .form-group{
  8. flex-direction: column;
  9. padding: 0px;
  10. }
  11. #companionManager #companion-list{
  12. width: -webkit-fill-available;
  13. margin: 0;
  14. padding: 0;
  15. list-style: none;
  16. z-index: 1;
  17. }
  18. #companionManager .actor-image{
  19. width: 50px;
  20. height: 50px;
  21. border: none;
  22. transition: opacity 0.2s ease-in-out;
  23. }
  24. #companionManager .actor-image:hover{
  25. opacity: 0.3;
  26. }
  27. #companionManager .companion-item{
  28. display: flex;
  29. align-items: center;
  30. width: -webkit-fill-available;
  31. border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  32. transition: background-color 0.2s ease-in-out;
  33. padding: 8px;
  34. }
  35. #companionManager .companion-item:hover{
  36. background: rgba(0, 0, 0, 0.3);
  37. }
  38. #companionManager .summon-btn{
  39. min-width: 50px;
  40. min-height: 50px;
  41. width: 50px;
  42. height: 50px;
  43. display: flex;
  44. align-items: center;
  45. }
  46. #companionManager .warpgate-btn{
  47. /*-moz-mask-image: url(../assets/black-hole-bolas.svg);
  48. -webkit-mask-image: url(../assets/black-hole-bolas.svg);
  49. mask-image: url(../assets/black-hole-bolas.svg);
  50. background: rgba(105, 105, 105, 0.75);*/
  51. background: url(../assets/black-hole-bolas.webp) center;
  52. background-size: contain;
  53. z-index: 10;
  54. opacity: 0;
  55. transition: opacity 0.5s ease-in-out;
  56. width: 40px;
  57. height: 40px;
  58. margin-left: -45px;
  59. border: none;
  60. }
  61. #companionManager .warpgate-btn:hover{
  62. cursor: pointer;
  63. opacity: 1;
  64. }
  65. #companionManager .anim-dropdown{
  66. width: 100px;
  67. min-width: 100px;
  68. margin-left:10px;
  69. margin-right: 10px;
  70. }
  71. #companionManager .companion-number{
  72. width: 25px;
  73. min-width: 25px;
  74. text-align: center;
  75. margin-left:auto;
  76. margin-right: -13px;
  77. }
  78. #companionManager #companion-list input{
  79. border-right: 0;
  80. border-top-right-radius: 0px;
  81. border-bottom-right-radius: 0px;
  82. height: 27px;
  83. }
  84. #companionManager #companion-list select{
  85. border-left: 0;
  86. border-top-left-radius: 0px;
  87. border-bottom-left-radius: 0px;
  88. height: 27px;
  89. }
  90. #companionManager .actor-name{
  91. margin-left: 1em;
  92. margin-right: 1em;
  93. min-width: 70px;
  94. text-overflow: ellipsis;
  95. overflow: hidden;
  96. }
  97. #companionManager .actor-name:hover{
  98. cursor: pointer;
  99. text-shadow: rgba(255, 0, 0, 0.75) 0 0 5px;
  100. }
  101. #companionManager #remove-companion:hover{
  102. cursor: pointer;
  103. text-shadow: rgba(255, 0, 0, 0.75) 0 0 5px;
  104. }
  105. #companionManager .searchbox{
  106. width: 100%;
  107. padding: 5px;
  108. border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  109. }