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.

706 lines
20 KiB

1 year ago
  1. .dice-so-nice .select2-container {
  2. box-sizing: border-box;
  3. /* display: inline-block; */
  4. margin: 0;
  5. position: relative;
  6. vertical-align: middle;
  7. }
  8. .dice-so-nice .select2-container .select2-selection--single {
  9. box-sizing: border-box;
  10. cursor: pointer;
  11. display: block;
  12. height: 28px;
  13. user-select: none;
  14. -webkit-user-select: none;
  15. }
  16. .dice-so-nice .select2-container .select2-selection--single .select2-selection__rendered {
  17. display: block;
  18. padding-left: 8px;
  19. padding-right: 20px;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. white-space: nowrap;
  23. }
  24. .dice-so-nice .select2-container .select2-selection--single .select2-selection__clear {
  25. background-color: transparent;
  26. border: none;
  27. font-size: 1em;
  28. }
  29. .dice-so-nice .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  30. padding-right: 8px;
  31. padding-left: 20px;
  32. }
  33. .dice-so-nice .select2-container .select2-selection--multiple {
  34. box-sizing: border-box;
  35. cursor: pointer;
  36. display: block;
  37. min-height: 27px;
  38. /* height: 27px; */
  39. user-select: none;
  40. -webkit-user-select: none;
  41. }
  42. .dice-so-nice .select2-container .select2-selection--multiple .select2-selection__rendered {
  43. display: block;
  44. list-style: none;
  45. padding: 0;
  46. margin: 0;
  47. }
  48. .dice-so-nice .select2-container .select2-selection--multiple .select2-selection__clear {
  49. background-color: transparent;
  50. border: none;
  51. font-size: 1em;
  52. }
  53. .dice-so-nice .select2-container .select2-search--inline .select2-search__field {
  54. box-sizing: border-box;
  55. border: none;
  56. font-size: 100%;
  57. margin-top: 5px;
  58. margin-left: 5px;
  59. padding: 0;
  60. max-width: 100%;
  61. resize: none;
  62. height: 18px;
  63. vertical-align: bottom;
  64. font-family: sans-serif;
  65. overflow: hidden;
  66. word-break: keep-all;
  67. }
  68. .dice-so-nice .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  69. -webkit-appearance: none;
  70. }
  71. .dice-so-nice .select2-dropdown {
  72. background-color: white;
  73. border: 1px solid #aaa;
  74. border-radius: 4px;
  75. box-sizing: border-box;
  76. display: block;
  77. position: absolute;
  78. left: -100000px;
  79. width: 100%;
  80. z-index: 1051;
  81. }
  82. .dice-so-nice .select2-results {
  83. display: block;
  84. }
  85. .dice-so-nice .select2-results__options {
  86. list-style: none;
  87. margin: 0;
  88. padding: 0;
  89. }
  90. .dice-so-nice .select2-results__option {
  91. padding: 6px;
  92. user-select: none;
  93. -webkit-user-select: none;
  94. }
  95. .dice-so-nice .select2-results__option--selectable {
  96. cursor: pointer;
  97. }
  98. .dice-so-nice .select2-container--open .select2-dropdown {
  99. left: 0;
  100. }
  101. .dice-so-nice .select2-container--open .select2-dropdown--above {
  102. border-bottom: none;
  103. border-bottom-left-radius: 0;
  104. border-bottom-right-radius: 0;
  105. }
  106. .dice-so-nice .select2-container--open .select2-dropdown--below {
  107. border-top: none;
  108. border-top-left-radius: 0;
  109. border-top-right-radius: 0;
  110. }
  111. .dice-so-nice .select2-search--dropdown {
  112. display: block;
  113. padding: 4px;
  114. }
  115. .dice-so-nice .select2-search--dropdown .select2-search__field {
  116. padding: 4px;
  117. width: 100%;
  118. box-sizing: border-box;
  119. }
  120. .dice-so-nice .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  121. -webkit-appearance: none;
  122. }
  123. .dice-so-nice .select2-search--dropdown.select2-search--hide {
  124. display: none;
  125. }
  126. .dice-so-nice .select2-close-mask {
  127. border: 0;
  128. margin: 0;
  129. padding: 0;
  130. display: block;
  131. position: fixed;
  132. left: 0;
  133. top: 0;
  134. min-height: 100%;
  135. min-width: 100%;
  136. height: auto;
  137. width: auto;
  138. opacity: 0;
  139. z-index: 99;
  140. background-color: #fff;
  141. filter: alpha(opacity=0);
  142. }
  143. .dice-so-nice .select2-hidden-accessible {
  144. border: 0 !important;
  145. clip: rect(0 0 0 0) !important;
  146. -webkit-clip-path: inset(50%) !important;
  147. clip-path: inset(50%) !important;
  148. height: 1px !important;
  149. overflow: hidden !important;
  150. padding: 0 !important;
  151. position: absolute !important;
  152. width: 1px !important;
  153. white-space: nowrap !important;
  154. }
  155. .dice-so-nice .select2-container--default .select2-selection--single {
  156. background-color: #fff;
  157. border: 1px solid #aaa;
  158. border-radius: 4px;
  159. }
  160. .dice-so-nice .select2-container--default .select2-selection--single .select2-selection__rendered {
  161. color: #444;
  162. line-height: 28px;
  163. }
  164. .dice-so-nice .select2-container--default .select2-selection--single .select2-selection__clear {
  165. cursor: pointer;
  166. float: right;
  167. font-weight: bold;
  168. height: 26px;
  169. margin-right: 20px;
  170. padding-right: 0px;
  171. }
  172. .dice-so-nice .select2-container--default .select2-selection--single .select2-selection__placeholder {
  173. color: #999;
  174. }
  175. .dice-so-nice .select2-container--default .select2-selection--single .select2-selection__arrow {
  176. height: 26px;
  177. position: absolute;
  178. top: 1px;
  179. right: 1px;
  180. width: 20px;
  181. }
  182. .dice-so-nice .select2-container--default .select2-selection--single .select2-selection__arrow b {
  183. border-color: #888 transparent transparent transparent;
  184. border-style: solid;
  185. border-width: 5px 4px 0 4px;
  186. height: 0;
  187. left: 50%;
  188. margin-left: -4px;
  189. margin-top: -2px;
  190. position: absolute;
  191. top: 50%;
  192. width: 0;
  193. }
  194. .dice-so-nice .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  195. float: left;
  196. }
  197. .dice-so-nice .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  198. left: 1px;
  199. right: auto;
  200. }
  201. .dice-so-nice .select2-container--default.select2-container--disabled .select2-selection--single {
  202. background-color: #eee;
  203. cursor: default;
  204. }
  205. .dice-so-nice .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  206. display: none;
  207. }
  208. .dice-so-nice .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  209. border-color: transparent transparent #888 transparent;
  210. border-width: 0 4px 5px 4px;
  211. }
  212. .dice-so-nice .select2-container--default .select2-selection--multiple {
  213. background-color: rgba(0, 0, 0, 0.05);
  214. border: 1px solid #7a7971;
  215. border-radius: 4px;
  216. cursor: text;
  217. /* padding-bottom: 5px; */
  218. /* padding-right: 5px; */
  219. position: relative;
  220. }
  221. .dice-so-nice .select2-container--default .select2-selection--multiple.select2-selection--clearable {
  222. padding-right: 25px;
  223. }
  224. .dice-so-nice .select2-container--default .select2-selection--multiple .select2-selection__clear {
  225. cursor: pointer;
  226. font-weight: bold;
  227. height: 20px;
  228. margin-right: 10px;
  229. margin-top: 5px;
  230. position: absolute;
  231. right: 0;
  232. padding: 1px;
  233. }
  234. .dice-so-nice .select2-container--default .select2-selection--multiple .select2-selection__choice {
  235. background-color: #e4e4e4;
  236. border: 1px solid #aaa;
  237. border-radius: 4px;
  238. box-sizing: border-box;
  239. display: inline-block;
  240. margin-left: 5px;
  241. margin-top: 2px;
  242. padding: 0;
  243. padding-left: 20px;
  244. line-height: 20px;
  245. position: relative;
  246. max-width: 100%;
  247. overflow: hidden;
  248. text-overflow: ellipsis;
  249. vertical-align: bottom;
  250. white-space: nowrap;
  251. }
  252. .dice-so-nice .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  253. cursor: default;
  254. padding-left: 2px;
  255. padding-right: 5px;
  256. }
  257. .dice-so-nice .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  258. background-color: transparent;
  259. border: none;
  260. border-right: 1px solid #aaa;
  261. border-top-left-radius: 4px;
  262. border-bottom-left-radius: 4px;
  263. color: #999;
  264. cursor: pointer;
  265. font-size: 1em;
  266. font-weight: bold;
  267. padding: 0 4px;
  268. position: absolute;
  269. left: 0;
  270. width: auto;
  271. line-height: 20px;
  272. top: 0;
  273. }
  274. .dice-so-nice .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .dice-so-nice .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  275. background-color: #f1f1f1;
  276. color: #333;
  277. outline: none;
  278. }
  279. .dice-so-nice .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  280. margin-left: 5px;
  281. margin-right: auto;
  282. }
  283. .dice-so-nice .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  284. padding-left: 5px;
  285. padding-right: 2px;
  286. }
  287. .dice-so-nice .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  288. border-left: 1px solid #aaa;
  289. border-right: none;
  290. border-top-left-radius: 0;
  291. border-bottom-left-radius: 0;
  292. border-top-right-radius: 4px;
  293. border-bottom-right-radius: 4px;
  294. }
  295. .dice-so-nice .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  296. float: left;
  297. margin-left: 10px;
  298. margin-right: auto;
  299. }
  300. .dice-so-nice .select2-container--default.select2-container--focus .select2-selection--multiple {
  301. box-shadow: 0 0 5px #ff0000;
  302. outline: none;
  303. }
  304. .dice-so-nice .select2-container--default.select2-container--disabled .select2-selection--multiple {
  305. background-color: #eee;
  306. cursor: default;
  307. }
  308. .dice-so-nice .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  309. display: none;
  310. }
  311. .dice-so-nice .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .dice-so-nice .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  312. border-top-left-radius: 0;
  313. border-top-right-radius: 0;
  314. }
  315. .dice-so-nice .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .dice-so-nice .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  316. border-bottom-left-radius: 0;
  317. border-bottom-right-radius: 0;
  318. }
  319. .dice-so-nice .select2-container--default .select2-search--dropdown .select2-search__field {
  320. border: 1px solid #aaa;
  321. }
  322. .dice-so-nice .select2-container--default .select2-search--inline .select2-search__field {
  323. background: transparent;
  324. border: none;
  325. outline: 0;
  326. box-shadow: none;
  327. -webkit-appearance: textfield;
  328. }
  329. .dice-so-nice .select2-container--default .select2-results>.select2-results__options {
  330. max-height: 200px;
  331. overflow-y: auto;
  332. }
  333. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option {
  334. padding-left: 1em;
  335. }
  336. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  337. padding-left: 0;
  338. }
  339. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  340. margin-left: -1em;
  341. padding-left: 2em;
  342. }
  343. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  344. margin-left: -2em;
  345. padding-left: 3em;
  346. }
  347. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  348. margin-left: -3em;
  349. padding-left: 4em;
  350. }
  351. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  352. margin-left: -4em;
  353. padding-left: 5em;
  354. }
  355. .dice-so-nice .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  356. margin-left: -5em;
  357. padding-left: 6em;
  358. }
  359. .dice-so-nice .select2-container--default .select2-results__option--group {
  360. padding: 0;
  361. }
  362. .dice-so-nice .select2-container--default .select2-results__option--disabled {
  363. color: #999;
  364. }
  365. .dice-so-nice .select2-container--default .select2-results__option--selected {
  366. background-color: #ddd;
  367. }
  368. .dice-so-nice .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  369. background-color: #5897fb;
  370. color: white;
  371. }
  372. .dice-so-nice .select2-container--default .select2-results__group {
  373. cursor: default;
  374. display: block;
  375. padding: 6px;
  376. }
  377. .dice-so-nice .select2-container--classic .select2-selection--single {
  378. background-color: #f7f7f7;
  379. border: 1px solid #aaa;
  380. border-radius: 4px;
  381. outline: 0;
  382. background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  383. background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  384. background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  385. background-repeat: repeat-x;
  386. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
  387. }
  388. .dice-so-nice .select2-container--classic .select2-selection--single:focus {
  389. border: 1px solid #5897fb;
  390. }
  391. .dice-so-nice .select2-container--classic .select2-selection--single .select2-selection__rendered {
  392. color: #444;
  393. line-height: 28px;
  394. }
  395. .dice-so-nice .select2-container--classic .select2-selection--single .select2-selection__clear {
  396. cursor: pointer;
  397. float: right;
  398. font-weight: bold;
  399. height: 26px;
  400. margin-right: 20px;
  401. }
  402. .dice-so-nice .select2-container--classic .select2-selection--single .select2-selection__placeholder {
  403. color: #999;
  404. }
  405. .dice-so-nice .select2-container--classic .select2-selection--single .select2-selection__arrow {
  406. background-color: #ddd;
  407. border: none;
  408. border-left: 1px solid #aaa;
  409. border-top-right-radius: 4px;
  410. border-bottom-right-radius: 4px;
  411. height: 26px;
  412. position: absolute;
  413. top: 1px;
  414. right: 1px;
  415. width: 20px;
  416. background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  417. background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  418. background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  419. background-repeat: repeat-x;
  420. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
  421. }
  422. .dice-so-nice .select2-container--classic .select2-selection--single .select2-selection__arrow b {
  423. border-color: #888 transparent transparent transparent;
  424. border-style: solid;
  425. border-width: 5px 4px 0 4px;
  426. height: 0;
  427. left: 50%;
  428. margin-left: -4px;
  429. margin-top: -2px;
  430. position: absolute;
  431. top: 50%;
  432. width: 0;
  433. }
  434. .dice-so-nice .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  435. float: left;
  436. }
  437. .dice-so-nice .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  438. border: none;
  439. border-right: 1px solid #aaa;
  440. border-radius: 0;
  441. border-top-left-radius: 4px;
  442. border-bottom-left-radius: 4px;
  443. left: 1px;
  444. right: auto;
  445. }
  446. .dice-so-nice .select2-container--classic.select2-container--open .select2-selection--single {
  447. border: 1px solid #5897fb;
  448. }
  449. .dice-so-nice .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  450. background: transparent;
  451. border: none;
  452. }
  453. .dice-so-nice .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  454. border-color: transparent transparent #888 transparent;
  455. border-width: 0 4px 5px 4px;
  456. }
  457. .dice-so-nice .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  458. border-top: none;
  459. border-top-left-radius: 0;
  460. border-top-right-radius: 0;
  461. background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  462. background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  463. background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  464. background-repeat: repeat-x;
  465. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
  466. }
  467. .dice-so-nice .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  468. border-bottom: none;
  469. border-bottom-left-radius: 0;
  470. border-bottom-right-radius: 0;
  471. background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  472. background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  473. background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  474. background-repeat: repeat-x;
  475. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
  476. }
  477. .dice-so-nice .select2-container--classic .select2-selection--multiple {
  478. background-color: white;
  479. border: 1px solid #aaa;
  480. border-radius: 4px;
  481. cursor: text;
  482. outline: 0;
  483. padding-bottom: 5px;
  484. padding-right: 5px;
  485. }
  486. .dice-so-nice .select2-container--classic .select2-selection--multiple:focus {
  487. border: 1px solid #5897fb;
  488. }
  489. .dice-so-nice .select2-container--classic .select2-selection--multiple .select2-selection__clear {
  490. display: none;
  491. }
  492. .dice-so-nice .select2-container--classic .select2-selection--multiple .select2-selection__choice {
  493. background-color: #e4e4e4;
  494. border: 1px solid #aaa;
  495. border-radius: 4px;
  496. display: inline-block;
  497. margin-left: 5px;
  498. margin-top: 5px;
  499. padding: 0;
  500. }
  501. .dice-so-nice .select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  502. cursor: default;
  503. padding-left: 2px;
  504. padding-right: 5px;
  505. }
  506. .dice-so-nice .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  507. background-color: transparent;
  508. border: none;
  509. border-top-left-radius: 4px;
  510. border-bottom-left-radius: 4px;
  511. color: #888;
  512. cursor: pointer;
  513. font-size: 1em;
  514. font-weight: bold;
  515. padding: 0 4px;
  516. }
  517. .dice-so-nice .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  518. color: #555;
  519. outline: none;
  520. }
  521. .dice-so-nice .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  522. margin-left: 5px;
  523. margin-right: auto;
  524. }
  525. .dice-so-nice .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  526. padding-left: 5px;
  527. padding-right: 2px;
  528. }
  529. .dice-so-nice .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  530. border-top-left-radius: 0;
  531. border-bottom-left-radius: 0;
  532. border-top-right-radius: 4px;
  533. border-bottom-right-radius: 4px;
  534. }
  535. .dice-so-nice .select2-container--classic.select2-container--open .select2-selection--multiple {
  536. border: 1px solid #5897fb;
  537. }
  538. .dice-so-nice .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  539. border-top: none;
  540. border-top-left-radius: 0;
  541. border-top-right-radius: 0;
  542. }
  543. .dice-so-nice .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  544. border-bottom: none;
  545. border-bottom-left-radius: 0;
  546. border-bottom-right-radius: 0;
  547. }
  548. .dice-so-nice .select2-container--classic .select2-search--dropdown .select2-search__field {
  549. border: 1px solid #aaa;
  550. outline: 0;
  551. }
  552. .dice-so-nice .select2-container--classic .select2-search--inline .select2-search__field {
  553. outline: 0;
  554. box-shadow: none;
  555. }
  556. .dice-so-nice .select2-container--classic .select2-dropdown {
  557. background-color: white;
  558. border: 1px solid transparent;
  559. }
  560. .dice-so-nice .select2-container--classic .select2-dropdown--above {
  561. border-bottom: none;
  562. }
  563. .dice-so-nice .select2-container--classic .select2-dropdown--below {
  564. border-top: none;
  565. }
  566. .dice-so-nice .select2-container--classic .select2-results>.select2-results__options {
  567. max-height: 200px;
  568. overflow-y: auto;
  569. }
  570. .dice-so-nice .select2-container--classic .select2-results__option--group {
  571. padding: 0;
  572. }
  573. .dice-so-nice .select2-container--classic .select2-results__option--disabled {
  574. color: grey;
  575. }
  576. .dice-so-nice .select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  577. background-color: #3875d7;
  578. color: white;
  579. }
  580. .dice-so-nice .select2-container--classic .select2-results__group {
  581. cursor: default;
  582. display: block;
  583. padding: 6px;
  584. }
  585. .dice-so-nice .select2-container--classic.select2-container--open .select2-dropdown {
  586. border-color: #5897fb;
  587. }
  588. .dice-so-nice span.select2-search.select2-search--inline {
  589. display: none;
  590. }
  591. .dice-so-nice .select2-results__option img {
  592. max-width: 21px;
  593. max-height: 21px;
  594. vertical-align: text-bottom;
  595. }
  596. .dice-so-nice .sfxs-list .sfx .select2-selection__choice__display img {
  597. max-width: 21px;
  598. max-height: 21px;
  599. display: inline-block;
  600. vertical-align: text-bottom;
  601. }