templates/inscription/assets/style.html.twig line 1

Open in your IDE?
  1. {% set userCompanyDataContent = get_user_company_data() %}
  2. {% set user_primary_color = userCompanyDataContent.primary_color is not empty ? userCompanyDataContent.primary_color : '#f975c4'%}
  3. {% set user_second_color = userCompanyDataContent.second_color is not empty ? userCompanyDataContent.second_color : '#08085c' %}
  4. {% set user_text_color = userCompanyDataContent.text_color is not empty ? userCompanyDataContent.text_color : '#1968CD' %}
  5. {% set user_icon_color = userCompanyDataContent.icon_color is not empty ? userCompanyDataContent.icon_color : '#4a4b68' %}
  6. {% set user_background_color = userCompanyDataContent.background_color is not empty ? userCompanyDataContent.background_color : '#04006E' %}
  7. {% set user_title_color = userCompanyDataContent.title_color is not empty ? userCompanyDataContent.title_color : '#08085c' %}
  8. {% set user_company_logo = userCompanyDataContent.logo_company is not empty ? userCompanyDataContent.logo_company : '' %}
  9. <style>
  10.     {
  11.         # début custom color #
  12.     }
  13.     :root {
  14.         --my-flow-pink: {{user_primary_color}}; /*couleur principale #f975c4*/
  15.         --my-flow-secondaire: {{user_second_color}}
  16.         ; /*couleur secondaire #08085c*/
  17.         --text-active: {{user_text_color}}
  18.         ; /* couleur text active #1968CD*/
  19.         --bs-custom-blue: var(--my-flow-secondaire) !important;
  20.         --bs-custom-pink:var(--my-flow-pink) !important;
  21.         --fond-status: pink; /* couleur fond status #04006E*/
  22.         --my-flow-black: #4a4b68; /*couleur des icones*/
  23.         --my-flow-block-fond: {{user_background_color}}
  24.         ; /*couleur fond des blocs */
  25.         --my-flow-titre-block: {{user_title_color}}
  26.         ; /*couleur fond des blocs */
  27.         --my-flow-text: {{user_title_color}}
  28.         ; /* couleur des titre */
  29.         --my-flow-black-rgb: 74, 75, 104;
  30.         --my-flow-blue: #EDF6FE;
  31.         --my-flow-light-pink: #F6E4F4;
  32.     }
  33.     {
  34.         # debut Custom primary color #
  35.     }
  36.     body .btn-primary-custom,
  37.     body .bg-custom-pink,
  38.     body .button-for-edit-with-icon-play,
  39.     body .button-for-edit-with-icon-clock,
  40.     body .button-for-edit-with-icon-pen,
  41.     body .text-custom-pink,
  42.     body .text-custom-pink,
  43.     body .containt-planning > span {
  44.         background-color: var(--my-flow-pink) !important;
  45.     }
  46.     .btn-check:checked + .btn.btn-primary,
  47.     .btn-check:active + .btn.btn-primary,
  48.     .btn.btn-primary:focus:not(.btn-active),
  49.     .btn.btn-primary:hover:not(.btn-active),
  50.     .btn.btn-primary:active:not(.btn-active),
  51.     .btn.btn-primary.active,
  52.     .btn.btn-primary.show,
  53.     .show > .btn.btn-primary {
  54.         color: #181C32 !important;
  55.         text-decoration: none !important;
  56.     }
  57.     body .content-mission-tooltips .text-custom-pink,
  58.     body .bi-exclamation-triangle-fill {
  59.         color: var(--my-flow-pink) !important;
  60.         background-color: transparent !important;
  61.     }
  62.     body .profil-image-label:hover,
  63.     body .profil-image-delete:hover {
  64.         background: var(--my-flow-pink) !important;
  65.     }
  66.     .back-line2 input:checked[type=checkbox],
  67.     input:checked[type=checkbox],
  68.     body .btn.btn-primary,
  69.     .btn-check:checked + .btn.btn-primary,
  70.     .btn-check:active + .btn.btn-primary,
  71.     .btn.btn-primary:focus:not(.btn-active),
  72.     .btn.btn-primary:hover:not(.btn-active),
  73.     .btn.btn-primary:active:not(.btn-active),
  74.     .btn.btn-primary.active,
  75.     .btn.btn-primary.show,
  76.     .show > .btn.btn-primary {
  77.         background-color: var(--my-flow-pink) !important
  78.     }
  79.     {
  80.         # fin Custom primary color #
  81.     }
  82.     {
  83.         # debut Custom secondaire color #
  84.     }
  85.     body .text-custom-blue,
  86.     body .custom-facture-attente,
  87.     body .color-blue-custom,
  88.     body .notification-list-mission > li,
  89.     body .content-message-system-date {
  90.         color: var(--bs-custom-blue) !important;
  91.     }
  92.     body .mission-tooltips::after {
  93.         border-bottom: 5px solid var(--bs-custom-blue) !important;
  94.     }
  95.     body .bg-custom-blue,
  96.     body .container-recurrent-label .no-label-recurrent.no-recurrent,
  97.     body .page-item.active .page-link,
  98.     .select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) .select2-selection__choice,
  99.     .active-blue {
  100.         background-color: var(--bs-custom-blue) !important;
  101.     }
  102.     body .mission-tooltips,
  103.     body .notification-title {
  104.         background: var(--bs-custom-blue) !important;
  105.     }
  106.     {
  107.         # fin Custom secondaire color #
  108.     }
  109.     {
  110.         # début texte active #
  111.     }
  112.     body .text-active-primary.active,
  113.     .menu-state-bg-light-primary .menu-item.hover > .menu-link:not(.disabled):not(.active),
  114.     .menu-state-bg-light-primary .menu-item .menu-link:hover:not(.disabled):not(.active) {
  115.         color: var(--text-active) !important;
  116.     }
  117.     body a .aside-user-info,
  118.     body .title-compaign a,
  119.     .nav-link:hover,
  120.     .nav-link:focus {
  121.         color: var(--text-active) !important;
  122.     }
  123.     body .btn-join-file-chat {
  124.         color: var(--text-active) !important;
  125.         border: var(--text-active) dashed 1px !important
  126.     }
  127.     {
  128.         # fin texte active #
  129.     }
  130.     {
  131.         # debut text de détails #
  132.     }
  133.     body .estimated-time-or-income-content .color-blue-custom,
  134.     body div.resume_marge .color-blue-custom,
  135.     .resumer-commande tbody tr td,
  136.     body .state-provider .text-custom-blue {
  137.         color: var(--my-flow-text) !important;
  138.     }
  139.     {
  140.         # fin text de détails #
  141.     }
  142.     {
  143.         # fin custom color #
  144.     }
  145.     .menu-link.active > svg.icn.faq path,
  146.     .menu-link:hover > svg.icn.faq path {
  147.         stroke: var(--my-flow-pink);
  148.     }
  149.     .menu-link > svg.icn.faq path {
  150.         fill: #fff;
  151.         width: 20px;
  152.     }
  153.     .hidden {
  154.         display: none !important;
  155.     }
  156.     svg.icn-grey {
  157.         fill: #a1a5b7 !important;
  158.     }
  159.     svg.icn-pink {
  160.         fill: var(--my-flow-pink) !important;
  161.     }
  162.     i.icn-pink {
  163.         color: var(--my-flow-pink) !important;
  164.     }
  165.     .myflow-line {
  166.         padding: 10px;
  167.     }
  168.     .myflow-line:not(.fw-bold):hover {
  169.         background-color: #eff2f5;
  170.     }
  171.     .pagination:hover {
  172.         color: var(--my-flow-pink);
  173.     }
  174.     .pagination:hover svg {
  175.         fill: var(--my-flow-pink);
  176.     }
  177.     .info-general-2 >div > button:hover,
  178.     .info-general-2 >div > button:hover * {
  179.         color: var(--my-flow-pink) !important;
  180.         fill: var(--my-flow-pink) !important;
  181.         text-decoration: underline;
  182.     }
  183.     .info-general-2 > div > button {
  184.         color: #97ABF4;
  185.         font-weight: bolder;
  186.         cursor: pointer;
  187.         font-size: 13px;
  188.     }
  189.     .info-general:hover,
  190.     .info-general:hover * {
  191.         color: var(--my-flow-pink) !important;
  192.         fill: var(--my-flow-pink) !important;
  193.     }
  194.     .info-general,
  195.     .info-general-2 > div > button {
  196.         text-decoration: underline;
  197.     }
  198.     svg.icn-greyhoverpink {
  199.         fill: #a1a5b7 !important;
  200.     }
  201.     i.icn-greyhoverpink {
  202.         color: #a1a5b7 !important;
  203.     }
  204.     svg.icn-greyhoverpink:hover {
  205.         fill: var(--my-flow-pink) !important;
  206.     }
  207.     i.icn-greyhoverpink:hover {
  208.         color: var(--my-flow-pink) !important;
  209.     }
  210.     .box-fichier-joints-mission:hover form h3 div button svg.icn-greyhoverpink {
  211.         fill: var(--my-flow-pink) !important;
  212.     }
  213.     .box-fichier-joints-mission:hover form h3 div button i.icn-greyhoverpink {
  214.         color: var(--my-flow-pink) !important;
  215.     }
  216.     .box-fichier-joints-mission:hover {
  217.         border: 1px solid var(--my-flow-pink);
  218.     }
  219.     {
  220.         # Ce qui suit est pas ouf, je le sais, faudrait le mettre directement dans le CSS #
  221.     }
  222.     div.gestion-temps {
  223.         text-decoration: none;
  224.     }
  225. </style>
  226. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  227. <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
  228. <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
  229. <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
  230. {{ encore_entry_link_tags('plugins/global/plugins.bundle') }}
  231. {{ encore_entry_link_tags('css/style.bundle') }}
  232. {{ encore_entry_link_tags('app') }}
  233. {{ encore_entry_script_tags('app') }}