Merge pull request #163 from cartender/pr/fix_data_indicator

Fix data indicator formatting to cover also "unsaved changes" indicator
This commit is contained in:
老竭力 2021-01-21 18:13:55 +08:00 committed by GitHub
commit d3828357a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -666,11 +666,12 @@ header .fill .status {
right: 1.25rem; right: 1.25rem;
float: right; float: right;
} }
header .fill .status span[data-indicator="poll-status"] { header .fill .status span[data-indicator] {
display: block; display: inline-block;
font-size: 0.8rem; font-size: 0.8rem;
font-weight: bold; font-weight: bold;
padding: 0.3rem 0.8rem; padding: 0.3rem 0.8rem;
margin: 0 0.5rem;
white-space: nowrap; white-space: nowrap;
text-decoration: none; text-decoration: none;
text-transform: uppercase; text-transform: uppercase;

View File

@ -780,11 +780,12 @@ header {
right: 1.25rem; right: 1.25rem;
float: right; float: right;
span[data-indicator="poll-status"] { span[data-indicator] {
display: block; display: inline-block;
font-size: 0.8rem; font-size: 0.8rem;
font-weight: bold; font-weight: bold;
padding: 0.3rem 0.8rem; padding: 0.3rem 0.8rem;
margin: 0 0.5rem;
white-space: nowrap; white-space: nowrap;
text-decoration: none; text-decoration: none;
text-transform: uppercase; text-transform: uppercase;