mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-05 19:34:34 +08:00
Merge pull request #5946 from sboursen-scinote/sb_SCI-9002
Fix Shared task CSS [SCI-9002]
This commit is contained in:
commit
0224f420b1
3 changed files with 38 additions and 2 deletions
|
@ -112,6 +112,42 @@
|
|||
}
|
||||
}
|
||||
|
||||
.assigned-repository.shared {
|
||||
border: 0;
|
||||
box-shadow: 0;
|
||||
|
||||
.table {
|
||||
border: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
tr:not(:first) {
|
||||
border-bottom: 2px solid var(--sn-sleepy-grey);
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.version-label {
|
||||
@include font-small;
|
||||
color: var(--sn-grey);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.dataTables_scrollHead .sorting {
|
||||
position: relative;
|
||||
|
||||
&::after {
|
||||
content: "\21C5";
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
right: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#myModuleRepositoryFullViewModal {
|
||||
padding-left: 0 !important;
|
||||
z-index: 1045;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<% assigned_repositories.each do |repository| %>
|
||||
<div class="assigned-repository panel" data-repository-id="<%= repository.id %>">
|
||||
<div class="assigned-repository panel shared" data-repository-id="<%= repository.id %>">
|
||||
<a class="assigned-repository-caret collapsed"
|
||||
role="button"
|
||||
data-toggle="collapse"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="step-text-container step-element--locked" tabindex="0">
|
||||
<div class="step-text-container step-element--locked locked" tabindex="0">
|
||||
<div class="step-element-grip-placeholder"></div>
|
||||
<% if element.text.present? %>
|
||||
<div class="view-text-element">
|
||||
|
|
Loading…
Add table
Reference in a new issue