mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-13 08:01:02 +00:00
remove inline styling
This commit is contained in:
parent
4891cd1c9a
commit
f70fdfb59e
4 changed files with 7 additions and 11 deletions
|
|
@ -30,7 +30,6 @@
|
|||
|
||||
.queryString {
|
||||
white-space: pre-wrap;
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -136,9 +136,7 @@ export const QueryResults: FC<QueryResultsProps> = ({
|
|||
</div>
|
||||
</div>
|
||||
{!collapsibleQuery || showQuery ? (
|
||||
<code style={{ display: 'inline' }} className={css.queryString}>
|
||||
{queryString}
|
||||
</code>
|
||||
<code className={css.queryString}>{queryString}</code>
|
||||
) : null}
|
||||
</div>
|
||||
{results.operation === 'GroupBy' && results.rows.length <= 50 ? (
|
||||
|
|
|
|||
|
|
@ -40,3 +40,8 @@
|
|||
font-size: 0.75rem;
|
||||
color: rgba(var(--contrast-rgb), 0.54);
|
||||
}
|
||||
|
||||
.tooMany {
|
||||
vertical-align: middle;
|
||||
margin-right: .5em;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,13 +60,7 @@ export const Pager: FC<PagerProps> = ({
|
|||
{showTotal && (
|
||||
<div className={css.total}>
|
||||
{totalResultsCount > 1000 && (
|
||||
<span
|
||||
style={{
|
||||
display: 'inline',
|
||||
verticalAlign: 'middle',
|
||||
marginRight: '.5em',
|
||||
}}
|
||||
>
|
||||
<span className={css.tooMany}>
|
||||
<Tooltip
|
||||
title={
|
||||
'This query has ' +
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue