Add support for full logging of all actions in Quay, and the ability to view and filter these logs in the org’s admin view

This commit is contained in:
Joseph Schorr 2013-11-27 02:29:31 -05:00
parent d5c0f768c2
commit cca5daf097
16 changed files with 25024 additions and 16 deletions

View file

@ -127,6 +127,30 @@ html, body {
margin-right: 10px;
}
.logs-view-element .header {
padding-bottom: 10px;
border-bottom: 1px solid #eee;
margin-bottom: 20px;
}
.logs-view-element .header b {
font-size: 24px;
vertical-align: middle;
}
.logs-view-element .header .right {
float: right;
}
.logs-view-element .log .circle {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 6px;
vertical-align: middle;
}
.billing-options-element .current-card {
font-size: 16px;
margin-bottom: 20px;
@ -2043,13 +2067,13 @@ p.editable:hover i {
/** D3 tooltip styling */
.d3-tip {
line-height: 1;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
max-width: 500px;
.d3-tip, .nvtooltip {
line-height: 1 !important;
padding: 12px !important;
background: rgba(0, 0, 0, 0.8) !important;
color: #fff !important;
border-radius: 2px !important;
max-width: 500px !important;
z-index: 9999999;
}