theme.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. /* OVERRIDE - À MODIFIER POUR CHANGER LE THÈME GÉNÉRAL */
  2. /*Sélection avec la souris*/
  3. ::selection {
  4. color: #fff;
  5. background: #993352; /* WebKit/Blink Browsers */
  6. }
  7. ::-moz-selection {
  8. color: #fff;
  9. background: #993352; /* Gecko Browsers */
  10. }
  11. /* Toast Javascript pour les messages renvoyés */
  12. .toast-error {
  13. background: #ca023e !important;
  14. }
  15. .toast-info {
  16. background: #9d948b !important;
  17. }
  18. .toast-success {
  19. background: #1e998d !important;
  20. }
  21. .toast-warning {
  22. color: #212529 !important;
  23. background: #cea75d !important;
  24. }
  25. /* Textes bootstrap */
  26. .text-info { color: #9c948b!important; }
  27. .text-success { color: #1e998d!important; }
  28. .text-danger { color: #ca023e!important; }
  29. .text-dark { color: #373b3c!important; }
  30. .text-primary { color: #847a71!important; }
  31. .btn .text-info:hover,
  32. .btn .text-info:focus {
  33. color: #847a71!important;
  34. transition: color .1s ease-in-out;
  35. }
  36. .btn .text-success:hover,
  37. .btn .text-success:focus {
  38. color: #166f66!important;
  39. transition: color .1s ease-in-out;
  40. }
  41. .btn .text-danger:hover,
  42. .btn .text-danger:focus {
  43. color: #97022f!important;
  44. transition: color .1s ease-in-out;
  45. }
  46. .btn .text-dark:hover,
  47. .btn .text-dark:focus {
  48. color: #202222!important;
  49. transition: color .1s ease-in-out;
  50. }
  51. .btn .text-primary:hover,
  52. .btn .text-primary:focus {
  53. color: #4d4742!important;
  54. transition: color .1s ease-in-out;
  55. }
  56. /*.text-warning { color: #28a745!important; }
  57. .text-light { color: #28a745!important; }
  58. .text-secondary { color: #28a745!important; }*/
  59. /*Bouton de retour en haut*/
  60. #toTheTop{
  61. background-color: #8d1136;
  62. }
  63. #toTheTop:after{
  64. color: #fff;
  65. }
  66. /*Barre de menu en haut de page*/
  67. #mainMenu {
  68. border-top: 3px solid #8d1136;
  69. background: #373b3c;
  70. }
  71. /* Liens navbar*/
  72. .navbar-nav .nav-link {
  73. padding-right: 1rem !important;
  74. padding-left: 1rem !important;
  75. }
  76. .navbar-dark .navbar-nav .nav-link,
  77. .navbar-dark .navbar-nav .nav-link {
  78. color: #9c9c9c;
  79. }
  80. .navbar-dark .navbar-nav .active > .nav-link,
  81. .navbar-dark .navbar-nav .nav-link.active,
  82. .navbar-dark .navbar-nav .nav-link.show,
  83. .navbar-dark .navbar-nav .show > .nav-link {
  84. color: #ffffff;
  85. }
  86. .navbar-dark .navbar-nav .nav-link:focus,
  87. .navbar-dark .navbar-nav .nav-link:hover {
  88. color: #ffffff;
  89. transition: all .1s ease-out;
  90. }
  91. /* Inputs */
  92. input:required,
  93. textarea:required,
  94. select:required {
  95. border-left: 0.25rem solid #993352 !important;
  96. }
  97. /*Boutons & Badges*/
  98. .btn-success {
  99. background-color: #1e998d;
  100. border-color: #1e998d;
  101. }
  102. .btn-success:hover,
  103. .btn-success:focus,
  104. .btn-success:active,
  105. .btn-success:not(:disabled):not(.disabled).active,
  106. .btn-success:not(:disabled):not(.disabled):active,
  107. .show > .btn-success.dropdown-toggle {
  108. box-shadow: none !important;
  109. background-color: #166f66;
  110. border-color: #166f66;
  111. }
  112. .btn-success:not(:disabled):not(.disabled).active:focus,
  113. .btn-success:not(:disabled):not(.disabled):active:focus,
  114. .show > .btn-success.dropdown-toggle:focus {
  115. box-shadow: none;
  116. }
  117. .btn-success.disabled,
  118. .btn-success:disabled {
  119. color: #fff;
  120. background-color: #1e998d;
  121. border-color: #1e998d;
  122. }
  123. .badge-success {
  124. color: #fff;
  125. background-color: #1e998d;
  126. }
  127. .badge-success[href]:focus,
  128. .badge-success[href]:hover {
  129. background-color: #166f66;
  130. }
  131. .border-success {
  132. border-color: #1e998d !important;
  133. }
  134. .btn-primary {
  135. background-color: #ffffff;
  136. border-color: #847a71;
  137. color: #847a71;
  138. }
  139. .btn-primary:hover,
  140. .btn-primary:focus,
  141. .btn-primary:active,
  142. .btn-primary:not(:disabled):not(.disabled).active,
  143. .btn-primary:not(:disabled):not(.disabled):active,
  144. .show > .btn-primary.dropdown-toggle {
  145. box-shadow: none;
  146. background-color: #e3e0de;
  147. border-color: #4d4742;
  148. color: #4d4742;
  149. }
  150. .btn-primary:not(:disabled):not(.disabled).active:focus,
  151. .btn-primary:not(:disabled):not(.disabled):active:focus,
  152. .show > .btn-primary.dropdown-toggle:focus {
  153. box-shadow: none;
  154. }
  155. .btn-primary.disabled,
  156. .btn-primary:disabled {
  157. color: #fff;
  158. background-color: #847a71;
  159. border-color: #847a71;
  160. }
  161. .badge-primary {
  162. color: #847a71;
  163. border: 1px solid;
  164. border-color: #847a71;
  165. background-color: #ffffff;
  166. }
  167. .badge-primary[href]:focus,
  168. .badge-primary[href]:hover {
  169. color: #4d4742;
  170. border-color: #4d4742;
  171. background-color: #e3e0de;
  172. }
  173. .border-primary {
  174. border-color: #847a71 !important;
  175. }
  176. .btn-dark {
  177. color: #ffffff;
  178. background-color: #373b3c;
  179. border-color: #373b3c;
  180. }
  181. .btn-dark:hover,
  182. .btn-dark:focus,
  183. .btn-dark:active,
  184. .btn-dark:not(:disabled):not(.disabled).active,
  185. .btn-dark:not(:disabled):not(.disabled):active,
  186. .show > .btn-dark.dropdown-toggle {
  187. box-shadow: none;
  188. background-color: #202222;
  189. border-color: #202222;
  190. }
  191. .btn-dark:not(:disabled):not(.disabled).active:focus,
  192. .btn-dark:not(:disabled):not(.disabled):active:focus,
  193. .show > .btn-dark.dropdown-toggle:focus {
  194. box-shadow: none;
  195. }
  196. .btn-dark.disabled,
  197. .btn-dark:disabled {
  198. color: #ffffff;
  199. background-color: #373b3c;
  200. border-color: #373b3c;
  201. }
  202. .badge-dark {
  203. color: #ffffff;
  204. background-color: #373b3c;
  205. }
  206. .badge-dark[href]:focus,
  207. .badge-dark[href]:hover {
  208. background-color: #202222;
  209. }
  210. .border-dark {
  211. border-color: #373b3c !important;
  212. }
  213. .btn-info {
  214. background-color: #9c948b;
  215. border-color: #9c948b;
  216. }
  217. .btn-info:hover,
  218. .btn-info:focus,
  219. .btn-info:active,
  220. .btn-info:not(:disabled):not(.disabled).active,
  221. .btn-info:not(:disabled):not(.disabled):active,
  222. .show > .btn-info.dropdown-toggle {
  223. box-shadow: none;
  224. background-color: #847a71;
  225. border-color: #847a71;
  226. }
  227. .btn-info:not(:disabled):not(.disabled).active:focus,
  228. .btn-info:not(:disabled):not(.disabled):active:focus,
  229. .show > .btn-info.dropdown-toggle:focus {
  230. box-shadow: none;
  231. }
  232. .btn-info.disabled,
  233. .btn-info:disabled {
  234. color: #fff;
  235. background-color: #9c948b;
  236. border-color: #9c948b;
  237. }
  238. .badge-info {
  239. color: #fff;
  240. background-color: #847a71;
  241. }
  242. .badge-info[href]:focus,
  243. .badge-info[href]:hover {
  244. background-color: #847a71;
  245. }
  246. .border-info {
  247. border-color: #9c948b !important;
  248. }
  249. .btn-danger {
  250. background-color: #ca023e;
  251. border-color: #ca023e;
  252. }
  253. .btn-danger:hover,
  254. .btn-danger:focus,
  255. .btn-danger:active,
  256. .btn-danger:not(:disabled):not(.disabled).active,
  257. .btn-danger:not(:disabled):not(.disabled):active,
  258. .show > .btn-danger.dropdown-toggle {
  259. box-shadow: none;
  260. background-color: #97022f;
  261. border-color: #97022f;
  262. }
  263. .btn-danger:not(:disabled):not(.disabled).active:focus,
  264. .btn-danger:not(:disabled):not(.disabled):active:focus,
  265. .show > .btn-danger.dropdown-toggle:focus {
  266. box-shadow: none;
  267. }
  268. .btn-danger.disabled,
  269. .btn-danger:disabled {
  270. color: #fff;
  271. background-color: #ca023e;
  272. border-color: #ca023e;
  273. }
  274. .badge-danger {
  275. color: #fff;
  276. background-color: #ca023e;
  277. }
  278. .badge-danger[href]:focus,
  279. .badge-danger[href]:hover {
  280. background-color: #97022f;
  281. }
  282. .border-danger {
  283. border-color: #ca023e !important;
  284. }
  285. .btn-warning {
  286. background-color: #cea75d;
  287. border-color: #cea75d;
  288. color: #212529;
  289. }
  290. .btn-warning:hover,
  291. .btn-warning:focus,
  292. .btn-warning:active,
  293. .btn-warning:not(:disabled):not(.disabled).active,
  294. .btn-warning:not(:disabled):not(.disabled):active,
  295. .show > .btn-warning.dropdown-toggle {
  296. box-shadow: none !important;
  297. background-color: #c09139;
  298. border-color: #c09139;
  299. }
  300. .btn-warning:not(:disabled):not(.disabled).active:focus,
  301. .btn-warning:not(:disabled):not(.disabled):active:focus,
  302. .show > .btn-warning.dropdown-toggle:focus {
  303. box-shadow: none;
  304. }
  305. .btn-warning.disabled,
  306. .btn-warning:disabled {
  307. color: #fff;
  308. background-color: #cea75d;
  309. border-color: #cea75d;
  310. }
  311. .badge-warning {
  312. color: #fff;
  313. background-color: #cea75d;
  314. }
  315. .badge-warning[href]:focus,
  316. .badge-warning[href]:hover {
  317. background-color: #c09139;
  318. }
  319. .border-warning {
  320. border-color: #cea75d !important;
  321. }
  322. /*Dropdown*/
  323. .dropdown-item.bg-green:focus,
  324. .dropdown-item.bg-pink:focus,
  325. .dropdown-item.bg-dark-grey:focus,
  326. .dropdown-item.bg-light-grey:focus,
  327. .dropdown-item.bg-bordeaux:focus,
  328. .dropdown-item.bg-golden:focus,
  329. .dropdown-item.bg-green:hover,
  330. .dropdown-item.bg-pink:hover,
  331. .dropdown-item.bg-dark-grey:hover,
  332. .dropdown-item.bg-light-grey:hover,
  333. .dropdown-item.bg-bordeaux:hover,
  334. .dropdown-item.bg-golden:hover {
  335. color: #fff;
  336. }
  337. .dropdown-item.active,
  338. .dropdown-item:active {
  339. background-color: #1e998d;
  340. color: #fff;
  341. }
  342. /*Override append input-group*/
  343. .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
  344. border-top-right-radius: 3px;
  345. border-bottom-right-radius: 3px;
  346. }
  347. /*Pagination*/
  348. .pagination {
  349. flex-wrap: wrap;
  350. }
  351. .page-item.active .page-link {
  352. color: #fff;
  353. background-color: #9c948b;
  354. border-color: #9c948b;
  355. }
  356. .page-link {
  357. color: #9c948b;
  358. background-color: #fff;
  359. border: 1px solid #9c948b;
  360. }
  361. .page-link:focus, .page-link:hover {
  362. color: #847a71;
  363. background-color: #e9ecef;
  364. border-color: #9c948b;
  365. }
  366. /*Menus généraux*/
  367. .list-group-item.active {
  368. color: #fff;
  369. background-color: #1e998d;
  370. border-color: #1e998d;
  371. }
  372. a {
  373. color: #1e998d;
  374. }
  375. a:hover {
  376. color: #166f66;
  377. }
  378. /*Datepicker jQuery UI*/
  379. /*Pour les icône précédent/suivant il faut changer la couleur ud fichier d'icone de jQuery*/
  380. .ui-datepicker select.ui-datepicker-month,
  381. .ui-datepicker select.ui-datepicker-year {
  382. width: 45%;
  383. display: inline-block;
  384. padding: 0 .75rem;
  385. line-height: 1;
  386. height: auto !important;
  387. }
  388. .ui-datepicker select.ui-datepicker-month.form-control {
  389. margin-right: 5px;
  390. }
  391. .ui-datepicker select.ui-datepicker-year.form-control {
  392. margin-left: 5px;
  393. }
  394. .ui-widget-header {
  395. border: none;
  396. background: #ffffff;
  397. color: #444;
  398. font-weight: bold;
  399. }
  400. .ui-datepicker .ui-datepicker-prev {
  401. left: 2px;
  402. border-radius: 3px;
  403. cursor: pointer;
  404. }
  405. .ui-datepicker .ui-datepicker-next {
  406. right: 2px;
  407. border-radius: 3px;
  408. cursor: pointer;
  409. }
  410. div#ui-datepicker-div {
  411. /*z-index: 20 !important;*/
  412. background-color: #ffffff;
  413. border: 1px solid #ddd;
  414. border-radius: .25rem;
  415. }
  416. .ui-datepicker th {
  417. padding: 0;
  418. text-align: center;
  419. font-weight: bold;
  420. border: 0;
  421. }
  422. .ui-datepicker th > span {
  423. border-bottom: 1px solid #d8d8d8;
  424. color: #5f5f5f;
  425. width: 100%;
  426. display: block;
  427. padding: .7em .3em;
  428. padding-bottom: .35em;
  429. margin-bottom: 5px;
  430. }
  431. .ui-state-default,
  432. .ui-widget-content .ui-state-default,
  433. .ui-widget-header .ui-state-default {
  434. margin: .15rem 0;
  435. border: 1px solid #eaeaea;
  436. background: #ffffff;
  437. font-weight: normal;
  438. color: #1e998d;
  439. font-size: 0.9em;
  440. text-align: center;
  441. width: 35px;
  442. height: 35px;
  443. vertical-align: middle;
  444. border-radius: 5px;
  445. padding-top: 7px;
  446. }
  447. .ui-state-highlight,
  448. .ui-widget-content .ui-state-highlight,
  449. .ui-widget-header .ui-state-highlight {
  450. border: 1px solid #ccc;
  451. background: #fff;
  452. color: #444;
  453. }
  454. .ui-state-active,
  455. .ui-widget-content .ui-state-active,
  456. .ui-widget-header .ui-state-active {
  457. border: 1px solid #ddd;
  458. font-weight: bold;
  459. color: #ca023e;
  460. background: #ca023a36;
  461. }
  462. .ui-state-hover,
  463. .ui-widget-content .ui-state-hover,
  464. .ui-widget-header .ui-state-hover,
  465. .ui-state-focus,
  466. .ui-widget-content .ui-state-focus,
  467. .ui-widget-header .ui-state-focus {
  468. border: 1px solid #97022f;
  469. background: #97022f;
  470. font-weight: normal;
  471. color: #fff;
  472. }
  473. /* Page de maintenance */
  474. .maintenance-page,
  475. .maintenance-page body {
  476. font-family: 'Lato';
  477. background-color: #34495E;
  478. color:#fff;
  479. }
  480. .maintenance-page .icon{
  481. background-color: #ffffff;
  482. }
  483. .maintenance-page .icon i{
  484. color:#ca023e;
  485. }
  486. .maintenance-page .content-block {
  487. background: #ffffff33;
  488. border: 1px solid #fff;
  489. }
  490. .maintenance-page .admin-access a {
  491. color:#E9CA78;
  492. }
  493. /* COMPOSANTS */
  494. /* Composant Image */
  495. .type-image-bloc .btn-delete-img {
  496. color: #ca023e !important;
  497. }
  498. /* Composant checkbox */
  499. .check-component {
  500. border: 1px solid #bbbbbb;
  501. }
  502. .check-component input:checked + .box {
  503. background-color: #d4f7f3;
  504. }
  505. .check-component input:checked + .box:after {
  506. border-color: #1e998d;
  507. }
  508. .check-component input:indeterminate + .box {
  509. background-color: #fad6e1;
  510. }
  511. .check-component input:indeterminate + .box:after {
  512. border-color: #ca023e;
  513. }
  514. /* Composant radio */
  515. .radio-component:checked + label,
  516. .radio-component:not(:checked) + label
  517. {
  518. color: #666;
  519. }
  520. .radio-component:checked + label:before,
  521. .radio-component:not(:checked) + label:before {
  522. border: 1px solid #cccccc;
  523. }
  524. .radio-component:checked + label:after,
  525. .radio-component:not(:checked) + label:after {
  526. background: #58b1a7;
  527. }
  528. /* Composant cards */
  529. *[data-type="card"].card-component-container {
  530. color: #1e998d;
  531. }
  532. *[data-type="card"].card-component-container:hover {
  533. color: #176e65;
  534. }
  535. /* Composant icônes */
  536. .component-icon .dropdown-item > span:focus,
  537. .component-icon .dropdown-item > span:active,
  538. .component-icon .dropdown-item > span:hover {
  539. color: ##fff;
  540. background-color: #1e998d;
  541. }
  542. /* PLUGINS */
  543. /* Notifications */
  544. ul.notifications.mid-pane > li.unread {
  545. border-left: 5px solid #1e998d;
  546. }
  547. .notification_menu .dropdown-item.notification-unread:before {
  548. border-left: 3px solid #1e998d;
  549. }
  550. .notification_menu .notification-item-options > li.notification-read:hover {
  551. color: #9c948b;
  552. }
  553. .notification_menu .notification-item-options > li.notification-delete:hover {
  554. color: #ca023e;
  555. }
  556. .notification_menu.dropdown .all-as-read,
  557. .notification_menu.dropdown .see-all-link {
  558. color: #1e998d;
  559. }
  560. /* FIN OVERRIDE */