minicard.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  1. .minicard-wrapper {
  2. cursor: pointer;
  3. position: relative;
  4. display: flex;
  5. align-items: center;
  6. margin-bottom: 1.2vh;
  7. }
  8. .minicard-wrapper.placeholder {
  9. background: #ccc;
  10. border-radius: 1.2vw;
  11. }
  12. .minicard-wrapper.ui-sortable-helper {
  13. cursor: grabbing;
  14. transform: rotate(4deg);
  15. display: block !important;
  16. }
  17. .minicard-wrapper.ui-sortable-helper .and-n-other {
  18. width: 100%;
  19. height: 2.5vh;
  20. padding: 0.5vh;
  21. background-color: #f2f2f2;
  22. text-align: center;
  23. border-radius: 0.4vw;
  24. }
  25. .minicard-wrapper.ui-sortable-helper .multi-selection-checkbox {
  26. display: none;
  27. }
  28. .minicard-wrapper .multi-selection-checkbox + .minicard {
  29. margin-left: 1vw;
  30. }
  31. @media only screen {
  32. .minicard {
  33. padding: 0.8vh 1vw 0.3vh;
  34. position: relative;
  35. flex: 1;
  36. flex-wrap: wrap;
  37. background-color: #fff;
  38. min-height: 2.5vh;
  39. box-shadow: 0 0.2vh 0.3vh rgba(0,0,0,0.15);
  40. border-radius: 0.3vw;
  41. color: #4d4d4d;
  42. overflow: hidden;
  43. transition: transform 0.2s, border-radius 0.2s;
  44. }
  45. }
  46. .minicard-details-menu-with-handle {
  47. float: right;
  48. font-size: clamp(14px, 3vw, 18px);
  49. padding-right: 4vw;
  50. padding-left: 0.7vw;
  51. }
  52. .minicard-details-menu {
  53. float: right;
  54. font-size: clamp(14px, 3vw, 18px);
  55. padding-left: 0.7vw;
  56. }
  57. @media print {
  58. .minicard-details-menu,
  59. .minicard-details-menu-with-handle {
  60. display: none;
  61. }
  62. }
  63. .minicard.linked-board .linked-icon,
  64. .minicard.linked-card .linked-icon {
  65. display: inline-block;
  66. margin-right: 1.5vw;
  67. vertical-align: baseline;
  68. font-size: 0.9em;
  69. }
  70. .minicard.linked-board .linked-archived,
  71. .minicard.linked-card .linked-archived {
  72. color: #937760;
  73. }
  74. .is-selected .minicard {
  75. transform: translateX(1.5vw);
  76. border-bottom-right-radius: 0;
  77. border-top-right-radius: 0;
  78. z-index: 25;
  79. box-shadow: -0.3vw 0.2vh 0.3vh rgba(0,0,0,0.2);
  80. }
  81. .minicard:hover:not(.minicard-composer),
  82. .is-selected .minicard,
  83. .draggable-hover-card .minicard {
  84. background: #f7f7f7;
  85. }
  86. .draggable-hover-card .minicard {
  87. background: #ededed;
  88. }
  89. .minicard .minicard-cover {
  90. background-position: center;
  91. background-repeat: no-repeat;
  92. background-size: contain;
  93. height: 20vh;
  94. user-select: none;
  95. margin: 0.8vh -1vw 0.8vh -1vw;
  96. border-radius: top 0.3vw;
  97. }
  98. .minicard .minicard-labels {
  99. float: none;
  100. }
  101. .minicard .minicard-labels .minicard-label {
  102. width: clamp(12px, 1.5vw, 16px);
  103. height: clamp(12px, 1.5vw, 16px);
  104. border-radius: 0.3vw;
  105. margin-right: 0.4vw;
  106. margin-bottom: 0.4vh;
  107. }
  108. .minicard .minicard-labels-no-text {
  109. display: flex;
  110. flex-wrap: wrap;
  111. }
  112. .minicard .minicard-custom-fields {
  113. display: block;
  114. }
  115. .minicard .minicard-custom-field {
  116. display: flex;
  117. }
  118. .minicard .minicard-custom-field-item {
  119. flex-grow: 1;
  120. display: block;
  121. word-wrap: break-word;
  122. max-width: 13vw;
  123. margin-right: 0.5vw;
  124. }
  125. .minicard .minicard-custom-field-item-fullwidth {
  126. flex-grow: 1;
  127. display: block;
  128. word-wrap: break-word;
  129. max-width: 100%;
  130. margin-right: 0.5vw;
  131. }
  132. .minicard .handle {
  133. width: clamp(20px, 2.5vw, 28px);
  134. height: clamp(20px, 2.5vw, 28px);
  135. position: absolute;
  136. right: 0.7vw;
  137. top: 0.7vh;
  138. display: none;
  139. }
  140. @media only screen {
  141. .minicard .handle {
  142. display: block;
  143. }
  144. }
  145. .minicard .handle .fa-arrows {
  146. font-size: clamp(16px, 3vw, 20px);
  147. color: #ccc;
  148. }
  149. .minicard .minicard-title .card-number {
  150. color: #b3b3b3;
  151. display: inline-block;
  152. margin-right: 0.7vw;
  153. }
  154. @media only screen {
  155. .minicard .minicard-title p:last-child {
  156. margin-bottom: 0;
  157. }
  158. .minicard .minicard-title .viewer {
  159. display: block;
  160. word-wrap: break-word;
  161. }
  162. }
  163. .minicard .dates {
  164. display: flex;
  165. flex-direction: row;
  166. flex-wrap: wrap;
  167. }
  168. .minicard .date {
  169. margin-right: 0.4vw;
  170. }
  171. /* Unicode icons for minicard dates - matching cardDate.css */
  172. .minicard .card-date.end-date time::before {
  173. content: "🏁"; /* Finish flag - represents end/completion */
  174. }
  175. .minicard .card-date.due-date time::before {
  176. content: "⏰"; /* Alarm clock - represents due/deadline */
  177. }
  178. .minicard .card-date.start-date time::before {
  179. content: "🚀"; /* Rocket - represents start/launch */
  180. }
  181. .minicard .card-date.received-date time::before {
  182. content: "📥"; /* Inbox tray - represents received/incoming */
  183. }
  184. .minicard .card-date time::before {
  185. font-size: inherit;
  186. margin-right: 0.3em;
  187. display: inline-block;
  188. }
  189. /* Date type specific colors for minicards - matching cardDate.css */
  190. .minicard .card-date.received-date {
  191. background-color: #dbdbdb; /* Grey for received - same as base card-date */
  192. }
  193. .minicard .card-date.received-date:hover,
  194. .minicard .card-date.received-date.is-active {
  195. background-color: #b3b3b3;
  196. }
  197. .minicard .card-date.start-date {
  198. background-color: #90ee90; /* Light green for start */
  199. color: #000; /* Black text for start */
  200. }
  201. .minicard .card-date.start-date:hover,
  202. .minicard .card-date.start-date.is-active {
  203. background-color: #7dd87d;
  204. }
  205. .minicard .card-date.due-date {
  206. background-color: #ffd700; /* Yellow for due */
  207. color: #000; /* Black text for due */
  208. }
  209. .minicard .card-date.due-date:hover,
  210. .minicard .card-date.due-date.is-active {
  211. background-color: #e6c200;
  212. }
  213. .minicard .card-date.end-date {
  214. background-color: #ffb3b3; /* Light red for end */
  215. color: #000; /* Black text for end */
  216. }
  217. .minicard .card-date.end-date:hover,
  218. .minicard .card-date.end-date.is-active {
  219. background-color: #ff9999;
  220. }
  221. /* Date status colors for minicards - matching cardDate.css */
  222. .minicard .card-date.overdue {
  223. background-color: #ff4444 !important; /* Red for overdue */
  224. color: #fff !important;
  225. }
  226. .minicard .card-date.overdue:hover,
  227. .minicard .card-date.overdue.is-active {
  228. background-color: #cc3333 !important;
  229. }
  230. .minicard .card-date.due-soon {
  231. background-color: #ffaa00 !important; /* Amber for due soon */
  232. color: #000 !important;
  233. }
  234. .minicard .card-date.due-soon:hover,
  235. .minicard .card-date.due-soon.is-active {
  236. background-color: #e69900 !important;
  237. }
  238. .minicard .card-date.not-due {
  239. /* No special background - uses default date type colors */
  240. }
  241. .minicard .card-date.current {
  242. background-color: #5ba639 !important; /* Green for current/active */
  243. color: #fff !important;
  244. }
  245. .minicard .card-date.current:hover,
  246. .minicard .card-date.current.is-active {
  247. background-color: #46802c !important;
  248. }
  249. .minicard .card-date.completed {
  250. background-color: #90ee90 !important; /* Light green for completed */
  251. color: #000 !important;
  252. }
  253. .minicard .card-date.completed:hover,
  254. .minicard .card-date.completed.is-active {
  255. background-color: #7dd87d !important;
  256. }
  257. .minicard .card-date.completed-early {
  258. background-color: #4caf50 !important; /* Green for completed early */
  259. color: #fff !important;
  260. }
  261. .minicard .card-date.completed-early:hover,
  262. .minicard .card-date.completed-early.is-active {
  263. background-color: #45a049 !important;
  264. }
  265. .minicard .card-date.completed-late {
  266. background-color: #ff9800 !important; /* Orange for completed late */
  267. color: #fff !important;
  268. }
  269. .minicard .card-date.completed-late:hover,
  270. .minicard .card-date.completed-late.is-active {
  271. background-color: #f57c00 !important;
  272. }
  273. .minicard .card-date.completed-on-time {
  274. background-color: #2196f3 !important; /* Blue for completed on time */
  275. color: #fff !important;
  276. }
  277. .minicard .card-date.completed-on-time:hover,
  278. .minicard .card-date.completed-on-time.is-active {
  279. background-color: #1976d2 !important;
  280. }
  281. /* Font Awesome icons in minicard dates */
  282. .minicard .card-date i.fa {
  283. margin-right: 0.3vw;
  284. font-size: 0.9em;
  285. vertical-align: middle;
  286. }
  287. /* Font Awesome icons in minicard spent time */
  288. .minicard .card-time i.fa {
  289. margin-right: 0.3vw;
  290. font-size: 0.9em;
  291. vertical-align: middle;
  292. }
  293. .minicard .badges {
  294. float: left;
  295. margin-top: 1vh;
  296. color: #808080;
  297. }
  298. .minicard .badges:empty {
  299. display: none;
  300. }
  301. .minicard .badges .badge {
  302. float: left;
  303. margin-right: 1.5vw;
  304. margin-bottom: 0.4vh;
  305. font-size: 0.9em;
  306. }
  307. .minicard .badges .badge.is-finished {
  308. background: #3cb500;
  309. padding: 0 0.4vw;
  310. border-radius: 0.4vw;
  311. color: #fff;
  312. }
  313. .minicard .badges .badge:last-of-type {
  314. margin-right: 0;
  315. }
  316. .minicard .badges .badge .badge-icon,
  317. .minicard .badges .badge .badge-text {
  318. vertical-align: middle;
  319. }
  320. .minicard .badges .badge .badge-icon.badge-comment,
  321. .minicard .badges .badge .badge-text.badge-comment {
  322. margin-bottom: 0.1rem;
  323. }
  324. .minicard .badges .badge .badge-text {
  325. font-size: 0.9em;
  326. padding-left: 0.3vw;
  327. line-height: 1.2;
  328. }
  329. .minicard .badges .badge .check-list-text {
  330. padding-left: 0px;
  331. line-height: 1.1;
  332. }
  333. .minicard .minicard-members,
  334. .minicard .minicard-assignees,
  335. .minicard .minicard-creator {
  336. float: right;
  337. margin-left: 0.7vw;
  338. margin-bottom: 0.5vh;
  339. }
  340. .minicard .minicard-members .member,
  341. .minicard .minicard-assignees .member,
  342. .minicard .minicard-creator .member {
  343. float: right;
  344. border-radius: 50%;
  345. height: clamp(24px, 3.5vw, 32px);
  346. width: clamp(24px, 3.5vw, 32px);
  347. margin-bottom: 0.5vh;
  348. }
  349. .minicard .minicard-members .assignee,
  350. .minicard .minicard-assignees .assignee,
  351. .minicard .minicard-creator .assignee {
  352. float: right;
  353. border-radius: 50%;
  354. height: clamp(24px, 3.5vw, 32px);
  355. width: clamp(24px, 3.5vw, 32px);
  356. }
  357. .minicard .minicard-members + .badges,
  358. .minicard .minicard-assignees + .badges,
  359. .minicard .minicard-creator + .badges {
  360. margin-top: 0.7vh;
  361. }
  362. .minicard .minicard-assignees {
  363. border-bottom: 1px solid #f00;
  364. }
  365. .minicard .minicard-creator {
  366. border-bottom: 1px solid #008000;
  367. }
  368. .minicard .minicard-members:empty,
  369. .minicard .minicard-assignees:empty {
  370. display: none;
  371. }
  372. .minicard .minicard-description {
  373. padding: 0.8vh 0 0 1vw;
  374. color: #000;
  375. background-color: #eee;
  376. width: 100%;
  377. margin-bottom: 0.3vh;
  378. margin-left: -0.5vw;
  379. border-radius: 0.4vw;
  380. overflow: hidden;
  381. text-overflow: ellipsis;
  382. display: -webkit-box;
  383. -webkit-line-clamp: 3;
  384. -webkit-box-orient: vertical;
  385. }
  386. .minicard.minicard-composer {
  387. margin-bottom: 1.3vh;
  388. }
  389. .minicard.minicard-composer textarea.minicard-composer-textarea,
  390. .minicard.minicard-composer textarea.minicard-composer-textarea:focus {
  391. resize: none;
  392. background: none;
  393. border: none;
  394. box-shadow: none;
  395. height: auto;
  396. margin: 0;
  397. padding: 0;
  398. max-height: 22vh;
  399. min-height: 5vh;
  400. margin-bottom: 2.5vh;
  401. overflow-y: auto;
  402. }
  403. .parent-prefix {
  404. color: #b3b3b3;
  405. font-size: 0.9em;
  406. }
  407. .parent-subtext {
  408. color: #b3b3b3;
  409. font-size: 0.9em;
  410. }
  411. @media screen and (max-width: 800px) {
  412. .is-selected .minicard {
  413. transform: translateX(0px);
  414. border-bottom-right-radius: 0;
  415. border-top-right-radius: 0;
  416. z-index: 15;
  417. box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  418. }
  419. }
  420. /* https://github.com/wekan/wekan/issues/4254#issuecomment-1037192960 */
  421. .minicard-green {
  422. background-color: #3cb500 !important;
  423. color: #fff !important;
  424. }
  425. .minicard-green:hover:not(.minicard-composer),
  426. .is-selected .minicard-green,
  427. .draggable-hover-card .minicard-green {
  428. background: #3ab000;
  429. }
  430. .draggable-hover-card .minicard-green {
  431. background: #38a800;
  432. }
  433. .minicard-yellow {
  434. background-color: #fad900 !important;
  435. }
  436. .minicard-yellow:hover:not(.minicard-composer),
  437. .is-selected .minicard-yellow,
  438. .draggable-hover-card .minicard-yellow {
  439. background: #f3d200;
  440. }
  441. .draggable-hover-card .minicard-yellow {
  442. background: #e9ca00;
  443. }
  444. .minicard-orange {
  445. background-color: #ff9f19 !important;
  446. }
  447. .minicard-orange:hover:not(.minicard-composer),
  448. .is-selected .minicard-orange,
  449. .draggable-hover-card .minicard-orange {
  450. background: #ff9b11;
  451. }
  452. .draggable-hover-card .minicard-orange {
  453. background: #ff9705;
  454. }
  455. .minicard-red {
  456. background-color: #eb4646 !important;
  457. color: #fff !important;
  458. }
  459. .minicard-red:hover:not(.minicard-composer),
  460. .is-selected .minicard-red,
  461. .draggable-hover-card .minicard-red {
  462. background: #ea3e3e;
  463. }
  464. .draggable-hover-card .minicard-red {
  465. background: #e93333;
  466. }
  467. .minicard-purple {
  468. background-color: #a632db !important;
  469. color: #fff !important;
  470. }
  471. .minicard-purple:hover:not(.minicard-composer),
  472. .is-selected .minicard-purple,
  473. .draggable-hover-card .minicard-purple {
  474. background: #a32bda;
  475. }
  476. .draggable-hover-card .minicard-purple {
  477. background: #9e25d5;
  478. }
  479. .minicard-blue {
  480. background-color: #0079bf !important;
  481. color: #fff !important;
  482. }
  483. .minicard-blue:hover:not(.minicard-composer),
  484. .is-selected .minicard-blue,
  485. .draggable-hover-card .minicard-blue {
  486. background: #0075b9;
  487. }
  488. .draggable-hover-card .minicard-blue {
  489. background: #0071b2;
  490. }
  491. .minicard-pink {
  492. background-color: #ff78cb !important;
  493. }
  494. .minicard-pink:hover:not(.minicard-composer),
  495. .is-selected .minicard-pink,
  496. .draggable-hover-card .minicard-pink {
  497. background: #ff6dc7;
  498. }
  499. .draggable-hover-card .minicard-pink {
  500. background: #ff5ec1;
  501. }
  502. .minicard-sky {
  503. background-color: #00c2e0 !important;
  504. color: #fff !important;
  505. }
  506. .minicard-sky:hover:not(.minicard-composer),
  507. .is-selected .minicard-sky,
  508. .draggable-hover-card .minicard-sky {
  509. background: #00bcd9;
  510. }
  511. .draggable-hover-card .minicard-sky {
  512. background: #00b4d0;
  513. }
  514. .minicard-black {
  515. background-color: #4d4d4d !important;
  516. color: #fff !important;
  517. }
  518. .minicard-black:hover:not(.minicard-composer),
  519. .is-selected .minicard-black,
  520. .draggable-hover-card .minicard-black {
  521. background: #4b4b4b;
  522. }
  523. .draggable-hover-card .minicard-black {
  524. background: #484848;
  525. }
  526. .minicard-lime {
  527. background-color: #51e898 !important;
  528. }
  529. .minicard-lime:hover:not(.minicard-composer),
  530. .is-selected .minicard-lime,
  531. .draggable-hover-card .minicard-lime {
  532. background: #49e793;
  533. }
  534. .draggable-hover-card .minicard-lime {
  535. background: #3ee58d;
  536. }
  537. .minicard-silver {
  538. background-color: #c0c0c0 !important;
  539. }
  540. .minicard-silver:hover:not(.minicard-composer),
  541. .is-selected .minicard-silver,
  542. .draggable-hover-card .minicard-silver {
  543. background: #bababa;
  544. }
  545. .draggable-hover-card .minicard-silver {
  546. background: #b3b3b3;
  547. }
  548. .minicard-peachpuff {
  549. background-color: #ffdab9 !important;
  550. }
  551. .minicard-peachpuff:hover:not(.minicard-composer),
  552. .is-selected .minicard-peachpuff,
  553. .draggable-hover-card .minicard-peachpuff {
  554. background: #ffd3ac;
  555. }
  556. .draggable-hover-card .minicard-peachpuff {
  557. background: #ffca9a;
  558. }
  559. .minicard-crimson {
  560. background-color: #dc143c !important;
  561. color: #fff !important;
  562. }
  563. .minicard-crimson:hover:not(.minicard-composer),
  564. .is-selected .minicard-crimson,
  565. .draggable-hover-card .minicard-crimson {
  566. background: #d5133a;
  567. }
  568. .draggable-hover-card .minicard-crimson {
  569. background: #cd1338;
  570. }
  571. .minicard-plum {
  572. background-color: #dda0dd !important;
  573. }
  574. .minicard-plum:hover:not(.minicard-composer),
  575. .is-selected .minicard-plum,
  576. .draggable-hover-card .minicard-plum {
  577. background: #da98da;
  578. }
  579. .draggable-hover-card .minicard-plum {
  580. background: #d68cd6;
  581. }
  582. .minicard-darkgreen {
  583. background-color: #006400 !important;
  584. color: #fff !important;
  585. }
  586. .minicard-darkgreen:hover:not(.minicard-composer),
  587. .is-selected .minicard-darkgreen,
  588. .draggable-hover-card .minicard-darkgreen {
  589. background: #006100;
  590. }
  591. .draggable-hover-card .minicard-darkgreen {
  592. background: #005d00;
  593. }
  594. .minicard-slateblue {
  595. background-color: #6a5acd !important;
  596. color: #fff !important;
  597. }
  598. .minicard-slateblue:hover:not(.minicard-composer),
  599. .is-selected .minicard-slateblue,
  600. .draggable-hover-card .minicard-slateblue {
  601. background: #6453cb;
  602. }
  603. .draggable-hover-card .minicard-slateblue {
  604. background: #5c4ac8;
  605. }
  606. .minicard-magenta {
  607. background-color: #f0f !important;
  608. color: #fff !important;
  609. }
  610. .minicard-magenta:hover:not(.minicard-composer),
  611. .is-selected .minicard-magenta,
  612. .draggable-hover-card .minicard-magenta {
  613. background: #f700f7;
  614. }
  615. .draggable-hover-card .minicard-magenta {
  616. background: #ed00ed;
  617. }
  618. .minicard-gold {
  619. background-color: #ffd700 !important;
  620. }
  621. .minicard-gold:hover:not(.minicard-composer),
  622. .is-selected .minicard-gold,
  623. .draggable-hover-card .minicard-gold {
  624. background: #f7d100;
  625. }
  626. .draggable-hover-card .minicard-gold {
  627. background: #edc800;
  628. }
  629. .minicard-navy {
  630. background-color: #000080 !important;
  631. color: #fff !important;
  632. }
  633. .minicard-navy:hover:not(.minicard-composer),
  634. .is-selected .minicard-navy,
  635. .draggable-hover-card .minicard-navy {
  636. background: #00007c;
  637. }
  638. .draggable-hover-card .minicard-navy {
  639. background: #007;
  640. }
  641. .minicard-gray {
  642. background-color: #808080 !important;
  643. color: #fff !important;
  644. }
  645. .minicard-gray:hover:not(.minicard-composer),
  646. .is-selected .minicard-gray,
  647. .draggable-hover-card .minicard-gray {
  648. background: #7c7c7c;
  649. }
  650. .draggable-hover-card .minicard-gray {
  651. background: #777;
  652. }
  653. .minicard-saddlebrown {
  654. background-color: #8b4513 !important;
  655. color: #fff !important;
  656. }
  657. .minicard-saddlebrown:hover:not(.minicard-composer),
  658. .is-selected .minicard-saddlebrown,
  659. .draggable-hover-card .minicard-saddlebrown {
  660. background: #874312;
  661. }
  662. .draggable-hover-card .minicard-saddlebrown {
  663. background: #814012;
  664. }
  665. .minicard-paleturquoise {
  666. background-color: #afeeee !important;
  667. }
  668. .minicard-paleturquoise:hover:not(.minicard-composer),
  669. .is-selected .minicard-paleturquoise,
  670. .draggable-hover-card .minicard-paleturquoise {
  671. background: #a5ecec;
  672. }
  673. .draggable-hover-card .minicard-paleturquoise {
  674. background: #97e9e9;
  675. }
  676. .minicard-mistyrose {
  677. background-color: #ffe4e1 !important;
  678. }
  679. .minicard-mistyrose:hover:not(.minicard-composer),
  680. .is-selected .minicard-mistyrose,
  681. .draggable-hover-card .minicard-mistyrose {
  682. background: #ffd7d3;
  683. }
  684. .draggable-hover-card .minicard-mistyrose {
  685. background: #ffc6bf;
  686. }
  687. .minicard-indigo {
  688. background-color: #4b0082 !important;
  689. color: #fff !important;
  690. }
  691. .minicard-indigo:hover:not(.minicard-composer),
  692. .is-selected .minicard-indigo,
  693. .draggable-hover-card .minicard-indigo {
  694. background: #49007e;
  695. }
  696. .draggable-hover-card .minicard-indigo {
  697. background: #460079;
  698. }
  699. .text-red {
  700. color: #f00;
  701. }
  702. .text-green {
  703. color: #008000;
  704. }
  705. /* Drag and drop file upload visual feedback */
  706. .minicard.is-dragging-over {
  707. border: 2px dashed #0079bf;
  708. background-color: #e3f2fd !important;
  709. transform: scale(1.02);
  710. transition: all 0.2s ease;
  711. }
  712. /* List name display on minicard */
  713. .minicard-list-name {
  714. font-size: 0.75em;
  715. color: #8c8c8c;
  716. margin-top: 0.2vh;
  717. display: flex;
  718. align-items: center;
  719. gap: 0.3vw;
  720. }
  721. .minicard-list-name i.fa {
  722. font-size: 0.8em;
  723. opacity: 0.7;
  724. }