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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/fixtures/static')
-rw-r--r--spec/frontend/fixtures/static/balsamiq_viewer.html1
-rw-r--r--spec/frontend/fixtures/static/create_item_dropdown.html51
-rw-r--r--spec/frontend/fixtures/static/deprecated_jquery_dropdown.html2
-rw-r--r--spec/frontend/fixtures/static/environments/table.html15
-rw-r--r--spec/frontend/fixtures/static/issuable_filter.html9
-rw-r--r--spec/frontend/fixtures/static/issue_with_mermaid_graph.html82
-rw-r--r--spec/frontend/fixtures/static/merge_requests_show.html15
-rw-r--r--spec/frontend/fixtures/static/mini_dropdown_graph.html2
-rw-r--r--spec/frontend/fixtures/static/pipelines.html3
-rw-r--r--spec/frontend/fixtures/static/project_select_combo_button.html14
-rw-r--r--spec/frontend/fixtures/static/whats_new_notification.html6
11 files changed, 56 insertions, 144 deletions
diff --git a/spec/frontend/fixtures/static/balsamiq_viewer.html b/spec/frontend/fixtures/static/balsamiq_viewer.html
deleted file mode 100644
index cdd723d1a84..00000000000
--- a/spec/frontend/fixtures/static/balsamiq_viewer.html
+++ /dev/null
@@ -1 +0,0 @@
-<div class="file-content balsamiq-viewer" data-endpoint="/test" id="js-balsamiq-viewer"></div>
diff --git a/spec/frontend/fixtures/static/create_item_dropdown.html b/spec/frontend/fixtures/static/create_item_dropdown.html
index d2d38370092..aac7d3397ce 100644
--- a/spec/frontend/fixtures/static/create_item_dropdown.html
+++ b/spec/frontend/fixtures/static/create_item_dropdown.html
@@ -1,11 +1,42 @@
<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><i aria-hidden="true" data-hidden="true" class="fa fa-chevron-down"></i></button><div class="dropdown-menu dropdown-select dropdown-menu-selectable"><div class="dropdown-input"><input type="search" id="" class="dropdown-input-field" autocomplete="off" /><i aria-hidden="true" data-hidden="true" class="fa fa-search dropdown-input-search"></i><i aria-hidden="true" data-hidden="true" role="button" class="fa fa-times dropdown-input-clear js-dropdown-input-clear"></i></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"><i aria-hidden="true" data-hidden="true" class="fa fa-spinner fa-spin"></i></div></div></div></div>
+ <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
+ ><i aria-hidden="true" data-hidden="true" class="fa fa-chevron-down"></i>
+ </button>
+ <div class="dropdown-menu dropdown-select dropdown-menu-selectable">
+ <div class="dropdown-input">
+ <input type="search" id="" class="dropdown-input-field" autocomplete="off" /><i
+ aria-hidden="true"
+ data-hidden="true"
+ class="fa fa-search dropdown-input-search"
+ ></i
+ ><i
+ aria-hidden="true"
+ data-hidden="true"
+ role="button"
+ class="fa fa-times dropdown-input-clear js-dropdown-input-clear"
+ ></i>
+ </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>
diff --git a/spec/frontend/fixtures/static/deprecated_jquery_dropdown.html b/spec/frontend/fixtures/static/deprecated_jquery_dropdown.html
index 3db9bafcb9f..41e7170b5c6 100644
--- a/spec/frontend/fixtures/static/deprecated_jquery_dropdown.html
+++ b/spec/frontend/fixtures/static/deprecated_jquery_dropdown.html
@@ -32,7 +32,7 @@
</div>
<div class="dropdown-content"></div>
<div class="dropdown-loading">
- <i class="fa fa-spinner fa-spin"></i>
+ <span class="gl-spinner"></span>
</div>
</div>
</div>
diff --git a/spec/frontend/fixtures/static/environments/table.html b/spec/frontend/fixtures/static/environments/table.html
deleted file mode 100644
index 417af564ff1..00000000000
--- a/spec/frontend/fixtures/static/environments/table.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<table>
-<thead>
-<tr>
-<th>Environment</th>
-<th>Last deployment</th>
-<th>Job</th>
-<th>Commit</th>
-<th></th>
-<th></th>
-</tr>
-</thead>
-<tbody>
-<tr id="environment-row"></tr>
-</tbody>
-</table>
diff --git a/spec/frontend/fixtures/static/issuable_filter.html b/spec/frontend/fixtures/static/issuable_filter.html
deleted file mode 100644
index 06b70fb43f1..00000000000
--- a/spec/frontend/fixtures/static/issuable_filter.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<form action="/user/project/issues?scope=all&amp;state=closed" class="js-filter-form">
-<input id="utf8" name="utf8" value="✓">
-<input id="check-all-issues" name="check-all-issues">
-<input id="search" name="search">
-<input id="author_id" name="author_id">
-<input id="assignee_id" name="assignee_id">
-<input id="milestone_title" name="milestone_title">
-<input id="label_name" name="label_name">
-</form>
diff --git a/spec/frontend/fixtures/static/issue_with_mermaid_graph.html b/spec/frontend/fixtures/static/issue_with_mermaid_graph.html
deleted file mode 100644
index e9fa75c8ba9..00000000000
--- a/spec/frontend/fixtures/static/issue_with_mermaid_graph.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<div class="description" updated-at="">
- <div class="md issue-realtime-trigger-pulse">
- <svg
- id="mermaid-1587752414912"
- width="100%"
- xmlns="http://www.w3.org/2000/svg"
- style="max-width: 185.35000610351562px;"
- viewBox="0 0 185.35000610351562 50.5"
- class="mermaid"
- >
- <g transform="translate(0, 0)">
- <g class="output">
- <g class="clusters"></g>
- <g class="edgePaths"></g>
- <g class="edgeLabels"></g>
- <g class="nodes">
- <g
- class="node js-issuable-buttons btn-close clickable"
- style="opacity: 1;"
- id="A"
- transform="translate(92.67500305175781,25.25)"
- title="click to PUT"
- >
- <a
- class="js-issuable-buttons btn-close clickable"
- href="https://invalid"
- rel="noopener"
- >
- <rect
- rx="0"
- ry="0"
- x="-84.67500305175781"
- y="-17.25"
- width="169.35000610351562"
- height="34.5"
- class="label-container"
- ></rect>
- <g class="label" transform="translate(0,0)">
- <g transform="translate(-74.67500305175781,-7.25)">
- <text style="">
- <tspan xml:space="preserve" dy="1em" x="1">Click to send a PUT request</tspan>
- </text>
- </g>
- </g>
- </a>
- </g>
- </g>
- </g>
- </g>
- <text class="source" display="none">
- Click to send a PUT request
- </text>
- </svg>
- </div>
- <textarea
- data-update-url="/h5bp/html5-boilerplate/-/issues/35.json"
- dir="auto"
- class="hidden js-task-list-field"
- ></textarea>
- <div class="modal-open recaptcha-modal js-recaptcha-modal" style="display: none;">
- <div role="dialog" tabindex="-1" class="modal d-block">
- <div role="document" class="modal-dialog">
- <div class="modal-content">
- <div class="modal-header">
- <h4 class="modal-title float-left">Please solve the reCAPTCHA</h4>
- <button type="button" data-dismiss="modal" aria-label="Close" class="close float-right">
- <span aria-hidden="true">×</span>
- </button>
- </div>
- <div class="modal-body">
- <div>
- <p>We want to be sure it is you, please confirm you are not a robot.</p>
- <div></div>
- </div>
- </div>
- <!---->
- </div>
- </div>
- </div>
- <div class="modal-backdrop fade show"></div>
- </div>
-</div>
diff --git a/spec/frontend/fixtures/static/merge_requests_show.html b/spec/frontend/fixtures/static/merge_requests_show.html
deleted file mode 100644
index 87e36c9f315..00000000000
--- a/spec/frontend/fixtures/static/merge_requests_show.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<a class="btn-close"></a>
-<div class="detail-page-description">
-<div class="description js-task-list-container">
-<div class="md">
-<ul class="task-list">
-<li class="task-list-item">
-<input class="task-list-item-checkbox" type="checkbox">
-Task List Item
-</li>
-</ul>
-<textarea class="js-task-list-field">- [ ] Task List Item</textarea>
-</div>
-</div>
-</div>
-<form action="/foo" class="js-issuable-update"></form>
diff --git a/spec/frontend/fixtures/static/mini_dropdown_graph.html b/spec/frontend/fixtures/static/mini_dropdown_graph.html
index cb55698b709..cde811d4f52 100644
--- a/spec/frontend/fixtures/static/mini_dropdown_graph.html
+++ b/spec/frontend/fixtures/static/mini_dropdown_graph.html
@@ -7,7 +7,7 @@
<ul></ul>
</li>
<li class="js-builds-dropdown-loading hidden">
- <span class="fa fa-spinner"></span>
+ <span class="gl-spinner"></span>
</li>
</ul>
</div>
diff --git a/spec/frontend/fixtures/static/pipelines.html b/spec/frontend/fixtures/static/pipelines.html
deleted file mode 100644
index 42333f94f2f..00000000000
--- a/spec/frontend/fixtures/static/pipelines.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<div>
-<div data-can-create-pipeline="true" data-ci-lint-path="foo" data-empty-state-svg-path="foo" data-endpoint="foo" data-error-state-svg-path="foo" data-has-ci="foo" data-help-auto-devops-path="foo" data-help-page-path="foo" data-new-pipeline-path="foo" data-reset-cache-path="foo" id="pipelines-list-vue"></div>
-</div>
diff --git a/spec/frontend/fixtures/static/project_select_combo_button.html b/spec/frontend/fixtures/static/project_select_combo_button.html
index 50c826051c0..f13f9075706 100644
--- a/spec/frontend/fixtures/static/project_select_combo_button.html
+++ b/spec/frontend/fixtures/static/project_select_combo_button.html
@@ -1,9 +1,9 @@
<div class="project-item-select-holder">
-<input class="project-item-select" data-group-id="12345" data-relative-path="issues/new">
-<a class="new-project-item-link" data-label="New issue" data-type="issues" href="">
-<i class="fa fa-spinner spin"></i>
-</a>
-<a class="new-project-item-select-button">
-<i class="fa fa-caret-down"></i>
-</a>
+ <input class="project-item-select" data-group-id="12345" data-relative-path="issues/new" />
+ <a class="new-project-item-link" data-label="New issue" data-type="issues" href="">
+ <span class="gl-spinner"></span>
+ </a>
+ <a class="new-project-item-select-button">
+ <i class="fa fa-caret-down"></i>
+ </a>
</div>
diff --git a/spec/frontend/fixtures/static/whats_new_notification.html b/spec/frontend/fixtures/static/whats_new_notification.html
new file mode 100644
index 00000000000..30d5eea91cc
--- /dev/null
+++ b/spec/frontend/fixtures/static/whats_new_notification.html
@@ -0,0 +1,6 @@
+<div class='whats-new-notification-fixture-root'>
+ <div class='app' data-storage-key='storage-key'></div>
+ <div class='header-help'>
+ <div class='js-whats-new-notification-count'></div>
+ </div>
+</div>