Commit a08421a1 authored by Libbna Mathew's avatar Libbna Mathew Committed by Fran Garcia-Linares
Browse files

Issue #3293929 by Libbna, tim.plunkett, Munavijayalakshmi, fjgarlin,...

Issue #3293929 by Libbna, tim.plunkett, Munavijayalakshmi, fjgarlin, lucasbaralm, rkoller, chrisfromredfin: Don't communicate the Filters button state by rotating the icon
parent d3e07d8a
Loading
Loading
Loading
Loading
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+5 −7
Changes for sveltejs/src/Search.svelte: 5 added lines, 7 removed lines.
Original line number Diff line number Diff line
@@ -287,10 +287,10 @@
        aria-label={isOpen ? Drupal.t('Close Filter') : Drupal.t('Open Filter')}
        aria-expanded={isOpen.toString()}
        on:click={() => openDropdown()}
        >Filters<img
        ><img
          src="{FULL_MODULE_PATH}/images/advanced-filter-icon.svg"
          alt="advanced filter icon"
        />
        />Filters
      </button>
    </div>
  </div>
@@ -419,13 +419,11 @@
    width: 20px;
    height: 14px;
    margin-bottom: -2px;
    margin-right: -5px;
    margin-left: 2px;
    transform: rotate(180deg);
    margin-right: 4px;
  }

  .advanced-filter-btn[aria-expanded='true'] > img {
    transform: unset;
  .advanced-filter-btn[aria-expanded='true'] {
    background-color: #adaeb3;
  }

  .dropdown-filters {