new_style.css 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288
  1. :root {
  2. --color-text: #000000;
  3. --color-text-alt: #ffffff;
  4. --color-blu: #0618be;
  5. --color-viola: #7738fa;
  6. --color-viola-hover: #7738fa40;
  7. --color-viola-hover-flat: #d6c7fe;
  8. --color-lilla: #f6f7ff;
  9. --color-outile: #8979ff;
  10. --color-rosso: #d6234f;
  11. --color-verde: #339e8e;
  12. --color-arancione: #ffb624;
  13. --bs-primary: var(--color-blu);
  14. --bs-primary-rgb: 6, 24, 190;
  15. }
  16. ::-webkit-scrollbar {
  17. width: 0.325rem;
  18. }
  19. /* General styles*/
  20. html,
  21. body {
  22. background-color: var(--color-lilla);
  23. color: var(--color-text);
  24. }
  25. body .btn--ui,
  26. body ul.pagination li .page-link,
  27. body #btn-back-to-top,
  28. body #btn-back-to-bottom {
  29. background-color: var(--color-blu) !important;
  30. font-weight: 600;
  31. border: 1px solid var(--color-blu);
  32. color: white;
  33. }
  34. body .btn--ui.primary {
  35. background-color: var(--color-blu) !important;
  36. }
  37. body .btn--ui.lightGrey,
  38. body .btn--ui.extraLightGrey {
  39. border-color: var(--color-blu);
  40. color: var(--color-blu);
  41. font-weight: 600;
  42. border-width: 1px;
  43. }
  44. body .btn--ui:hover,
  45. body .btn--ui.lightGrey:hover,
  46. body .btn--ui.extraLightGrey:hover,
  47. body ul.pagination li .page-link:hover,
  48. body ul.pagination li.active .page-link,
  49. body #btn-back-to-top:hover,
  50. body #btn-back-to-bottom:hover {
  51. background-color: var(--color-viola) !important;
  52. border-color: var(--color-viola);
  53. color: #ffffff;
  54. }
  55. body #card--dashboard > .btn--ui:has(i[class*="fa-arrow-left"]) {
  56. position: absolute;
  57. top: 0;
  58. margin: 0 !important;
  59. left: 0;
  60. border: none;
  61. padding: 10px;
  62. width: 40px;
  63. height: 40px;
  64. border-radius: 0 !important;
  65. }
  66. body .modal-header.modal-header-blu {
  67. background-color: var(--color-blu);
  68. }
  69. body .modal-header .modal-title {
  70. color: var(--color-text);
  71. }
  72. body .modal-header .btn-close {
  73. color: var(--color-text);
  74. opacity: 1;
  75. filter: unset;
  76. }
  77. body .modal-header.modal-header-blu .modal-title {
  78. color: white;
  79. }
  80. body .modal-header.modal-header-blu .btn-close {
  81. color: white;
  82. filter: invert(1);
  83. }
  84. #setting h5 {
  85. color: var(--color-text);
  86. }
  87. /* Login */
  88. .login--box .form--item label {
  89. width: 100%;
  90. }
  91. .login--box .form--item input.form-control {
  92. border-radius: 15px 0 0 15px !important;
  93. height: 40px;
  94. border: 1px solid #d3dce1 !important;
  95. }
  96. .login--box .form--item input.form-control:focus {
  97. box-shadow: none;
  98. }
  99. .login--box .form--item .input-group-text {
  100. border-radius: 0 15px 15px 0 !important;
  101. }
  102. body .ico--ui.mail {
  103. background-image: none;
  104. mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3Cg id='Livello_1'%3E%3Cg id='Raggruppa_308'%3E%3Crect id='Rettangolo_433' class='cls-1' width='16' height='16'/%3E%3Cpath id='Unione_3' fill='%230C6197' class='cls-2' d='M0,5.3c0-1.8,1.5-3.3,3.3-3.3h9.3c1.8,0,3.3,1.5,3.3,3.3v5.3c0,1.8-1.5,3.3-3.3,3.3H3.3c-1.8,0-3.3-1.5-3.3-3.3v-5.3ZM12.7,3.3H3.3c-1.1,0-2,.9-2,2v5.3c0,1.1.9,2,2,2h9.3c1.1,0,2-.9,2-2v-5.3c0-1.1-.9-2-2-2ZM5.1,8.2c.3-.3.7-.3.9,0,0,0,0,0,0,0,.3.3.3.7,0,.9h0s-1.9,1.9-1.9,1.9c-.3.3-.7.3-.9,0,0,0,0,0,0,0-.3-.3-.3-.7,0-.9h0s1.9-1.9,1.9-1.9ZM12.6,10.1h0c.3.3.3.7,0,.9,0,0,0,0,0,0-.3.3-.7.3-.9,0l-1.9-1.9h0c-.3-.3-.3-.7,0-.9,0,0,0,0,0,0,.3-.3.7-.3.9,0l1.9,1.9ZM7.2,8c-.5,0-1-.2-1.4-.6l-1.9-1.9c-.3-.3-.3-.7,0-.9,0,0,0,0,0,0,.3-.3.7-.3.9,0,0,0,0,0,0,0l1.9,1.9c.1.1.3.2.5.2h1.6c.2,0,.3,0,.5-.2l1.9-1.9c.3-.3.7-.3.9,0,0,0,0,0,0,0,.3.3.3.7,0,.9l-1.9,1.9c-.4.4-.9.6-1.4.6h-1.6Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  105. mask-repeat: no-repeat;
  106. mask-size: contain;
  107. background-color: var(--color-blu);
  108. }
  109. body .ico--ui.lock {
  110. background-image: none;
  111. mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg id='Raggruppa_427' data-name='Raggruppa 427' transform='translate(189 -268)'%3E%3Crect id='Rettangolo_301' data-name='Rettangolo 301' width='16' height='16' transform='translate(-189 268)' fill='none'/%3E%3Cg id='Raggruppa_425' data-name='Raggruppa 425' transform='translate(-4 -3.125)'%3E%3Cpath id='Rettangolo_232' data-name='Rettangolo 232' d='M2.5,0h0A2.5,2.5,0,0,1,5,2.5V4A0,0,0,0,1,5,4H0A0,0,0,0,1,0,4V2.5A2.5,2.5,0,0,1,2.5,0Z' transform='translate(-179.5 274.125)' fill='none' stroke='%23006099' stroke-width='2'/%3E%3Crect id='Rettangolo_302' data-name='Rettangolo 302' width='10' height='7' rx='2' transform='translate(-182 278.125)' fill='none' stroke='%23006099' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  112. mask-repeat: no-repeat;
  113. mask-size: contain;
  114. background-color: var(--color-blu);
  115. }
  116. body .login--box .credential--recovery a {
  117. color: var(--color-blu);
  118. }
  119. body h1.primary,
  120. body h2.primary,
  121. body h3.primary,
  122. body h4.primary,
  123. body h5.primary,
  124. body h6.primary,
  125. body .title-form.primary {
  126. color: var(--color-blu);
  127. }
  128. /* Main content */
  129. body #card--dashboard {
  130. position: relative;
  131. }
  132. /* Hide popover locked on top left corner */
  133. .popover[data-popper-reference-hidden] {
  134. display: none;
  135. }
  136. /* Header */
  137. .header--gestionale {
  138. background-color: var(--color-blu);
  139. padding-block: 10px;
  140. }
  141. .header--gestionale_back {
  142. width: auto;
  143. }
  144. .header--gestionale_back button {
  145. border: none;
  146. background-color: transparent;
  147. color: white;
  148. outline: none;
  149. font-size: 30px;
  150. padding: 0;
  151. line-height: 1;
  152. }
  153. .header--gestionale_logo {
  154. width: auto;
  155. }
  156. .header--gestionale_pageTitle {
  157. width: unset;
  158. flex: 1;
  159. }
  160. .header--userprofile-icon {
  161. vertical-align: middle;
  162. width: 50px;
  163. height: 50px;
  164. border-radius: 12px;
  165. background-color: white;
  166. text-align: center;
  167. border: 2px solid var(--color-outile);
  168. }
  169. /* Sidebar */
  170. #open-filter,
  171. #close-filter {
  172. background-color: var(--color-blu);
  173. }
  174. #sidebar--wrapper #filter--section #accordionExample .accordion-header {
  175. margin-left: 5px;
  176. }
  177. #sidebar--wrapper #filter--section #accordionExample .accordion-button {
  178. display: flex;
  179. flex-direction: row;
  180. flex-wrap: nowrap;
  181. justify-content: flex-start;
  182. align-items: baseline;
  183. gap: 5px;
  184. }
  185. #sidebar--wrapper #filter--section #accordionExample .accordion-button i {
  186. width: 30px;
  187. height: 30px;
  188. display: flex;
  189. flex-direction: row;
  190. flex-wrap: nowrap;
  191. align-content: center;
  192. justify-content: center;
  193. align-items: center;
  194. }
  195. #menu-anagrafica li a.nav-link,
  196. #menu-contabilita li a.nav-link,
  197. #menu-scadenze li a.nav-link,
  198. #menu-anagrafica li:hover a span,
  199. #menu-contabilita li:hover a span,
  200. #menu-scadenze li:hover a span {
  201. color: var(--color-text);
  202. }
  203. #accordionExample .accordion-item:hover,
  204. #menu-anagrafica li:hover,
  205. #menu-contabilita li:hover,
  206. #menu-scadenze li:hover {
  207. /* background-color: transparent; */
  208. background-color: var(--color-viola-hover);
  209. }
  210. #accordionExample .accordion-item.accordion-item-active,
  211. #accordionExample .accordion-item .nav-item.nav-item-active {
  212. background-color: var(--color-viola);
  213. color: #ffffff;
  214. }
  215. #accordionExample .accordion-item .nav-item.nav-item-active a span {
  216. color: #ffffff;
  217. }
  218. /* Resumee card anagrafica */
  219. .section--tab {
  220. border: none;
  221. }
  222. .section--tab h4 {
  223. border-color: var(--color-viola) !important;
  224. padding: 5px !important;
  225. text-transform: uppercase;
  226. font-weight: bold !important;
  227. color: black !important;
  228. }
  229. body #card--resume.card--ui,
  230. body #accountingEntry .accountingEntry_resume.card--ui {
  231. background: unset;
  232. background-color: var(--color-lilla);
  233. color: black;
  234. border: 1px solid var(--color-outile);
  235. border-radius: 15px;
  236. }
  237. body #card--resume.card--ui header,
  238. body #accountingEntry .accountingEntry_resume.card--ui > header {
  239. background: transparent;
  240. border: none;
  241. color: black;
  242. padding: 30px;
  243. padding-top: 35px;
  244. }
  245. body #card--resume.card--ui header span.user-name,
  246. body #card--resume.card--ui .card--resume_body .resume--tab_info h2,
  247. body #card--resume.card--ui .title--tessera_added span.title-detail,
  248. body #accountingEntry .accountingEntry_resume.card--ui > header span.primary {
  249. color: black;
  250. }
  251. body #card--resume.card--ui .card--resume_body .resume--tab_info h2 {
  252. font-size: 20px;
  253. line-height: 1;
  254. display: flex;
  255. align-items: center;
  256. gap: 20px;
  257. }
  258. body #card--resume.card--ui header span.user-name {
  259. font-size: 32px;
  260. line-height: 1;
  261. }
  262. body #card--resume.card--ui header span.user-email {
  263. color: black;
  264. opacity: 0.8;
  265. }
  266. body #card--resume.card--ui .card--resume_body .user-address li,
  267. body #card--resume.card--ui .card--resume_body .user-residence li {
  268. gap: 22px;
  269. align-items: center;
  270. margin-bottom: 15px;
  271. }
  272. body #card--resume.card--ui .card--resume_body .user-address li i,
  273. body #card--resume.card--ui .card--resume_body .user-residence li i,
  274. body #card--resume.card--ui .card--resume_body .resume--tab_info h2 i {
  275. font-size: 20px;
  276. width: 20px;
  277. height: 20px;
  278. color: var(--color-viola);
  279. margin: 0;
  280. }
  281. body #accountingEntry .accountingEntry_resume.card--ui .username > i {
  282. color: var(--color-viola);
  283. }
  284. body #card--resume.card--ui .card--resume_body .resume--tab_info ul {
  285. padding-left: 55px;
  286. }
  287. body #card--resume.card--ui .card--resume_body .resume--tab_info ul li {
  288. padding: 0;
  289. }
  290. body #card--resume.card--ui .card--resume_body .resume--tab_info ul li::marker {
  291. color: var(--color-viola);
  292. }
  293. body #card--resume.card--ui .card--resume_body .resume--tab_info .resume-corso,
  294. body
  295. #card--resume.card--ui
  296. .card--resume_body
  297. .resume--tab_info
  298. .resume-certificato,
  299. body
  300. #card--resume.card--ui
  301. .card--resume_body
  302. .resume--tab_info
  303. .resume-tessera {
  304. border-left: 2px solid var(--color-viola);
  305. padding-left: 15px;
  306. margin-left: 42px;
  307. margin-bottom: 10px;
  308. }
  309. /* Form */
  310. body .title-form.primary {
  311. margin-top: 50px;
  312. }
  313. body label,
  314. body label.form-label {
  315. margin: 0;
  316. color: black;
  317. }
  318. body .form-control:not(textarea),
  319. body form .form-control:not(textarea),
  320. body .form-select,
  321. body form .form-select,
  322. body .select2-selection,
  323. body form .select2-selection,
  324. body input.form-control[type="search"],
  325. body .btn.dropdown-toggle {
  326. border-radius: 15px !important;
  327. height: 40px !important;
  328. border: 1px solid #d3dce1 !important;
  329. background-color: #f5f8fa !important;
  330. }
  331. body textarea.form-control,
  332. body form textarea.form-control {
  333. border-radius: 15px !important;
  334. border: 1px solid #d3dce1 !important;
  335. background-color: #f5f8fa !important;
  336. }
  337. body input.form-check-input,
  338. body form input.form-check-input {
  339. height: 20px !important;
  340. width: 20px !important;
  341. border-radius: 5px !important;
  342. padding: 0 !important;
  343. }
  344. body input.form-check-input:checked[type="checkbox"],
  345. body form input.form-check-input:checked[type="checkbox"],
  346. body input.form-check-input:checked[type="radio"],
  347. body form input.form-check-input:checked[type="radio"] {
  348. background-color: var(--color-blu) !important;
  349. }
  350. body .form-select[multiple] {
  351. color: transparent;
  352. }
  353. body .form-select {
  354. padding-block: 10px;
  355. }
  356. /* contabilità uscite */
  357. #accountingExit .accountingExit_data {
  358. width: 100%;
  359. }
  360. /* dashboard */
  361. body .dashboard-container {
  362. background: var(--color-lilla);
  363. height: calc(100dvh - 86px);
  364. min-height: calc(100dvh - 86px);
  365. overflow: auto;
  366. display: flex;
  367. flex-direction: column;
  368. flex-wrap: nowrap;
  369. gap: 20px;
  370. padding: 2.5rem !important;
  371. background: white;
  372. }
  373. body .dashboard-container .dashboard-card {
  374. border: 1px solid var(--color-outile);
  375. border-radius: 12px;
  376. padding: 20px;
  377. position: relative;
  378. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.13);
  379. }
  380. body .dashboard-container .dashboard-card.card-inverted {
  381. border-color: var(--color-lilla);
  382. background-color: var(--color-lilla);
  383. }
  384. body .dashboard-container .dashboard-card-header {
  385. display: flex;
  386. justify-content: space-between;
  387. align-items: baseline;
  388. margin-bottom: 10px;
  389. }
  390. body .dashboard-container .dashboard-card-title {
  391. font-size: 17px;
  392. font-weight: bold;
  393. color: black;
  394. line-height: 1;
  395. margin-bottom: 10px;
  396. }
  397. body .dashboard-container .dashboard-card-link .dashboard-card-header,
  398. body
  399. .dashboard-container
  400. .dashboard-card-link
  401. .dashboard-card-header
  402. .dashboard-card-title {
  403. margin: 0;
  404. }
  405. body .dashboard-container .dashboard-card-icon {
  406. color: var(--color-viola);
  407. font-size: 20px;
  408. }
  409. body .dashboard-container .dashboard-card-value {
  410. font-size: 48px;
  411. font-weight: bold;
  412. color: black;
  413. margin: 20px 0 5px;
  414. line-height: 1;
  415. }
  416. body .dashboard-container .dashboard-card.dashboard-card-link {
  417. background-color: var(--color-viola-hover);
  418. border-color: transparent;
  419. }
  420. body .dashboard-container .dashboard-card.dashboard-card-link:hover {
  421. background-color: var(--color-viola);
  422. }
  423. body
  424. .dashboard-container
  425. .dashboard-card.dashboard-card-link:hover
  426. .dashboard-card-title,
  427. body
  428. .dashboard-container
  429. .dashboard-card.dashboard-card-link:hover
  430. .dashboard-card-icon {
  431. color: white;
  432. }
  433. body .dashboard-container .card-income .dashboard-card-icon,
  434. body .dashboard-container .card-income .dashboard-card-value {
  435. color: var(--color-verde);
  436. }
  437. body .dashboard-container .card-topay .dashboard-card-icon,
  438. body .dashboard-container .card-topay .dashboard-card-value {
  439. color: var(--color-viola);
  440. }
  441. body .dashboard-container .card-expense .dashboard-card-icon,
  442. body .dashboard-container .card-expense .dashboard-card-value {
  443. color: var(--color-rosso);
  444. }
  445. body .dashboard-container .card-delta .dashboard-card-icon,
  446. body .dashboard-container .card-delta .dashboard-card-value {
  447. color: var(--color-viola);
  448. }
  449. body .dashboard-container .card-income .dashboard-card-value,
  450. body .dashboard-container .card-topay .dashboard-card-value,
  451. body .dashboard-container .card-expense .dashboard-card-value,
  452. body .dashboard-container .card-delta .dashboard-card-value {
  453. font-size: 30px;
  454. }
  455. body .dashboard-container .dashboard-card-info {
  456. font-size: 14px;
  457. }
  458. body .dashboard-container .dashboard-card-info span {
  459. position: relative;
  460. font-weight: 500;
  461. }
  462. body .dashboard-container .dashboard-card-info .more {
  463. color: var(--color-verde);
  464. }
  465. body .dashboard-container .dashboard-card-info .more:before {
  466. content: "+";
  467. }
  468. body .dashboard-container .dashboard-card-info .less {
  469. color: var(--color-rosso);
  470. }
  471. body .dashboard-container .dashboard-card-info .less:before {
  472. content: "-";
  473. }
  474. body .dashboard-container .dashboard-card-change {
  475. font-size: 12px;
  476. color: #666;
  477. }
  478. body .dashboard-container .dashboard-card-change.positive {
  479. color: var(--color-verde);
  480. }
  481. body .dashboard-container .dashboard-card-change.negative {
  482. color: var(--color-rosso);
  483. }
  484. body .dashboard-container .stat-icon {
  485. width: 24px;
  486. height: 24px;
  487. border-radius: 4px;
  488. display: flex;
  489. align-items: center;
  490. justify-content: center;
  491. color: white;
  492. font-size: 12px;
  493. }
  494. body .dashboard-container .courses-list {
  495. max-height: 300px;
  496. overflow-y: auto;
  497. }
  498. body .dashboard-container .course-item {
  499. margin-bottom: 20px;
  500. display: grid;
  501. grid-template-columns: 32px auto 1fr;
  502. align-items: center;
  503. column-gap: 15px;
  504. }
  505. body .dashboard-container .course-item .course-time {
  506. grid-row: span 2;
  507. font-weight: 600;
  508. color: black;
  509. font-size: 12px;
  510. white-space: break-spaces;
  511. }
  512. body .dashboard-container .course-item .course-time:empty {
  513. display: none;
  514. }
  515. body .dashboard-container .course-item .course-divider {
  516. grid-row: span 2;
  517. width: 1px;
  518. height: 100%;
  519. background-color: #ababab;
  520. }
  521. body .dashboard-container .course-item .course-time:empty + .course-divider {
  522. display: none;
  523. }
  524. body .dashboard-container .course-item .course-name {
  525. font-size: 13px;
  526. color: black;
  527. font-weight: 600;
  528. line-height: 1.2;
  529. grid-column: 3;
  530. }
  531. body .dashboard-container .course-item .course-days {
  532. font-size: 12px;
  533. color: #666;
  534. grid-column: 3;
  535. }
  536. body .dashboard-container .fields-grid {
  537. display: grid;
  538. grid-template-columns: 1fr 1fr;
  539. gap: 10px;
  540. }
  541. body .dashboard-container .field-item {
  542. padding: 12px;
  543. border: 2px solid var(--color-verde);
  544. border-radius: 8px;
  545. text-align: center;
  546. background: white;
  547. }
  548. body .dashboard-container .field-item.occupied {
  549. border-color: var(--color-rosso);
  550. background: #fff5f7;
  551. }
  552. body .dashboard-container .field-name {
  553. font-weight: bold;
  554. color: #333;
  555. }
  556. body .dashboard-container .field-time {
  557. color: #666;
  558. font-size: 12px;
  559. }
  560. body .dashboard-container .notes-section {
  561. }
  562. body .dashboard-container .notes-input {
  563. width: 100%;
  564. background-color: white;
  565. outline: none;
  566. font-size: 14px;
  567. min-height: 50px;
  568. resize: vertical;
  569. border: none;
  570. border-radius: 6px;
  571. padding: 10px;
  572. }
  573. body .dashboard-container .save-btn {
  574. background-color: transparent;
  575. color: var(--color-viola);
  576. border: none;
  577. padding: 8px 16px;
  578. border-radius: 6px;
  579. font-size: 12px;
  580. cursor: pointer;
  581. font-weight: bold;
  582. margin-left: auto;
  583. display: block;
  584. will-change: color, background-color;
  585. transition: color 0.3s ease, background-color 0.3s ease;
  586. }
  587. body .dashboard-container .save-btn:hover {
  588. background-color: var(--color-viola);
  589. color: white;
  590. }
  591. body .dashboard-container .notes-list {
  592. max-height: 380px;
  593. overflow-y: auto;
  594. }
  595. body .dashboard-container .notes-list:not(:empty) {
  596. margin-block: 25px;
  597. }
  598. body .dashboard-container .note-item {
  599. display: flex;
  600. align-items: flex-start;
  601. gap: 10px;
  602. padding-bottom: 10px;
  603. margin-bottom: 20px;
  604. border-bottom: 1px solid rgba(0, 0, 0, 35%);
  605. }
  606. body .dashboard-container .note-item:last-of-type {
  607. margin-bottom: 0;
  608. }
  609. body .dashboard-container .note-checkbox {
  610. width: 14px;
  611. height: 14px;
  612. border: 1px solid rgba(0, 0, 0, 35%);
  613. border-radius: 100%;
  614. background: transparent;
  615. color: transparent;
  616. cursor: pointer;
  617. display: flex;
  618. align-items: center;
  619. justify-content: center;
  620. font-size: 12px;
  621. font-weight: bold;
  622. will-change: color, background-color;
  623. transition: color 0.3s ease, background-color 0.3s ease;
  624. }
  625. body .dashboard-container .note-checkbox:hover {
  626. background: var(--color-viola);
  627. color: white;
  628. }
  629. body .dashboard-container .note-content {
  630. flex: 1;
  631. }
  632. body .dashboard-container .note-text {
  633. color: black;
  634. font-size: 14px;
  635. line-height: 1;
  636. font-weight: 500;
  637. }
  638. body .dashboard-container .note-date {
  639. color: black;
  640. font-size: 10px;
  641. }
  642. body .dashboard-container .empty-notes {
  643. text-align: center;
  644. color: #666;
  645. font-size: 13px;
  646. padding: 20px;
  647. font-style: italic;
  648. }
  649. body .dashboard-container .chart-card .chart-container {
  650. grid-column: unset;
  651. }
  652. body .dashboard-container .financial-cards {
  653. display: grid;
  654. grid-template-columns: 1fr 1fr;
  655. gap: 20px;
  656. margin-bottom: 20px;
  657. }
  658. body .dashboard-container .financial-card {
  659. background: white;
  660. border-radius: 12px;
  661. padding: 20px;
  662. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  663. text-align: center;
  664. }
  665. body .dashboard-container .financial-card.income {
  666. border-left: 4px solid var(--color-verde);
  667. }
  668. body .dashboard-container .financial-card.expense {
  669. border-left: 4px solid var(--color-rosso);
  670. }
  671. body .dashboard-container .financial-amount {
  672. font-size: 36px;
  673. font-weight: bold;
  674. margin: 10px 0;
  675. }
  676. body .dashboard-container .financial-amount.income {
  677. color: var(--color-verde);
  678. }
  679. body .dashboard-container .financial-amount.expense {
  680. color: var(--color-rosso);
  681. }
  682. body .dashboard-container .recent-users-table {
  683. width: 100%;
  684. border-collapse: collapse;
  685. margin-top: 20px;
  686. }
  687. body .dashboard-container .recent-users-table th,
  688. body .dashboard-container .recent-users-table td {
  689. text-align: left;
  690. padding: 10px 5px;
  691. border-bottom: 1px solid #f0f0f0;
  692. }
  693. body .dashboard-container .recent-users-table th {
  694. font-weight: bold;
  695. color: var(--color-text);
  696. font-size: 15px;
  697. padding: 5px;
  698. }
  699. body .dashboard-container .recent-users-table td {
  700. font-size: 13px;
  701. color: black;
  702. }
  703. body .dashboard-container .transaction-list {
  704. max-height: 300px;
  705. overflow-y: auto;
  706. }
  707. body .dashboard-container .transaction-item {
  708. display: flex;
  709. justify-content: space-between;
  710. align-items: center;
  711. padding: 12px;
  712. border-bottom: 1px solid #f0f0f0;
  713. }
  714. body .dashboard-container .transaction-name {
  715. font-weight: 500;
  716. color: #333;
  717. }
  718. body .dashboard-container .transaction-amount {
  719. font-weight: bold;
  720. }
  721. body .dashboard-container .transaction-type {
  722. font-size: 10px;
  723. padding: 4px 8px;
  724. border-radius: 12px;
  725. color: white;
  726. font-weight: bold;
  727. }
  728. body .dashboard-container .transaction-type.income {
  729. background: var(--color-verde);
  730. }
  731. body .dashboard-container .transaction-type.expense {
  732. background: var(--color-rosso);
  733. }
  734. body .dashboard-container .participation-bar {
  735. height: 10px;
  736. background: #f0f0f0;
  737. border-radius: 10px;
  738. overflow: hidden;
  739. margin: 8px 0;
  740. }
  741. body .dashboard-container .participation-fill {
  742. height: 100%;
  743. transition: width 0.3s ease;
  744. border-radius: 10px;
  745. background: #8b4cf7;
  746. }
  747. body .dashboard-container .chart-title {
  748. font-size: 16px;
  749. font-weight: 600;
  750. color: #333;
  751. margin-bottom: 15px;
  752. }
  753. body .dashboard-container .grid-4 {
  754. display: grid;
  755. grid-template-columns: repeat(4, 1fr);
  756. gap: 20px;
  757. }
  758. body .dashboard-container .grid-3 {
  759. display: grid;
  760. grid-template-columns: repeat(3, 1fr);
  761. gap: 20px;
  762. }
  763. body .dashboard-container .grid-1-2 {
  764. display: grid;
  765. grid-template-rows: repeat(2, 1fr);
  766. gap: 20px;
  767. }
  768. body .dashboard-container .grid-2 {
  769. display: grid;
  770. grid-template-columns: repeat(2, 1fr);
  771. gap: 20px;
  772. }
  773. body .dashboard-container .grid-2-1 {
  774. display: grid;
  775. grid-template-columns: 2fr 1fr;
  776. gap: 20px;
  777. }
  778. body .dashboard-container .grid-w-2 {
  779. grid-column-end: span 2;
  780. }
  781. body .dashboard-container .grid-w-3 {
  782. grid-column-end: span 3;
  783. }
  784. body .dashboard-container .full-width {
  785. grid-column: span 3;
  786. }
  787. body .dashboard-container .half-width {
  788. grid-column: span 2;
  789. }
  790. body .dashboard-container .fade-out {
  791. opacity: 0;
  792. transform: translateX(100%);
  793. transition: all 0.3s ease;
  794. }
  795. body div.dt-button-background {
  796. pointer-events: none;
  797. }
  798. body .chart-body {
  799. padding: 0;
  800. }
  801. body .table-header .table-cell {
  802. color: var(--color-text);
  803. }
  804. body .course-controls {
  805. border: none;
  806. background: unset;
  807. background-color: var(--color-lilla);
  808. padding-block: 15px;
  809. border-radius: 10px;
  810. }
  811. body .dashboard-container .chart-card .dashboard-card-title {
  812. margin-bottom: 20px;
  813. }
  814. /* dettaglio utente */
  815. body .user--profile_card {
  816. background: unset;
  817. background-color: var(--color-lilla);
  818. color: black;
  819. border: 1px solid var(--color-outile);
  820. border-radius: 15px;
  821. }
  822. body .user--profile_resume {
  823. background: unset;
  824. background-color: var(--color-lilla);
  825. color: black;
  826. border-radius: 0 15px 15px 0;
  827. margin-block: 30px;
  828. }
  829. body .title--tessera_added span.title-detail_date {
  830. color: black;
  831. }
  832. body .user--profile_card .avatar--wrapper {
  833. margin-inline: auto;
  834. }
  835. body .user--profile_card article header {
  836. color: black;
  837. }
  838. body .user--profile_card article .credito_title {
  839. color: black;
  840. }
  841. body .user--profile_card article header i {
  842. color: var(--color-viola);
  843. }
  844. .user--profile_card .resume--info {
  845. border-left: 2px solid var(--color-viola);
  846. padding-left: 15px;
  847. margin-left: 42px;
  848. margin-bottom: 10px;
  849. color: #000000;
  850. }
  851. body .user--profile_resume .resume--tab_info .title i {
  852. color: var(--color-viola);
  853. }
  854. body .user--profile_resume .resume--tab_info .title {
  855. color: black;
  856. }
  857. .user--profile_resume .user_name .name {
  858. color: black;
  859. }
  860. .user--profile_resume .user-address li,
  861. .user--profile_resume .user-residence li {
  862. gap: 22px;
  863. align-items: center;
  864. margin-bottom: 15px;
  865. font-size: 14px;
  866. }
  867. .user--profile_resume .user-address li i,
  868. .user--profile_resume .user-residence li i {
  869. font-size: 20px;
  870. width: 20px;
  871. height: 20px;
  872. color: var(--color-viola);
  873. margin: 0;
  874. }
  875. .user--profile_resume .resume--info.resume-corso {
  876. border-left: 2px solid var(--color-viola);
  877. padding-left: 15px;
  878. margin-left: 42px;
  879. margin-bottom: 10px;
  880. }
  881. .resume--tab_info.gruppi .title h4 {
  882. display: list-item;
  883. }
  884. .resume--tab_info.gruppi .title h4::marker {
  885. color: var(--color-viola);
  886. }
  887. .resume--tab_info.gruppi .resume--info {
  888. padding-left: 55px;
  889. }
  890. .user--profile_resume .user-address li span a {
  891. color: var(--color-blu);
  892. text-decoration: underline;
  893. }
  894. .title--tessera_added span.title-detail {
  895. color: #000000;
  896. }
  897. .comunication-send-options .form-check {
  898. padding: 20px;
  899. border: 1px solid #dee2e6;
  900. border-radius: 0.375rem;
  901. font-size: 14px;
  902. cursor: pointer;
  903. }
  904. .comunication-send-options .form-check:has(.form-check-input:checked) {
  905. border: 1px solid #0618be;
  906. box-shadow: inset 0 0 0 1px #0618be;
  907. color: #0618be;
  908. }
  909. .comunication-send-options .form-check .form-check-input {
  910. display: none;
  911. }
  912. .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
  913. .ck.ck-editor__main > .ck-editor__editable {
  914. min-height: 200px;
  915. }
  916. table#recipients-table td {
  917. padding-right: 30px;
  918. }
  919. .recipients {
  920. padding: 16px 30px;
  921. background: var(--color-lilla);
  922. border-radius: 7px;
  923. border: 1px solid var(--color-outile);
  924. overflow: auto;
  925. max-height: 220px;
  926. display: grid;
  927. grid-template-columns: repeat(auto-fit, minmax(min(333px, 100%), 1fr));
  928. font-size: 14px;
  929. }
  930. .recipients .recipient span.recipient-name {
  931. font-weight: bold;
  932. }
  933. body div.dt-processing {
  934. z-index: 1000;
  935. }
  936. body .select2-container .select2-selection--single .select2-selection__rendered {
  937. display: flex;
  938. flex-wrap: wrap;
  939. align-content: center;
  940. line-height: 1;
  941. padding-top: 9px;
  942. }
  943. body .form-select, body form .form-select {
  944. /* padding-top: 11px; */
  945. line-height: 1;
  946. }
  947. table.dataTable td.dt-type-numeric {
  948. padding-right: 30px;
  949. }
  950. a.member-file-url {
  951. color: var(--color-blu);
  952. text-decoration: underline;
  953. }
  954. .dt-buttons.btn-group .btn {
  955. border-color: #d3dce1;
  956. background-color: #f5f8fa !important;
  957. width: 42px;
  958. height: 40px;
  959. display: flex;
  960. flex-direction: row;
  961. flex-wrap: nowrap;
  962. align-content: center;
  963. justify-content: center;
  964. align-items: center;
  965. }
  966. .dt-buttons.btn-group .btn span i:before {
  967. color: var(--color-text);
  968. }
  969. .dt-buttons.btn-group .btn:hover {
  970. background-color: var(--color-blu) !important;
  971. border-color: var(--color-blu);
  972. }
  973. .dt-buttons.btn-group .btn:hover span i:before {
  974. color: white;
  975. }
  976. .dt-buttons.btn-group .btn.processing:hover:after {
  977. border-bottom-color: white;
  978. border-top-color: white;
  979. }
  980. .dt-buttons.btn-group .btn.processing span i:before {
  981. opacity: 0.2;
  982. }
  983. .password-wrapper {
  984. position: relative;
  985. flex: 1 1 auto;
  986. }
  987. .password-wrapper .password-eye {
  988. position: absolute;
  989. top: 0;
  990. bottom: 0;
  991. right: 0;
  992. width: 40px;
  993. display: flex;
  994. flex-direction: row;
  995. flex-wrap: nowrap;
  996. align-content: center;
  997. justify-content: center;
  998. align-items: center;
  999. cursor: pointer;
  1000. }
  1001. .password-wrapper .form-control {
  1002. padding-right: 50px;
  1003. }
  1004. .password-wrapper .form-control.is-invalid {
  1005. background-position: right calc(0.375em + 0.1875rem + 40px) center;
  1006. }
  1007. .password-wrapper .password-eye .password-shown,
  1008. .password-wrapper .password-eye.shown .password-hidden {
  1009. display: none;
  1010. }
  1011. .password-wrapper .password-eye.shown .password-shown {
  1012. display: block;
  1013. }
  1014. .form-radio-wrapper {
  1015. display: inline-flex;
  1016. gap: 4px;
  1017. margin-right: 20px;
  1018. font-size: 1em;
  1019. }
  1020. .form-radio-wrapper:last-of-type {
  1021. margin-right: 0;
  1022. }
  1023. .table-actions button {
  1024. border-color: #d3dce1;
  1025. background-color: #f5f8fa !important;
  1026. width: 42px;
  1027. height: 40px;
  1028. display: inline-flex;
  1029. flex-direction: row;
  1030. flex-wrap: nowrap;
  1031. align-content: center;
  1032. justify-content: center;
  1033. align-items: center;
  1034. }
  1035. .table-actions button:hover {
  1036. color: white;
  1037. background-color: var(--color-blu) !important;
  1038. }
  1039. /* Calendar styles */
  1040. #calendar {
  1041. --fc-today-bg-color: var(--color-lilla);
  1042. --fc-highlight-color: var(--color-viola-hover-flat);
  1043. }
  1044. #calendar.fc .fc-daygrid-body {
  1045. --fc-event-bg-color: var(--color-blu);
  1046. --fc-event-border-color: var(--color-blu);
  1047. --fc-event-text-color: var(--color-text);
  1048. }
  1049. #calendar.fc .fc-timegrid-body {
  1050. --fc-event-bg-color: var(--color-viola-hover-flat);
  1051. --fc-event-border-color: var(--color-viola-hover-flat);
  1052. --fc-event-text-color: var(--color-text);
  1053. }
  1054. #calendar.fc .fc-view-harness {
  1055. height: calc(100dvh - 280px) !important;
  1056. }
  1057. #calendar.fc .fc-button-primary {
  1058. background-color: var(--color-blu);
  1059. border-color: var(--color-blu);
  1060. color: white;
  1061. }
  1062. #calendar.fc .fc-button-primary:hover {
  1063. background-color: var(--color-viola);
  1064. border-color: var(--color-viola);
  1065. color: white;
  1066. }
  1067. #calendar.fc .fc-button-primary:not(:disabled).fc-button-active,
  1068. #calendar.fc .fc-button-primary:not(:disabled):active {
  1069. background-color: var(--color-viola-hover-flat);
  1070. border-color: var(--color-viola-hover-flat);
  1071. color: var(--color-text);
  1072. }
  1073. #calendar.fc .fc-daygrid-body .fc-daygrid-event {
  1074. text-align: center;
  1075. margin: 0;
  1076. border-radius: 0;
  1077. background: transparent;
  1078. border: transparent;
  1079. font-weight: bold;
  1080. }
  1081. /* END - Calendar styles */