diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index d2e3abd..9eb53b6 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -539,6 +539,18 @@ hr { padding: 0.0625rem 0.4375rem; } +.item-badge--public { + background-color: #E6F4EC; + color: #1F6B45; +} + +.item-badge--private { + background-color: transparent; + color: #525C66; + border: 1px solid #c8cdd1; + padding: 0.0625rem 0.4375rem; +} + .item-badge--tbd { background-color: transparent; color: #7a8189; diff --git a/app/views/plan/_plan_item.html.erb b/app/views/plan/_plan_item.html.erb index afc47d8..a0d3094 100644 --- a/app/views/plan/_plan_item.html.erb +++ b/app/views/plan/_plan_item.html.erb @@ -92,6 +92,9 @@
<%= item.kind.humanize %> + "> + <%= item.is_public? ? "Public" : "Private" %> + <% if custom %> Custom <% end %>