completion-kit 0.5.20 → 0.5.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8563167a68aab93caf0e05022c5f1216d096eaae162173e39c5061ba253f3e0
4
- data.tar.gz: 7de1eb04e23d658744195330b7d3f0383d9c02c5e3d3a78788aaf96bc9a0d1b0
3
+ metadata.gz: e04e66d89aab0762a3d58532984bf73a8a18c47c7f29002c4138c0770f412fd9
4
+ data.tar.gz: 221647dc0afd30c24644be27e1b909e901752478044b3270abc9fd717355d782
5
5
  SHA512:
6
- metadata.gz: 0ad34abea12f77b56701f313aa471193e384698a0a2add21724510f210018ee86de287d7fc449df5574a0d9ca12c90883c16d8170b53f254852659b9c4e76ca1
7
- data.tar.gz: 3b4118ce8416f45bf42dff0a88dbe20f0d2061cf66f456f5070c3dc51c80dc81e400329ea342b476a77fc44aa461ad161d784e8fe3c50e6d8cfff9df3331b042
6
+ metadata.gz: a974fe2b24af3ab7e12a354ab946ec1817f5740507c0c052266879dfa9a2a82d091f79034140e15585c60fd6c6a7c80ae1e86fe7bcd262da8b8ea686ea65f0a6
7
+ data.tar.gz: cb1339bc6e3b4787a2fb3a6b82a789d46432938781d17745914cb8763590b7c339f9d666c6139ea9e4e8f4c44818de49727234af9fe7b1585379abdca3c308ec
@@ -4724,36 +4724,41 @@ a.tag-mark {
4724
4724
  .ck-flyout[open] .ck-flyout__toggle { color: var(--ck-text); }
4725
4725
  .ck-flyout__panel {
4726
4726
  position: absolute;
4727
- bottom: calc(100% + 0.5rem);
4727
+ bottom: calc(100% + 0.6rem);
4728
4728
  right: 0;
4729
4729
  z-index: 30;
4730
- width: 16rem;
4731
- max-height: 13rem;
4730
+ width: 22rem;
4731
+ max-height: 19rem;
4732
4732
  overflow-y: auto;
4733
4733
  margin: 0;
4734
- padding: 0.45rem;
4734
+ padding: 0.6rem;
4735
4735
  list-style: none;
4736
4736
  display: flex;
4737
4737
  flex-direction: column;
4738
- gap: 0.2rem;
4738
+ gap: 0.3rem;
4739
4739
  background: var(--ck-bg-strong);
4740
4740
  border: 1px solid var(--ck-line-strong);
4741
4741
  border-radius: var(--ck-radius);
4742
- box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.5);
4742
+ box-shadow: 0 -16px 34px rgba(0, 0, 0, 0.5);
4743
4743
  }
4744
4744
  .ck-flyout__item {
4745
4745
  display: flex;
4746
4746
  align-items: center;
4747
4747
  justify-content: space-between;
4748
- gap: 0.6rem;
4749
- padding: 0.3rem 0.4rem;
4750
- font-size: 0.78rem;
4751
- border-radius: 5px;
4748
+ gap: 0.9rem;
4749
+ padding: 0.55rem 0.65rem;
4750
+ font-size: 0.82rem;
4751
+ border-radius: 6px;
4752
4752
  }
4753
4753
  .ck-flyout__item:hover { background: var(--ck-surface-hover); }
4754
- .ck-flyout__label { color: var(--ck-text); }
4754
+ .ck-flyout__label {
4755
+ display: flex;
4756
+ flex-direction: column;
4757
+ gap: 0.2rem;
4758
+ min-width: 0;
4759
+ }
4760
+ .ck-flyout__name { color: var(--ck-text); }
4755
4761
  .ck-flyout__meta {
4756
- margin-left: 0.35rem;
4757
4762
  color: var(--ck-dim);
4758
4763
  font-size: 0.7rem;
4759
4764
  }
@@ -33,7 +33,7 @@
33
33
  <ul class="ck-flyout__panel">
34
34
  <% ignored_failures.each do |dismissal| %>
35
35
  <li class="ck-flyout__item">
36
- <span class="ck-flyout__label"><%= dismissal.dismissable_type.demodulize %> #<%= dismissal.dismissable_id %></span>
36
+ <span class="ck-flyout__label"><span class="ck-flyout__name"><%= dismissal.dismissable_type.demodulize %> #<%= dismissal.dismissable_id %></span></span>
37
37
  <%= button_to completion_kit.dashboard_dismissal_path(dismissal),
38
38
  method: :delete, class: "ck-icon-btn", title: "Un-ignore",
39
39
  "aria-label": "Un-ignore #{dismissal.dismissable_type.demodulize} #{dismissal.dismissable_id}" do %><%= render "completion_kit/dashboard/eye_icon" %><% end %>
@@ -29,7 +29,7 @@
29
29
  <% ignored_metrics.each do |dismissal| %>
30
30
  <li class="ck-flyout__item">
31
31
  <span class="ck-flyout__label">
32
- <%= dismissal.dismissable.name %>
32
+ <span class="ck-flyout__name"><%= dismissal.dismissable.name %></span>
33
33
  <% if dismissal.baseline_score %>
34
34
  <span class="ck-flyout__meta">baseline <%= dismissal.baseline_score %></span>
35
35
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module CompletionKit
2
- VERSION = "0.5.20"
2
+ VERSION = "0.5.21"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: completion-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.20
4
+ version: 0.5.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damien Bastin