Skip to content
Snippets Groups Projects
Commit 44008083 authored by Elmar Ludwig's avatar Elmar Ludwig
Browse files

drop special CSS for document tables, remove extra spacing, fixes #1728

Closes #1728

Merge request studip/studip!1126
parent 39addd3d
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,10 @@ if (Request::get('to_folder_id')) {
<? if ($top_folder): ?>
<table class="default">
<colgroup>
<col style="width: 36px;">
<col>
</colgroup>
<thead>
<tr>
<th><?= _('Typ') ?></th>
......
......@@ -68,9 +68,13 @@ $buttonLabels = [
<? if ($top_folder) : ?>
<table class="default">
<colgroup>
<col style="width: 36px;">
<col>
</colgroup>
<thead>
<tr>
<th width="25px"><?= _('Typ') ?></th>
<th><?= _('Typ') ?></th>
<th><?= _('Name') ?></th>
</tr>
</thead>
......
......@@ -429,31 +429,9 @@ form.default fieldset.select_terms_of_use {
}
table.documents {
td, th {
vertical-align: top;
&:first-child {
padding-left: 8px;
}
}
tr:target {
background-color: @activity-color-20;
}
tbody.subfolders tr, tbody.files tr {
height: 43px;
}
}
/*
For the file and folder table in the selection dialogs
when adding a file or copying/moving things:
*/
td.document-icon {
max-width: 40px;
width: 40px;
}
......
......@@ -30,7 +30,7 @@
<colgroup>
<col v-if="show_bulk_actions" style="width: 30px">
<col style="width: 60px">
<col style="width: 36px">
<col>
<col style="width: 100px" class="responsive-hidden">
<col v-if="showdownloads" style="width: 100px" class="responsive-hidden">
......@@ -41,7 +41,7 @@
:key="index"
data-filter-ignore
class="responsive-hidden">
<col style="width: 80px">
<col style="width: 64px">
</colgroup>
<thead>
<tr class="sortable">
......@@ -92,7 +92,7 @@
</a>
</th>
<th data-sort="false">{{ $gettext('Aktionen') }}</th>
<th class="actions" data-sort="false">{{ $gettext('Aktionen') }}</th>
</tr>
</thead>
<tbody v-if="!hasData">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment