mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-03 14:41:49 -05:00
60 lines
1.0 KiB
Plaintext
60 lines
1.0 KiB
Plaintext
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* event-viewer.less
|
|
*
|
|
* custom styles for EventViewer.js helper
|
|
*
|
|
*/
|
|
|
|
#eventviewer-modal-dialog {
|
|
|
|
textarea {
|
|
overflow: scroll;
|
|
}
|
|
pre {
|
|
overflow: scroll;
|
|
word-wrap: normal;
|
|
word-break: normal;
|
|
white-space: pre-wrap;
|
|
}
|
|
}
|
|
|
|
table.eventviewer-status {
|
|
margin-top: 20px;
|
|
|
|
.key {
|
|
width: 20%;
|
|
font-weight: bold;
|
|
}
|
|
.value i {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
.nested-table {
|
|
border: none;
|
|
padding: 0;
|
|
table {
|
|
border-top: none;
|
|
border-bottom: none;
|
|
width: auto;
|
|
td {
|
|
vertical-align: top;
|
|
padding: 0 3px 3px 3px;
|
|
}
|
|
tr {
|
|
border-top: none;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
/*tr td:first-of-type {
|
|
width: auto;
|
|
}*/
|
|
tr:last-of-type {
|
|
border-bottom: none;
|
|
}
|
|
.key {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
} |