Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the background colour for the RSS info badge to be less eye-catching #4819

Merged
merged 1 commit into from Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions web/assets/stylesheets/application-dark.css
Expand Up @@ -147,3 +147,14 @@ input {
fill: #ddd;
color: #ddd;
}

.info-circle {
color: #282828;
background-color: #555555;
border-radius: 50%;
text-align: center;
vertical-align: middle;
padding: 3px 7px;
font-size: 0.7em;
margin-left: 5px;
}
7 changes: 3 additions & 4 deletions web/assets/stylesheets/application.css
Expand Up @@ -1153,10 +1153,9 @@ div.interval-slider input {
width: 20%;
}

.circled {
border-color: #333;
color: #eee;
background-color: #b1003e;
.info-circle {
color: #f3f3f3;
background-color: #dddddd;
border-radius: 50%;
text-align: center;
vertical-align: middle;
Expand Down
2 changes: 1 addition & 1 deletion web/views/busy.erb
Expand Up @@ -18,7 +18,7 @@
<thead>
<th><%= t('Name') %></th>
<th><%= t('Started') %></th>
<th><%= t('RSS') %><a href="https://github.com/mperham/sidekiq/wiki/Memory#rss"><span class="circled" title="Click to learn more about RSS">?</span></a></th>
<th><%= t('RSS') %><a href="https://github.com/mperham/sidekiq/wiki/Memory#rss"><span class="info-circle" title="Click to learn more about RSS">?</span></a></th>
<th><%= t('Threads') %></th>
<th><%= t('Busy') %></th>
<th>&nbsp;</th>
Expand Down