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

create_item_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: 63e342d5d0c57520afa960da2d6f8ca61c862901 (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
40
41
42
43
44
45
46
47
<div class="js-create-item-dropdown-fixture-root">
  <input name="variable[environment]" type="hidden" />
  <div class="dropdown ">
    <button
      class="dropdown-menu-toggle js-dropdown-menu-toggle"
      type="button"
      data-toggle="dropdown"
    >
      <span class="dropdown-toggle-text ">some label</span
      >
      <svg data-testid="chevron-down-icon" class="gl-icon s16">
        <use
          href="/assets/icons-795a2ef2fd636a0538bbef3b8d2787dd90927b42d7617fdda8620930016b333d.svg#chevron-down"
        ></use>
      </svg>
    </button>
    <div class="dropdown-menu dropdown-select dropdown-menu-selectable">
      <div class="dropdown-input">
        <input type="search" id="" class="dropdown-input-field" autocomplete="off" />
        <svg data-testid="search-icon" class="gl-icon s16 dropdown-input-search">
          <use
            href="/assets/icons-795a2ef2fd636a0538bbef3b8d2787dd90927b42d7617fdda8620930016b333d.svg#search"
          ></use>
        </svg>        
        <svg data-testid="close-icon" class="gl-icon s16 dropdown-input-clear js-dropdown-input-clear">
          <use
            href="/assets/icons-795a2ef2fd636a0538bbef3b8d2787dd90927b42d7617fdda8620930016b333d.svg#close"
          ></use>
        </svg>
      </div>
      <div class="dropdown-content js-dropdown-content"></div>
      <div class="dropdown-footer">
        <ul class="dropdown-footer-list">
          <li>
            <button class="dropdown-create-new-item-button js-dropdown-create-new-item">
              Create wildcard
              <code></code>
            </button>
          </li>
        </ul>
      </div>
      <div class="dropdown-loading">
        <span aria-hidden="true" data-hidden="true" class="gl-spinner"></span>
      </div>
    </div>
  </div>
</div>