Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deprecated_jquery_dropdown.html « static « fixtures « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41e7170b5c6b9885ba8d3993a5557868fb9ab2cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<div>
  <div class="dropdown inline">
    <button
      class="dropdown-menu-toggle"
      data-toggle="dropdown"
      id="js-project-dropdown"
      type="button"
    >
      <div class="dropdown-toggle-text">
        Projects
      </div>
      <i class="fa fa-chevron-down dropdown-toggle-caret js-projects-dropdown-toggle"></i>
    </button>
    <div class="dropdown-menu dropdown-select dropdown-menu-selectable">
      <div class="dropdown-title gl-display-flex gl-align-items-center">
        <span class="gl-ml-auto">Go to project</span>
        <button
          aria-label="Close"
          type="button"
          class="btn dropdown-title-button dropdown-menu-close gl-ml-auto btn-default btn-sm gl-button btn-default-tertiary btn-icon"
        >
          <svg data-testid="close-icon" class="gl-icon s16 dropdown-menu-close-icon">
            <use
              href="/assets/icons-795a2ef2fd636a0538bbef3b8d2787dd90927b42d7617fdda8620930016b333d.svg#close"
            ></use>
          </svg>
        </button>
      </div>
      <div class="dropdown-input">
        <input class="dropdown-input-field" placeholder="Filter results" type="search" />
        <i class="fa fa-search dropdown-input-search"></i>
      </div>
      <div class="dropdown-content"></div>
      <div class="dropdown-loading">
        <span class="gl-spinner"></span>
      </div>
    </div>
  </div>
</div>