new_style.css 28 KB

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