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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-13 18:09:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-13 18:09:34 +0300
commitc4eeda2d3d048e84b331f416472e99ed0e116904 (patch)
treed2ac30119226e46f54f41961e3eed2cd5b5bdb5b /app/views/kaminari
parentcdd5eba514e79c7801ff2eeb76e915e3f31ca5d7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/kaminari')
-rw-r--r--app/views/kaminari/gitlab/_keyset_paginator.html.haml8
-rw-r--r--app/views/kaminari/gitlab/_without_count.html.haml4
2 files changed, 6 insertions, 6 deletions
diff --git a/app/views/kaminari/gitlab/_keyset_paginator.html.haml b/app/views/kaminari/gitlab/_keyset_paginator.html.haml
index f64c70dadfc..aed8b912fc6 100644
--- a/app/views/kaminari/gitlab/_keyset_paginator.html.haml
+++ b/app/views/kaminari/gitlab/_keyset_paginator.html.haml
@@ -9,22 +9,22 @@
%li.page-item
- first_page_path = url_for(page_params.merge(cursor: paginator.cursor_for_first_page))
= link_to first_page_path, rel: 'first', class: 'page-link' do
- = sprite_icon('angle-double-left', size: 8)
+ = sprite_icon('chevron-double-lg-left', size: 8)
= s_('Pagination|First')
%li.page-item.prev
= link_to previous_path, rel: 'prev', class: 'page-link' do
- = sprite_icon('angle-left', size: 8)
+ = sprite_icon('chevron-lg-left', size: 8)
= s_('Pagination|Prev')
- if paginator.has_next_page?
%li.page-item.next
= link_to next_path, rel: 'next', class: 'page-link' do
= s_('Pagination|Next')
- = sprite_icon('angle-right', size: 8)
+ = sprite_icon('chevron-lg-right', size: 8)
- unless without_first_and_last_pages
%li.page-item
- last_page_path = url_for(page_params.merge(cursor: paginator.cursor_for_last_page))
= link_to last_page_path, rel: 'last', class: 'page-link' do
= s_('Pagination|Last')
- = sprite_icon('angle-double-right', size: 8)
+ = sprite_icon('chevron-double-lg-right', size: 8)
diff --git a/app/views/kaminari/gitlab/_without_count.html.haml b/app/views/kaminari/gitlab/_without_count.html.haml
index dc9dcbeed1d..8b29cb1988f 100644
--- a/app/views/kaminari/gitlab/_without_count.html.haml
+++ b/app/views/kaminari/gitlab/_without_count.html.haml
@@ -3,10 +3,10 @@
- if previous_path
%li.page-item.prev
= link_to previous_path, rel: 'prev', class: 'page-link' do
- = sprite_icon('angle-left', size: 8)
+ = sprite_icon('chevron-lg-left', size: 8)
= s_('Pagination|Prev')
- if next_path
%li.page-item.next
= link_to next_path, rel: 'next', class: 'page-link' do
= s_('Pagination|Next')
- = sprite_icon('angle-right', size: 8)
+ = sprite_icon('chevron-lg-right', size: 8)