Skip to content

Commit f97f210

Browse files
checkpoint
1 parent abbf5b1 commit f97f210

File tree

21 files changed

+290
-526
lines changed

21 files changed

+290
-526
lines changed

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
"@types/ol-ext": "npm:@siedlerchr/[email protected]",
147147
"@types/papaparse": "5.3.7",
148148
"@types/pluralize": "^0.0.29",
149+
"@types/postcss-prefix-selector": "^1",
149150
"@types/prismjs": "1.26.0",
150151
"@types/react": "18.2.28",
151152
"@types/react-beautiful-dnd": "13.1.3",
@@ -372,6 +373,8 @@
372373
"ol-ext": "4.0.6",
373374
"papaparse": "5.4.1",
374375
"pluralize": "^8.0.0",
376+
"postcss-prefix-selector": "^1.16.1",
377+
"postcss-prefixwrap": "^1.49.0",
375378
"prismjs": "1.29.0",
376379
"prop-types": "15.8.1",
377380
"pseudoizer": "^0.1.0",

packages/grafana-data/src/themes/breakpoints.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function createBreakpoints(): ThemeBreakpoints {
2828
const values: ThemeBreakpointValues = {
2929
xs: 0,
3030
sm: 544,
31-
md: 769, // 1 more than regular ipad in portrait
31+
md: 768, // 1 more than regular ipad in portrait
3232
lg: 992,
3333
xl: 1200,
3434
xxl: 1440,

packages/grafana-data/src/themes/createColors.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ class LightColors implements ThemeColorsBase<Partial<ThemeRichColor>> {
220220
};
221221

222222
background = {
223-
canvas: '#F6F5F3',
224-
primary: '#FDFDFC',
225-
secondary: '#FDFDFC',
223+
canvas: '#FAFAFA',
224+
primary: '#FFFFFF',
225+
secondary: '#FAFAFA',
226226
};
227227

228228
action = {

packages/grafana-data/src/themes/createTypography.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ export function createTypography(colors: ThemeColors, typographyInput: ThemeTypo
6262
fontFamilyMonospace = defaultFontFamilyMonospace,
6363
// The default font size of the Material Specification.
6464
fontSize = 14, // px
65-
fontWeightLight = 300,
66-
fontWeightRegular = 400,
67-
fontWeightMedium = 500,
68-
fontWeightBold = 600,
65+
fontWeightLight = 200,
66+
fontWeightRegular = 300,
67+
fontWeightMedium = 400,
68+
fontWeightBold = 500,
6969
// Tell Grafana-UI what's the font-size on the html element.
7070
// 16px is the default font-size used by browsers.
7171
htmlFontSize = 16,

packages/grafana-data/src/themes/fnCreateColors.ts

-240
This file was deleted.

packages/grafana-data/src/themes/fnPalette.ts

-42
This file was deleted.

packages/grafana-ui/src/components/DateTimePickers/TimeRangePicker/TimePickerFooter.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const TimePickerFooter = (props: Props) => {
5757
return null;
5858
}
5959

60-
const fnColor = theme.isDark ? '#8EC4AD' : '#3A785E';
60+
const fnColor = theme.isDark ? '#8EC4AD' : '#344054';
6161

6262
return (
6363
<div>

0 commit comments

Comments
 (0)