app/template/meldiastore/Block/login.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
  4. http://www.lockon.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. <style>
  9. /*-------komori 追加分-----*/
  10.     .b-login__link {
  11.     background: #807245;
  12. }
  13. .b-header__utility-search-link:before {
  14.     background-image: url(/html/user_data/assets/shop_item_img/common-sprites.png);
  15. }
  16. .b-cart__menu:before {
  17.     background-image: url(/html/user_data/assets/shop_item_img/common-sprites.png);
  18. }
  19. .b-cart__menu-badge {
  20.     color: #807245;
  21. }
  22. .l-drawer__body {
  23.     background: #000;
  24. }
  25. .b-category-nav-sp {
  26.     background: #000;
  27. }
  28. .l-drawer__button--close:after, .l-drawer__button--close:before {
  29.     background: #807245;
  30. }
  31. .b-category-nav-sp__name {
  32.     color: #FFF;
  33. }
  34. .b-login-sp {
  35.     background: #000;
  36. }
  37. .l-drawer__sns {
  38.     border-top: solid 1px #FFF;
  39. }
  40. .l-drawer__sns-label {
  41.     color: #FFF;
  42. }
  43. @media screen and (max-width: 839px) {
  44. .b-footer__logo-link-text2 {
  45.     font-size: 1em !important;
  46. }
  47. }
  48. </style>
  49. <!-- div class="b-login">
  50.     <ul class="b-login__list u-list-sanitize">
  51.         {% if is_granted('ROLE_USER') %}
  52.             <li class="b-login__list-item">
  53.                 <a class="b-login__link mdc-ripple-surface" href="{{ url('mypage') }}">
  54.                     <span class="b-login__text is-kana">{{ 'マイページ'|trans }}</span>
  55.                 </a>
  56.             </li>
  57.             <li class="b-login__list-item">
  58.                 <a class="b-login__link mdc-ripple-surface" href="{{ url('logout') }}">
  59.                     <span class="b-login__text is-kana">{{ 'ログアウト'|trans }}</span>
  60.                 </a>
  61.             </li>
  62.         {% else %}
  63.             <li class="b-login__list-item">
  64.                 <a class="b-login__link mdc-ripple-surface" href="{{ url('entry') }}">
  65.                     <span class="b-login__text">{{ '新規会員登録'|trans }}</span>
  66.                 </a>
  67.             </li>
  68.             <li class="b-login__list-item">
  69.                 <a class="b-login__link mdc-ripple-surface" href="{{ url('mypage_login') }}">
  70.                     <span class="b-login__text is-kana">{{ 'ログイン'|trans }}</span>
  71.                 </a>
  72.             </li>
  73.         {% endif %}
  74.     </ul>
  75. </div -->