UNPKG

@oriolrius/grafana-business-text

Version:

Data-driven text with Markdown and Handlebars support for Grafana

88 lines (73 loc) 1.75 kB
import { css } from '@emotion/css'; import { GrafanaTheme2 } from '@grafana/data'; import { HIGHLIGHT_DARK, HIGHLIGHT_LIGHT } from '../../constants'; /** * Styles */ export const getStyles = (theme: GrafanaTheme2) => { /** * Frame */ const frame = css` border-bottom: 1px solid ${theme.colors.border.medium}; margin-bottom: 1rem; padding: ${theme.spacing(1)}; &:last-child { margin-bottom: 0; border-bottom: 0; } img { max-width: 100%; } li { margin-left: ${theme.spacing(2)}; } a { color: blue; } table { border-collapse: collapse; th, td { padding: ${theme.spacing(0.5)} ${theme.spacing(1)}; border-top: 1px solid ${theme.colors.border.medium}; border-left: 1px solid ${theme.colors.border.medium}; } th { font-weight: ${theme.typography.fontWeightMedium}; background: ${theme.colors.background.secondary}; } border-bottom: 1px solid ${theme.colors.border.medium}; border-right: 1px solid ${theme.colors.border.medium}; } blockquote { margin: ${theme.spacing(2)} 0; border-left: 5px solid ${theme.colors.border.strong}; padding: ${theme.spacing(1)}; padding-left: ${theme.spacing(2)}; p { font-size: ${theme.typography.body.fontSize}; color: ${theme.colors.text.secondary}; } } `; /** * Loading Bar */ const loadingBar = css` position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; `; /** * Highlight */ const highlight = theme.isDark ? HIGHLIGHT_DARK : HIGHLIGHT_LIGHT; return { frame, highlight, loadingBar, }; };