new_style.css 26 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  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::marker {
  285. color: var(--color-viola);
  286. }
  287. body #card--resume.card--ui .card--resume_body .resume--tab_info .resume-corso,
  288. body
  289. #card--resume.card--ui
  290. .card--resume_body
  291. .resume--tab_info
  292. .resume-certificato,
  293. body
  294. #card--resume.card--ui
  295. .card--resume_body
  296. .resume--tab_info
  297. .resume-tessera {
  298. border-left: 2px solid var(--color-viola);
  299. padding-left: 15px;
  300. margin-left: 42px;
  301. margin-bottom: 10px;
  302. }
  303. /* Form */
  304. body .title-form.primary {
  305. margin-top: 50px;
  306. }
  307. body label,
  308. body label.form-label {
  309. margin: 0;
  310. color: black;
  311. }
  312. body .form-control,
  313. body form .form-control,
  314. body .form-select,
  315. body form .form-select,
  316. body .select2-selection,
  317. body form .select2-selection,
  318. body input.form-control[type="search"],
  319. body .btn.dropdown-toggle {
  320. border-radius: 15px !important;
  321. height: 40px !important;
  322. border: 1px solid #d3dce1 !important;
  323. background-color: #f5f8fa !important;
  324. }
  325. body .form-check-input,
  326. body form .form-check-input {
  327. height: 20px !important;
  328. width: 20px !important;
  329. border-radius: 5px !important;
  330. padding: 0 !important;
  331. }
  332. body .form-check-input:checked[type="checkbox"],
  333. body
  334. form
  335. .form-check-input:checked[type="checkbox"]
  336. body
  337. .form-check-input:checked[type="radio"],
  338. body form .form-check-input:checked[type="radio"] {
  339. background-color: var(--color-blu) !important;
  340. }
  341. body .form-select[multiple] {
  342. color: transparent;
  343. }
  344. body .form-select {
  345. padding-block: 10px;
  346. }
  347. /* contabilità uscite */
  348. #accountingExit .accountingExit_data {
  349. width: 100%;
  350. }
  351. /* dashboard */
  352. body .dashboard-container {
  353. background: var(--color-lilla);
  354. height: calc(100dvh - 86px);
  355. min-height: calc(100dvh - 86px);
  356. overflow: auto;
  357. display: flex;
  358. flex-direction: column;
  359. flex-wrap: nowrap;
  360. gap: 20px;
  361. padding: 2.5rem !important;
  362. background: white;
  363. }
  364. body .dashboard-container .dashboard-card {
  365. border: 1px solid var(--color-outile);
  366. border-radius: 12px;
  367. padding: 20px;
  368. position: relative;
  369. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.13);
  370. }
  371. body .dashboard-container .dashboard-card.card-inverted {
  372. border-color: var(--color-lilla);
  373. background-color: var(--color-lilla);
  374. }
  375. body .dashboard-container .dashboard-card-header {
  376. display: flex;
  377. justify-content: space-between;
  378. align-items: baseline;
  379. margin-bottom: 10px;
  380. }
  381. body .dashboard-container .dashboard-card-title {
  382. font-size: 17px;
  383. font-weight: bold;
  384. color: black;
  385. line-height: 1;
  386. margin-bottom: 10px;
  387. }
  388. body .dashboard-container .dashboard-card-link .dashboard-card-header,
  389. body
  390. .dashboard-container
  391. .dashboard-card-link
  392. .dashboard-card-header
  393. .dashboard-card-title {
  394. margin: 0;
  395. }
  396. body .dashboard-container .dashboard-card-icon {
  397. color: var(--color-viola);
  398. font-size: 20px;
  399. }
  400. body .dashboard-container .dashboard-card-value {
  401. font-size: 48px;
  402. font-weight: bold;
  403. color: black;
  404. margin: 20px 0 5px;
  405. line-height: 1;
  406. }
  407. body .dashboard-container .dashboard-card.dashboard-card-link {
  408. background-color: var(--color-viola-hover);
  409. border-color: transparent;
  410. }
  411. body .dashboard-container .dashboard-card.dashboard-card-link:hover {
  412. background-color: var(--color-viola);
  413. }
  414. body
  415. .dashboard-container
  416. .dashboard-card.dashboard-card-link:hover
  417. .dashboard-card-title,
  418. body
  419. .dashboard-container
  420. .dashboard-card.dashboard-card-link:hover
  421. .dashboard-card-icon {
  422. color: white;
  423. }
  424. body .dashboard-container .card-income .dashboard-card-icon,
  425. body .dashboard-container .card-income .dashboard-card-value {
  426. color: var(--color-verde);
  427. }
  428. body .dashboard-container .card-topay .dashboard-card-icon,
  429. body .dashboard-container .card-topay .dashboard-card-value {
  430. color: var(--color-viola);
  431. }
  432. body .dashboard-container .card-expense .dashboard-card-icon,
  433. body .dashboard-container .card-expense .dashboard-card-value {
  434. color: var(--color-rosso);
  435. }
  436. body .dashboard-container .card-delta .dashboard-card-icon,
  437. body .dashboard-container .card-delta .dashboard-card-value {
  438. color: var(--color-viola);
  439. }
  440. body .dashboard-container .card-income .dashboard-card-value,
  441. body .dashboard-container .card-topay .dashboard-card-value,
  442. body .dashboard-container .card-expense .dashboard-card-value,
  443. body .dashboard-container .card-delta .dashboard-card-value {
  444. font-size: 30px;
  445. }
  446. body .dashboard-container .dashboard-card-info {
  447. font-size: 14px;
  448. }
  449. body .dashboard-container .dashboard-card-info span {
  450. position: relative;
  451. font-weight: 500;
  452. }
  453. body .dashboard-container .dashboard-card-info .more {
  454. color: var(--color-verde);
  455. }
  456. body .dashboard-container .dashboard-card-info .more:before {
  457. content: "+";
  458. }
  459. body .dashboard-container .dashboard-card-info .less {
  460. color: var(--color-rosso);
  461. }
  462. body .dashboard-container .dashboard-card-info .less:before {
  463. content: "-";
  464. }
  465. body .dashboard-container .dashboard-card-change {
  466. font-size: 12px;
  467. color: #666;
  468. }
  469. body .dashboard-container .dashboard-card-change.positive {
  470. color: var(--color-verde);
  471. }
  472. body .dashboard-container .dashboard-card-change.negative {
  473. color: var(--color-rosso);
  474. }
  475. body .dashboard-container .stat-icon {
  476. width: 24px;
  477. height: 24px;
  478. border-radius: 4px;
  479. display: flex;
  480. align-items: center;
  481. justify-content: center;
  482. color: white;
  483. font-size: 12px;
  484. }
  485. body .dashboard-container .courses-list {
  486. max-height: 300px;
  487. overflow-y: auto;
  488. }
  489. body .dashboard-container .course-item {
  490. margin-bottom: 20px;
  491. display: grid;
  492. grid-template-columns: 32px auto 1fr;
  493. align-items: center;
  494. column-gap: 15px;
  495. }
  496. body .dashboard-container .course-item .course-time {
  497. grid-row: span 2;
  498. font-weight: 600;
  499. color: black;
  500. font-size: 12px;
  501. white-space: break-spaces;
  502. }
  503. body .dashboard-container .course-item .course-time:empty {
  504. display: none;
  505. }
  506. body .dashboard-container .course-item .course-divider {
  507. grid-row: span 2;
  508. width: 1px;
  509. height: 100%;
  510. background-color: #ababab;
  511. }
  512. body .dashboard-container .course-item .course-time:empty + .course-divider {
  513. display: none;
  514. }
  515. body .dashboard-container .course-item .course-name {
  516. font-size: 13px;
  517. color: black;
  518. font-weight: 600;
  519. line-height: 1.2;
  520. grid-column: 3;
  521. }
  522. body .dashboard-container .course-item .course-days {
  523. font-size: 12px;
  524. color: #666;
  525. grid-column: 3;
  526. }
  527. body .dashboard-container .fields-grid {
  528. display: grid;
  529. grid-template-columns: 1fr 1fr;
  530. gap: 10px;
  531. }
  532. body .dashboard-container .field-item {
  533. padding: 12px;
  534. border: 2px solid var(--color-verde);
  535. border-radius: 8px;
  536. text-align: center;
  537. background: white;
  538. }
  539. body .dashboard-container .field-item.occupied {
  540. border-color: var(--color-rosso);
  541. background: #fff5f7;
  542. }
  543. body .dashboard-container .field-name {
  544. font-weight: bold;
  545. color: #333;
  546. }
  547. body .dashboard-container .field-time {
  548. color: #666;
  549. font-size: 12px;
  550. }
  551. body .dashboard-container .notes-section {
  552. }
  553. body .dashboard-container .notes-input {
  554. width: 100%;
  555. background-color: white;
  556. outline: none;
  557. font-size: 14px;
  558. min-height: 50px;
  559. resize: vertical;
  560. border: none;
  561. border-radius: 6px;
  562. padding: 10px;
  563. }
  564. body .dashboard-container .save-btn {
  565. background-color: transparent;
  566. color: var(--color-viola);
  567. border: none;
  568. padding: 8px 16px;
  569. border-radius: 6px;
  570. font-size: 12px;
  571. cursor: pointer;
  572. font-weight: bold;
  573. margin-left: auto;
  574. display: block;
  575. will-change: color, background-color;
  576. transition: color 0.3s ease, background-color 0.3s ease;
  577. }
  578. body .dashboard-container .save-btn:hover {
  579. background-color: var(--color-viola);
  580. color: white;
  581. }
  582. body .dashboard-container .notes-list {
  583. max-height: 380px;
  584. overflow-y: auto;
  585. }
  586. body .dashboard-container .notes-list:not(:empty) {
  587. margin-block: 25px;
  588. }
  589. body .dashboard-container .note-item {
  590. display: flex;
  591. align-items: flex-start;
  592. gap: 10px;
  593. padding-bottom: 10px;
  594. margin-bottom: 20px;
  595. border-bottom: 1px solid rgba(0, 0, 0, 35%);
  596. }
  597. body .dashboard-container .note-item:last-of-type {
  598. margin-bottom: 0;
  599. }
  600. body .dashboard-container .note-checkbox {
  601. width: 14px;
  602. height: 14px;
  603. border: 1px solid rgba(0, 0, 0, 35%);
  604. border-radius: 100%;
  605. background: transparent;
  606. color: transparent;
  607. cursor: pointer;
  608. display: flex;
  609. align-items: center;
  610. justify-content: center;
  611. font-size: 12px;
  612. font-weight: bold;
  613. will-change: color, background-color;
  614. transition: color 0.3s ease, background-color 0.3s ease;
  615. }
  616. body .dashboard-container .note-checkbox:hover {
  617. background: var(--color-viola);
  618. color: white;
  619. }
  620. body .dashboard-container .note-content {
  621. flex: 1;
  622. }
  623. body .dashboard-container .note-text {
  624. color: black;
  625. font-size: 14px;
  626. line-height: 1;
  627. font-weight: 500;
  628. }
  629. body .dashboard-container .note-date {
  630. color: black;
  631. font-size: 10px;
  632. }
  633. body .dashboard-container .empty-notes {
  634. text-align: center;
  635. color: #666;
  636. font-size: 13px;
  637. padding: 20px;
  638. font-style: italic;
  639. }
  640. body .dashboard-container .chart-card .chart-container {
  641. grid-column: unset;
  642. }
  643. body .dashboard-container .financial-cards {
  644. display: grid;
  645. grid-template-columns: 1fr 1fr;
  646. gap: 20px;
  647. margin-bottom: 20px;
  648. }
  649. body .dashboard-container .financial-card {
  650. background: white;
  651. border-radius: 12px;
  652. padding: 20px;
  653. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  654. text-align: center;
  655. }
  656. body .dashboard-container .financial-card.income {
  657. border-left: 4px solid var(--color-verde);
  658. }
  659. body .dashboard-container .financial-card.expense {
  660. border-left: 4px solid var(--color-rosso);
  661. }
  662. body .dashboard-container .financial-amount {
  663. font-size: 36px;
  664. font-weight: bold;
  665. margin: 10px 0;
  666. }
  667. body .dashboard-container .financial-amount.income {
  668. color: var(--color-verde);
  669. }
  670. body .dashboard-container .financial-amount.expense {
  671. color: var(--color-rosso);
  672. }
  673. body .dashboard-container .recent-users-table {
  674. width: 100%;
  675. border-collapse: collapse;
  676. margin-top: 20px;
  677. }
  678. body .dashboard-container .recent-users-table th,
  679. body .dashboard-container .recent-users-table td {
  680. text-align: left;
  681. padding: 10px 5px;
  682. border-bottom: 1px solid #f0f0f0;
  683. }
  684. body .dashboard-container .recent-users-table th {
  685. font-weight: bold;
  686. color: var(--color-text);
  687. font-size: 15px;
  688. padding: 5px;
  689. }
  690. body .dashboard-container .recent-users-table td {
  691. font-size: 13px;
  692. color: black;
  693. }
  694. body .dashboard-container .transaction-list {
  695. max-height: 300px;
  696. overflow-y: auto;
  697. }
  698. body .dashboard-container .transaction-item {
  699. display: flex;
  700. justify-content: space-between;
  701. align-items: center;
  702. padding: 12px;
  703. border-bottom: 1px solid #f0f0f0;
  704. }
  705. body .dashboard-container .transaction-name {
  706. font-weight: 500;
  707. color: #333;
  708. }
  709. body .dashboard-container .transaction-amount {
  710. font-weight: bold;
  711. }
  712. body .dashboard-container .transaction-type {
  713. font-size: 10px;
  714. padding: 4px 8px;
  715. border-radius: 12px;
  716. color: white;
  717. font-weight: bold;
  718. }
  719. body .dashboard-container .transaction-type.income {
  720. background: var(--color-verde);
  721. }
  722. body .dashboard-container .transaction-type.expense {
  723. background: var(--color-rosso);
  724. }
  725. body .dashboard-container .participation-bar {
  726. height: 10px;
  727. background: #f0f0f0;
  728. border-radius: 10px;
  729. overflow: hidden;
  730. margin: 8px 0;
  731. }
  732. body .dashboard-container .participation-fill {
  733. height: 100%;
  734. transition: width 0.3s ease;
  735. border-radius: 10px;
  736. }
  737. body .dashboard-container .participation-fill.padel {
  738. background: #ffd700;
  739. }
  740. body .dashboard-container .participation-fill.tennis {
  741. background: #8b4cf7;
  742. }
  743. body .dashboard-container .participation-fill.pallavolo {
  744. background: #ff6b35;
  745. }
  746. body .dashboard-container .participation-fill.yoga {
  747. background: var(--color-verde);
  748. }
  749. body .dashboard-container .chart-title {
  750. font-size: 16px;
  751. font-weight: 600;
  752. color: #333;
  753. margin-bottom: 15px;
  754. }
  755. body .dashboard-container .grid-4 {
  756. display: grid;
  757. grid-template-columns: repeat(4, 1fr);
  758. gap: 20px;
  759. }
  760. body .dashboard-container .grid-3 {
  761. display: grid;
  762. grid-template-columns: repeat(3, 1fr);
  763. gap: 20px;
  764. }
  765. body .dashboard-container .grid-1-2 {
  766. display: grid;
  767. grid-template-rows: repeat(2, 1fr);
  768. gap: 20px;
  769. }
  770. body .dashboard-container .grid-2 {
  771. display: grid;
  772. grid-template-columns: repeat(2, 1fr);
  773. gap: 20px;
  774. }
  775. body .dashboard-container .grid-2-1 {
  776. display: grid;
  777. grid-template-columns: 2fr 1fr;
  778. gap: 20px;
  779. }
  780. body .dashboard-container .grid-w-2 {
  781. grid-column-end: span 2;
  782. }
  783. body .dashboard-container .grid-w-3 {
  784. grid-column-end: span 3;
  785. }
  786. body .dashboard-container .full-width {
  787. grid-column: span 3;
  788. }
  789. body .dashboard-container .half-width {
  790. grid-column: span 2;
  791. }
  792. body .dashboard-container .fade-out {
  793. opacity: 0;
  794. transform: translateX(100%);
  795. transition: all 0.3s ease;
  796. }
  797. body div.dt-button-background {
  798. pointer-events: none;
  799. }
  800. body .chart-body {
  801. padding: 0;
  802. }
  803. body .table-header .table-cell {
  804. color: var(--color-text);
  805. }
  806. body .course-controls {
  807. border: none;
  808. background: unset;
  809. background-color: var(--color-lilla);
  810. padding-block: 15px;
  811. border-radius: 10px;
  812. }
  813. body .dashboard-container .chart-card .dashboard-card-title {
  814. margin-bottom: 20px;
  815. }
  816. /* dettaglio utente */
  817. body .user--profile_card {
  818. background: unset;
  819. background-color: var(--color-lilla);
  820. color: black;
  821. border: 1px solid var(--color-outile);
  822. border-radius: 15px;
  823. }
  824. body .user--profile_resume {
  825. background: unset;
  826. background-color: var(--color-lilla);
  827. color: black;
  828. border-radius: 0 15px 15px 0;
  829. margin-block: 30px;
  830. }
  831. body .title--tessera_added span.title-detail_date {
  832. color: black;
  833. }
  834. body .user--profile_card .avatar--wrapper {
  835. margin-inline: auto;
  836. }
  837. body .user--profile_card article header {
  838. color: black;
  839. }
  840. body .user--profile_card article .credito_title {
  841. color: black;
  842. }
  843. body .user--profile_card article header i {
  844. color: var(--color-viola);
  845. }
  846. .user--profile_card .resume--info {
  847. border-left: 2px solid var(--color-viola);
  848. padding-left: 15px;
  849. margin-left: 42px;
  850. margin-bottom: 10px;
  851. color: #000000;
  852. }
  853. body .user--profile_resume .resume--tab_info .title i {
  854. color: var(--color-viola);
  855. }
  856. body .user--profile_resume .resume--tab_info .title {
  857. color: black;
  858. }
  859. .user--profile_resume .user_name .name {
  860. color: black;
  861. }
  862. .user--profile_resume .user-address li,
  863. .user--profile_resume .user-residence li {
  864. gap: 22px;
  865. align-items: center;
  866. margin-bottom: 15px;
  867. font-size: 14px;
  868. }
  869. .user--profile_resume .user-address li i,
  870. .user--profile_resume .user-residence li i {
  871. font-size: 20px;
  872. width: 20px;
  873. height: 20px;
  874. color: var(--color-viola);
  875. margin: 0;
  876. }
  877. .user--profile_resume .resume--info.resume-corso {
  878. border-left: 2px solid var(--color-viola);
  879. padding-left: 15px;
  880. margin-left: 42px;
  881. margin-bottom: 10px;
  882. }
  883. .resume--tab_info.gruppi .title h4 {
  884. display: list-item;
  885. }
  886. .resume--tab_info.gruppi .title h4::marker {
  887. color: var(--color-viola);
  888. }
  889. .resume--tab_info.gruppi .resume--info {
  890. padding-left: 55px;
  891. }
  892. .user--profile_resume .user-address li span a {
  893. color: var(--color-blu);
  894. text-decoration: underline;
  895. }
  896. .title--tessera_added span.title-detail {
  897. color: #000000;
  898. }
  899. .comunication-send-options .form-check {
  900. padding: 20px;
  901. border: 1px solid #dee2e6;
  902. border-radius: 0.375rem;
  903. font-size: 14px;
  904. cursor: pointer;
  905. }
  906. .comunication-send-options .form-check:has(.form-check-input:checked) {
  907. border: 1px solid #0618be;
  908. box-shadow: inset 0 0 0 1px #0618be;
  909. color: #0618be;
  910. }
  911. .comunication-send-options .form-check .form-check-input {
  912. display: none;
  913. }
  914. .ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
  915. .ck.ck-editor__main > .ck-editor__editable {
  916. min-height: 200px;
  917. }
  918. table#recipients-table td {
  919. padding-right: 30px;
  920. }
  921. .recipients {
  922. padding: 16px 30px;
  923. background: var(--color-lilla);
  924. border-radius: 7px;
  925. border: 1px solid var(--color-outile);
  926. overflow: auto;
  927. max-height: 220px;
  928. display: grid;
  929. grid-template-columns: repeat(auto-fit, minmax(min(333px, 100%), 1fr));
  930. font-size: 14px;
  931. }
  932. .recipients .recipient span.recipient-name {
  933. font-weight: bold;
  934. }
  935. body div.dt-processing {
  936. z-index: 1000;
  937. }
  938. body .select2-container .select2-selection--single .select2-selection__rendered {
  939. display: flex;
  940. flex-wrap: wrap;
  941. align-content: center;
  942. line-height: 1;
  943. padding-top: 9px;
  944. }
  945. body .form-select, body form .form-select {
  946. padding-top: 9px;
  947. }
  948. table.dataTable td.dt-type-numeric {
  949. padding-right: 30px;
  950. }
  951. a.member-file-url {
  952. color: var(--color-blu);
  953. text-decoration: underline;
  954. }
  955. .dt-buttons.btn-group .btn {
  956. border-color: #d3dce1;
  957. background-color: #f5f8fa !important;
  958. width: 42px;
  959. height: 40px;
  960. display: flex;
  961. flex-direction: row;
  962. flex-wrap: nowrap;
  963. align-content: center;
  964. justify-content: center;
  965. align-items: center;
  966. }
  967. .dt-buttons.btn-group .btn span i:before {
  968. color: var(--color-text);
  969. }
  970. .dt-buttons.btn-group .btn:hover {
  971. background-color: var(--color-blu) !important;
  972. border-color: var(--color-blu);
  973. }
  974. .dt-buttons.btn-group .btn:hover span i:before {
  975. color: white;
  976. }
  977. .dt-buttons.btn-group .btn.processing:hover:after {
  978. border-bottom-color: white;
  979. border-top-color: white;
  980. }
  981. .dt-buttons.btn-group .btn.processing span i:before {
  982. opacity: 0.2;
  983. }