@@ -7,7 +7,7 @@ import { selectors } from '@grafana/e2e-selectors';
7
7
8
8
import { Field , RadioButtonGroup , Select } from '../..' ;
9
9
import { stylesFactory , useTheme2 } from '../../../themes' ;
10
- // import { Button } from '../../Button';
10
+ import { Button } from '../../Button' ;
11
11
import { TimeZonePicker } from '../TimeZonePicker' ;
12
12
import { TimeZoneDescription } from '../TimeZonePicker/TimeZoneDescription' ;
13
13
import { TimeZoneOffset } from '../TimeZonePicker/TimeZoneOffset' ;
@@ -59,10 +59,6 @@ export const TimePickerFooter: FC<Props> = (props) => {
59
59
return (
60
60
< div >
61
61
< section aria-label = "Time zone selection" className = { style . container } >
62
- { /* <Button variant="secondary" onClick={onToggleChangeTimeSettings} size="sm">
63
- Change time settings
64
- </Button> */ }
65
- < div className = { style . spacer } />
66
62
< div className = { style . timeZoneContainer } >
67
63
< div className = { style . timeZone } >
68
64
< TimeZoneTitle title = { info . name } />
@@ -71,6 +67,18 @@ export const TimePickerFooter: FC<Props> = (props) => {
71
67
</ div >
72
68
< TimeZoneOffset timeZone = { timeZone } timestamp = { timestamp } />
73
69
</ div >
70
+ < div className = { style . spacer } />
71
+ < Button
72
+ onClick = { onToggleChangeTimeSettings }
73
+ size = "md"
74
+ style = { {
75
+ backgroundColor : '#ffffff00' ,
76
+ color : '#3A785E' ,
77
+ border : '1px solid #3A785E' ,
78
+ } }
79
+ >
80
+ Change time settings
81
+ </ Button >
74
82
</ section >
75
83
{ isEditing ? (
76
84
< div className = { style . editContainer } >
@@ -135,6 +143,7 @@ const getStyle = stylesFactory((theme: GrafanaTheme2) => {
135
143
flex-direction : row;
136
144
justify-content : space-between;
137
145
align-items : center;
146
+ height : 60px ;
138
147
` ,
139
148
editContainer : css `
140
149
border-top : 1px solid ${ theme . colors . border . weak } ;
0 commit comments