mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
Сделано, чтобы строка в списке файлов меняла заливку при наведении.
# Conflicts: # web/documentserver-example/nodejs/views/index.ejs
This commit is contained in:
committed by
Sergey Linnik
parent
942dcce715
commit
a956c7b2fa
@ -426,6 +426,19 @@ footer {
|
|||||||
#tableRow {
|
#tableRow {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
.tableRow {
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
-moz-transition: all 0.2s ease-in-out;
|
||||||
|
-webkit-transition: all 0.2s ease-in-out;
|
||||||
|
-o-transition: all 0.2s ease-in-out;
|
||||||
|
-ms-transition: all 0.2s ease-in-out;
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
.tableRow:hover {
|
||||||
|
background-color: #ebebeb;
|
||||||
|
}
|
||||||
|
|
||||||
.tableHeader {
|
.tableHeader {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
|||||||
@ -146,7 +146,7 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<% for (var i = 0; i < storedFiles.length; i++) { %>
|
<% for (var i = 0; i < storedFiles.length; i++) { %>
|
||||||
<tr>
|
<tr class="tableRow">
|
||||||
<td class="contentCells">
|
<td class="contentCells">
|
||||||
<a class="stored-edit <%= storedFiles[i].documentType%>" href="editor?fileName=<%= encodeURIComponent(storedFiles[i].name) + params %>" target="_blank">
|
<a class="stored-edit <%= storedFiles[i].documentType%>" href="editor?fileName=<%= encodeURIComponent(storedFiles[i].name) + params %>" target="_blank">
|
||||||
<span title="<%= storedFiles[i].url %>"><%= storedFiles[i].name %></span></a>
|
<span title="<%= storedFiles[i].url %>"><%= storedFiles[i].name %></span></a>
|
||||||
|
|||||||
Reference in New Issue
Block a user