View | Details | Raw Unified | Return to bug 26804
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+11 lines)
Lines 1232-1237 div { Link Here
1232
    }
1232
    }
1233
}
1233
}
1234
1234
1235
#newst {
1236
    thead {
1237
        position: sticky;
1238
        top: 0;
1239
    }
1240
    .news_content {
1241
        max-width: 200px;
1242
        overflow: hidden;
1243
    }
1244
}
1245
1235
#header_search {
1246
#header_search {
1236
    background-position: .5em .5em;
1247
    background-position: .5em .5em;
1237
    background-repeat: no-repeat;
1248
    background-repeat: no-repeat;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/koha-news.tt (-3 / +2 lines)
Lines 123-129 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
123
                        <th class="title-string">Expiration date</th>
123
                        <th class="title-string">Expiration date</th>
124
                        <th class="anti-the">Title</th>
124
                        <th class="anti-the">Title</th>
125
                        <th>Author</th>
125
                        <th>Author</th>
126
                        <th class="anti-the">News</th>
126
                        <th class="news_content anti-the">News</th>
127
                        <th class="NoSort">Actions</th>
127
                        <th class="NoSort">Actions</th>
128
                    </tr></thead>
128
                    </tr></thead>
129
                    <tbody>[% FOREACH opac_new IN opac_news %]
129
                    <tbody>[% FOREACH opac_new IN opac_news %]
Lines 155-161 Edit news item[% ELSE %]Add news item[% END %][% ELSE %]News[% END %]</div> Link Here
155
                            <td><span title="[% opac_new.expirationdate | html %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</span></td>
155
                            <td><span title="[% opac_new.expirationdate | html %]">[% opac_new.expirationdate | $KohaDates %] [% IF ( opac_new.expired ) %](<span class="expired">expired</span>)[% END %]</span></td>
156
                            <td>[% opac_new.title | html %]</td>
156
                            <td>[% opac_new.title | html %]</td>
157
                            <td>[% opac_new.author_title | html %] [% opac_new.author_firstname | html %] [% opac_new.author_surname | html %]</td>
157
                            <td>[% opac_new.author_title | html %] [% opac_new.author_firstname | html %] [% opac_new.author_surname | html %]</td>
158
                           <td>
158
                           <td class="news_content">
159
                                [% opac_new.content | $raw %]
159
                                [% opac_new.content | $raw %]
160
                            </td>
160
                            </td>
161
                            <td class="actions">
161
                            <td class="actions">
162
- 

Return to bug 26804