55 lines
970 B
Plaintext
55 lines
970 B
Plaintext
#hipaaAuditLog{
|
|
color: #fff;
|
|
width: 100%;
|
|
|
|
.hipaaAuditItem {
|
|
border: none;
|
|
background-color: black;
|
|
list-style: none;
|
|
padding: 10px;
|
|
line-height: 25px;
|
|
|
|
// There's a CSS rule on ohif-user-management that's changing the .hipaaAuditItem border style (w/ !important)
|
|
&:first-child {
|
|
border-top: none !important;
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
border-top: 1px solid #436270;
|
|
}
|
|
|
|
border-bottom: 1px solid #436270;
|
|
|
|
&:nth-child(even) {
|
|
background-color: #151a1f;
|
|
}
|
|
|
|
&:hover, &:active, &.active {
|
|
background-color: #2c363f;
|
|
color: white;
|
|
}
|
|
|
|
.item-icon {
|
|
top: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.media-icon {
|
|
float: left;
|
|
top: 12px;
|
|
width: 40px;
|
|
text-align: center;
|
|
position: relative;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
.gray{
|
|
color: gray;
|
|
}
|
|
|
|
.userName, .patientName, .mongoRecordId, .collectionName{
|
|
cursor: pointer;
|
|
}
|
|
}
|