Merge pull request #5976 from sboursen-scinote/sb_SCI-9055

Update font weights on shared tasks page [SCI-9055]
This commit is contained in:
ajugo 2023-08-16 09:50:37 +02:00 committed by GitHub
commit f3fe21db5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
<div class="text-3xl font-bold flex flex-row flex-nowrap">
<div class="text-3xl font-semibold flex flex-row flex-nowrap">
<span class="inline-block whitespace-nowrap">
<%= t "labels.archived" if @my_module.archived? %>
</span>

View file

@ -1,4 +1,4 @@
<div class="text-3xl font-bold"><%= @my_module.name %></div>
<div class="text-3xl font-semibold"><%= @my_module.name %></div>
<div class="px-4 my-5 flex-1 bg-sn-white">
<div class="content-pane flexible">

View file

@ -1,4 +1,4 @@
<span class="due-date-label <%= get_task_alert_color(my_module) %>">
<span class="due-date-label font-medium <%= get_task_alert_color(my_module) %>">
<% if (my_module.archived_branch? || my_module.completed? ) && my_module.due_date %>
<span class="iso-formatted-date"><%= my_module.due_date.iso8601 %></span>
<% elsif my_module.is_one_day_prior? %>

View file

@ -1,4 +1,4 @@
<div class="flex items-center uppercase text-bold">
<div class="flex items-center uppercase">
<a class="p-4 border-b-4 border-transparent hover:no-underline capitalize <%= is_module_protocols? ? "text-sn-blue" : "text-sn-grey" %>"
href="<%= shared_protocol_url(@shareable_link.uuid) %>"
title="<%= t("nav2.modules.steps") %>"

View file

@ -5,7 +5,7 @@
<%= t("shareable_links.left_navigation.welcome")%>
</h3>
<div class="flex flex-col p-6 bg-sn-super-light-blue gap-4">
<span class="font-bold">
<span class="font-semibold">
<%= t("shareable_links.left_navigation.title")%>
</span>
<span class="text-[.75rem]">

View file

@ -33,7 +33,7 @@
<span class="hidden-xs hidden-sm hidden-md"><%= t('my_modules.details.completed_date') %></span>
</div>
<div class="datetime-container">
<span class="date-text iso-formatted-date">
<span class="iso-formatted-date font-medium">
<%= @my_module.completed_on.iso8601 %>
</span>
</div>

View file

@ -1,5 +1,5 @@
<span class="start-date-label">
<% if my_module.started_on.present? %>
<span class="iso-formatted-date font-bold"><%= my_module.started_on.iso8601 %></span>
<span class="iso-formatted-date font-medium"><%= my_module.started_on.iso8601 %></span>
<% end %>
</span>