Merge branch '60724-watch-button' into 'master'
Give notification buttons btn-xs class Closes #60724 See merge request gitlab-org/gitlab-ce!32827
This commit is contained in:
commit
e6b5b0de8e
3 changed files with 8 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
- else
|
- else
|
||||||
- can_create_fork = current_user.can?(:create_fork)
|
- can_create_fork = current_user.can?(:create_fork)
|
||||||
= link_to new_project_fork_path(@project),
|
= link_to new_project_fork_path(@project),
|
||||||
class: "btn btn-default has-tooltip count-badge-button d-flex align-items-center fork-btn #{'has-tooltip disabled' unless can_create_fork}",
|
class: "btn btn-default btn-xs has-tooltip count-badge-button d-flex align-items-center fork-btn #{'has-tooltip disabled' unless can_create_fork}",
|
||||||
title: (s_('ProjectOverview|You have reached your project limit') unless can_create_fork) do
|
title: (s_('ProjectOverview|You have reached your project limit') unless can_create_fork) do
|
||||||
= sprite_icon('fork', { css_class: 'icon' })
|
= sprite_icon('fork', { css_class: 'icon' })
|
||||||
%span= s_('ProjectOverview|Fork')
|
%span= s_('ProjectOverview|Fork')
|
||||||
|
|
|
@ -17,14 +17,14 @@
|
||||||
.js-notification-toggle-btns
|
.js-notification-toggle-btns
|
||||||
%div{ class: ("btn-group" if notification_setting.custom?) }
|
%div{ class: ("btn-group" if notification_setting.custom?) }
|
||||||
- if notification_setting.custom?
|
- if notification_setting.custom?
|
||||||
%button.dropdown-new.btn.btn-default.has-tooltip.notifications-btn.text-left#notifications-button{ type: "button", title: button_title, class: "#{btn_class}", "aria-label" => aria_label, data: { container: "body", toggle: "modal", target: "#" + notifications_menu_identifier("modal", notification_setting), display: 'static' } }
|
%button.dropdown-new.btn.btn-default.btn-xs.has-tooltip.notifications-btn.text-left#notifications-button{ type: "button", title: button_title, class: "#{btn_class}", "aria-label" => aria_label, data: { container: "body", toggle: "modal", target: "#" + notifications_menu_identifier("modal", notification_setting), display: 'static' } }
|
||||||
= icon("bell", class: "js-notification-loading")
|
= icon("bell", class: "js-notification-loading")
|
||||||
= notification_title(notification_setting.level)
|
= notification_title(notification_setting.level)
|
||||||
%button.btn.dropdown-toggle{ data: { toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting), flip: "false" } }
|
%button.btn.dropdown-toggle{ data: { toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting), flip: "false" } }
|
||||||
= icon('caret-down')
|
= icon('caret-down')
|
||||||
.sr-only Toggle dropdown
|
.sr-only Toggle dropdown
|
||||||
- else
|
- else
|
||||||
%button.dropdown-new.btn.btn-default.has-tooltip.notifications-btn#notifications-button{ type: "button", title: button_title, class: "#{btn_class}", "aria-label" => aria_label, data: { container: "body", toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting), flip: "false" } }
|
%button.dropdown-new.btn.btn-default.btn-xs.has-tooltip.notifications-btn#notifications-button{ type: "button", title: button_title, class: "#{btn_class}", "aria-label" => aria_label, data: { container: "body", toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting), flip: "false" } }
|
||||||
.float-left
|
.float-left
|
||||||
= icon("bell", class: "js-notification-loading")
|
= icon("bell", class: "js-notification-loading")
|
||||||
= notification_title(notification_setting.level)
|
= notification_title(notification_setting.level)
|
||||||
|
|
5
changelogs/unreleased/60724-watch-button.yml
Normal file
5
changelogs/unreleased/60724-watch-button.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Fix watch button styling and notifications buttons consistency
|
||||||
|
merge_request: 32827
|
||||||
|
author:
|
||||||
|
type: fixed
|
Loading…
Reference in a new issue