app/template/default/Item/error_modal.twig line 1

Open in your IDE?
  1. <style>
  2.     #error_modal.modal {
  3.         display: none;
  4.         position: fixed;
  5.         z-index: 10001;
  6.         padding-top: 200px;
  7.         left: 0;
  8.         top: 0;
  9.         width: 100%;
  10.         height: 100%;
  11.         overflow: auto;
  12.         background-color: rgb(0, 0, 0);
  13.         background-color: rgba(0, 0, 0, 0.4);
  14.     }
  15.     #error_modal .modal-content {
  16.         background-color: #fefefe;
  17.         margin: auto;
  18.         padding: 20px;
  19.         border: 1px solid #888;
  20.         width: 500px;;
  21.     }
  22.     #error_modal .modal-content .modal-header {
  23.         padding: 0px;
  24.         border-bottom: none;
  25.     }
  26.     #error_modal .modal-content .modal-header img {
  27.         width: 30px;
  28.         vertical-align: middle;
  29.     }
  30.     #error_modal .modal-content .modal-header span {
  31.         font-size: 25px;
  32.         font-weight: bold;
  33.         vertical-align: middle;
  34.     }
  35.     #error_modal .modal-content .modal-body p {
  36.         margin-bottom: 20px;
  37.     }
  38.     #error_modal .modal-content .modal-body a {
  39.         font-weight: bold;
  40.     }
  41.     #error_modal .modal-content .modal-footer {
  42.         border-top: none;
  43.         padding: 5px;
  44.     }
  45.     #error_modal .modal-content .modal-footer .alert-btn-continue {
  46.         padding: 10px;
  47.         border-radius: 5px;
  48.         background: #FA9401;
  49.         color: white;
  50.         font-weight: bold;
  51.         text-decoration: unset;
  52.         margin-right: 10px;
  53.     }
  54.     #error_modal .modal-content .modal-footer .alert-btn-cancel {
  55.         padding: 10px;
  56.         text-decoration: unset;
  57.         color: #333;
  58.         border-radius: 5px;
  59.         background-color: #F3F3F3;
  60.         font-weight: bold;
  61.     }
  62.     #error_modal .modal-content .modal-footer a.disabled {
  63.         color: currentColor;
  64.         cursor: not-allowed;
  65.         opacity: 0.5;
  66.         text-decoration: none;
  67.     }
  68. </style>
  69. <script>
  70.     function showErrorModal(errorMessage) {
  71.         $('#error_modal .error-message').html(errorMessage);
  72.         $('#error_modal .alert-btn-cancel').removeClass('disabled');
  73.         $('#error_modal .alert-btn-continue').removeClass('disabled');
  74.         $('#error_modal').show();
  75.     }
  76.     function closeErrorModal() {
  77.         $('#error_modal .error-message').html('');
  78.         $('#error_modal').hide();
  79.     }
  80.     $(document).on('click', '.see-the-cart', function () {
  81.         $('#error_modal .alert-btn-cancel').addClass('disabled');
  82.         $('#error_modal .alert-btn-continue').addClass('disabled');
  83.     })
  84. </script>
  85. <div id="error_modal" class="modal">
  86.     <div class="modal-content">
  87.         <div class="modal-header">
  88.             <img src="/stylesheets/images/icons-png/warning.png"/>
  89.             <span>注意</span>
  90.         </div>
  91.         <div class="modal-body">
  92.             <p class="error-message"></p>
  93.         </div>
  94.         <div class="modal-footer">
  95.             <a class="alert-btn-continue see-the-cart" href="{{ url("cart") }}">カートを見る</a>
  96.             <a class="alert-btn-cancel" onclick="closeErrorModal();" href="javascript:void(0);">キャンセル</a>
  97.         </div>
  98.     </div>
  99. </div>