Skip to content

Commit

Permalink
[WebProfilerBundle] Update ajax calls in toolbar to add the css error…
Browse files Browse the repository at this point in the history
… class
  • Loading branch information
rubenrua committed Mar 3, 2015
1 parent 12cf04f commit 1ea0f86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -90,6 +90,9 @@
rows.appendChild(row);
var methodCell = document.createElement('td');
if (request.error) {
methodCell.className = 'sf-ajax-request-error';
}
methodCell.textContent = request.method;
row.appendChild(methodCell);
Expand Down
Expand Up @@ -315,7 +315,7 @@
text-align: right;
}
.sf-ajax-request-error {
color: #a33;
color: #a33 !important;
}
.sf-ajax-request-loading {
-webkit-animation: sf-blink .5s ease-in-out infinite;
Expand Down

0 comments on commit 1ea0f86

Please sign in to comment.