mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
53 lines
702 B
Plaintext
53 lines
702 B
Plaintext
@import "../Content/FontAwesome/font-awesome";
|
|
@import "../Shared/Styles/clickable";
|
|
|
|
#logs-screen {
|
|
|
|
.log-time-cell{
|
|
width: 80px;
|
|
}
|
|
|
|
.log-level-cell{
|
|
width: 12px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
td{
|
|
font-size: 13px;
|
|
}
|
|
|
|
|
|
.icon-info:before {
|
|
.icon(@info-sign);
|
|
color : dodgerblue;
|
|
}
|
|
|
|
.icon-debug:before {
|
|
.icon(@info-sign);
|
|
color : gray;
|
|
}
|
|
|
|
.icon-trace:before {
|
|
.icon(@info-sign);
|
|
color : lightgrey;
|
|
}
|
|
|
|
.icon-warn:before {
|
|
.icon(@exclamation-sign);
|
|
color : orange;
|
|
}
|
|
|
|
.icon-error:before {
|
|
.icon(@bug);
|
|
color : red;
|
|
}
|
|
|
|
.icon-fatal:before {
|
|
.icon(@remove-sign);
|
|
color : purple;
|
|
}
|
|
}
|
|
|
|
.log-file-row {
|
|
.clickable;
|
|
} |