Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
height: 4em;
}
#radius-session-tbody strong {
color: green;
color: var(--ow-color-success, green);
}
#radius-session-tbody tr td p {
white-space: nowrap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
.form-row.field-user label,
.form-row.field-username label {
font-weight: bold;
color: #333;
color: var(--ow-color-fg-darker, #333);
}
2 changes: 1 addition & 1 deletion openwisp_radius/static/openwisp-radius/css/radiusbatch.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
.field-prefix label,
.field-number_of_users label {
font-weight: bold;
color: #000;
color: var(--ow-color-black, #000);
}
2 changes: 1 addition & 1 deletion openwisp_radius/templates/openwisp-radius/prefix_pdf.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
table { width: 100%; border-collapse: collapse }
table th { font-weight: bold }
table th, table td {
border: 1px solid #ccc;
border: 1px solid var(--ow-color-fg-medium, #ccc);
padding: 10px;
}
</style>
Expand Down
Loading