Сделано, чтобы строка в списке файлов меняла заливку при наведении.

# Conflicts:
#	web/documentserver-example/nodejs/views/index.ejs
This commit is contained in:
Ilya Kirillov
2016-03-31 14:02:36 +03:00
committed by Sergey Linnik
parent 942dcce715
commit a956c7b2fa
2 changed files with 14 additions and 1 deletions

View File

@ -426,6 +426,19 @@ footer {
#tableRow {
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 {
background: transparent;
color: #333;

View File

@ -146,7 +146,7 @@
</thead>
<tbody>
<% for (var i = 0; i < storedFiles.length; i++) { %>
<tr>
<tr class="tableRow">
<td class="contentCells">
<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>