diff options
author | Fatih Acet <acetfatih@gmail.com> | 2016-09-01 22:05:33 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2016-09-01 22:05:33 +0000 |
commit | 2c3e1ae432f66738cfd73b56f2c657fb313dc7fb (patch) | |
tree | d781979a4d8b0cd4090d45f4c2b3688f3e19cef1 /app | |
parent | 9921f25295152f5cccacf63a94606b0877348a18 (diff) | |
parent | 2560fc5adbc533d87e8ca56b471ed56bc84d95f9 (diff) | |
download | gitlab-ce-2c3e1ae432f66738cfd73b56f2c657fb313dc7fb.tar.gz |
Merge branch 'remove-inconsistent-font-weight-sidebar-label' into 'master'
Remove inconsistent font weight for sidebar's labels
## What does this MR do?
Removes the `.bold` css class from the sidebar label default value so that it is no longer bold :smile:
**None** => None
## Are there points in the code the reviewer needs to double check?
None
## Why was this MR needed?
Fixes a UI inconsistency
## What are the relevant issue numbers?
Closes #21141
## Screenshots (if relevant)
Before:
![Screen_Shot_2016-08-24_at_9.41.11_AM](/uploads/3e416d45531b7322474922c569225c03/Screen_Shot_2016-08-24_at_9.41.11_AM.png)
After:
![Screen_Shot_2016-08-24_at_9.40.57_AM](/uploads/a4d60d4cd0a57142ad6c0c8a25be5342/Screen_Shot_2016-08-24_at_9.40.57_AM.png)
## Does this MR meet the acceptance criteria?
- [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
- Tests
- [x] All builds are passing
- [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides)
- [x] Branch has no merge conflicts with `master` (if you do - rebase it please)
- [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
See merge request !5984
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/issuable/_sidebar.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/_sidebar.html.haml b/app/views/shared/issuable/_sidebar.html.haml index c1b50e65af5..b13daaf43c9 100644 --- a/app/views/shared/issuable/_sidebar.html.haml +++ b/app/views/shared/issuable/_sidebar.html.haml @@ -118,7 +118,7 @@ = icon('spinner spin', class: 'block-loading') - if can_edit_issuable = link_to 'Edit', '#', class: 'edit-link pull-right' - .value.bold.issuable-show-labels.hide-collapsed{ class: ("has-labels" if issuable.labels_array.any?) } + .value.issuable-show-labels.hide-collapsed{ class: ("has-labels" if issuable.labels_array.any?) } - if issuable.labels_array.any? - issuable.labels_array.each do |label| = link_to_label(label, type: issuable.to_ability_name) |