mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-13 08:34:49 +08:00
fixes per @mojca 's request
This commit is contained in:
parent
f04677600b
commit
0177dc811b
2 changed files with 4 additions and 8 deletions
|
@ -209,7 +209,7 @@ a[data-toggle="tooltip"] {
|
|||
|
||||
.nav-tabs-less > li.active > a {
|
||||
&,&:hover,&:focus {
|
||||
color: $brand-default;
|
||||
color: $brand-primary;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
@ -1722,7 +1722,3 @@ th.custom-field .modal-tooltiptext {
|
|||
.tiny-mce-pdf-ready {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.task-card-badge.active > a {
|
||||
color: $color-silver !important;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
<div class="panel-footer panel-footer-scinote buttons-container">
|
||||
<ul class="nav nav-tabs nav-tabs-less" role="tablist">
|
||||
<% if can_read_experiment?(my_module.experiment) %>
|
||||
<li role="presentation" class="task-card-badge ">
|
||||
<li role="presentation">
|
||||
<a class="btn btn-link task-card-view-users" href="<%= my_module_user_my_modules_url(my_module_id: my_module.id, format: :json) %>" aria-controls="<%= my_module.id %>_users" role="tab" data-remote="true">
|
||||
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
|
||||
<span class="badge badge-indicator users-badge-indicator <%= 'hidden' unless my_module.users.count.positive? %>"
|
||||
|
@ -50,12 +50,12 @@
|
|||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li role="presentation" class="task-card-badge ">
|
||||
<li role="presentation">
|
||||
<a class="btn btn-link task-card-view-activities" href="<%= activities_tab_my_module_url(id: my_module.id, format: :json) %>" aria-controls="<%= my_module.id %>_activities" role="tab" data-remote="true">
|
||||
<span class="glyphicon glyphicon-equalizer" aria-hidden="true"></span>
|
||||
</a>
|
||||
</li>
|
||||
<li role="presentation" class="task-card-badge ">
|
||||
<li role="presentation">
|
||||
<a class="btn btn-link task-card-view-comments" href="<%= my_module_my_module_comments_url(my_module_id: my_module.id, format: :json) %>" aria-controls="<%= my_module.id %>_comments" role="tab" data-remote="true">
|
||||
<span class="glyphicon glyphicon-comment" aria-hidden="true"></span>
|
||||
<span class="badge badge-indicator comments-badge-indicator <%= 'hidden' unless my_module.task_comments.count.positive? %>"
|
||||
|
|
Loading…
Add table
Reference in a new issue