File tree 6 files changed +44
-25
lines changed
6 files changed +44
-25
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @influxdata/giraffe" ,
3
- "version" : " 2.34.2 " ,
3
+ "version" : " 2.34.3 " ,
4
4
"main" : " dist/index.js" ,
5
5
"module" : " dist/index.js" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change
1
+ @import ' ../../style/variables.scss' ;
2
+
3
+ @font-face {
4
+ font-family : ' icomoon' ;
5
+ font-style : normal ;
6
+ font-weight : normal ;
7
+ src : url (' ../../fonts/icomoon.eot' ) format (' embedded-opentype' );
8
+ src : url (' ../../fonts/icomoon.eot' ) format (' embedded-opentype' ),
9
+ url (' ../../fonts/icomoon.woff2' ) format (' woff2' ),
10
+ url (' ../../fonts/icomoon.ttf' ) format (' truetype' ),
11
+ url (' ../../fonts/icomoon.woff' ) format (' woff' ),
12
+ url (' ../../fonts/icomoon.svg' ) format (' svg' );
13
+ }
14
+
1
15
.raw-flux-data-table--cell {
2
16
border : 2px solid #202028 ;
3
17
box-sizing : border-box ;
16
30
box-sizing : border-box ;
17
31
border : 2px solid #0f0e15 ;
18
32
border-radius : 2px ;
33
+ color : $table-graph--text-color ;
34
+ font-size : $table-graph--font ;
35
+ font-weight : 400 ;
19
36
position : absolute ;
20
37
padding : 5px ;
21
38
min-height : 100% ;
Original file line number Diff line number Diff line change 1
- $table-graph--border : #292933 ;
2
- $table-graph--cell-highlight : #202028 ;
3
- $table-graph--cell : #0f0e15 ;
4
- $table-graph--font : 12px ;
5
- $table-graph--heading-bg--active : #292933 ;
6
- $table-graph--heading-bg : #181820 ;
7
- $table-graph--heading-sort : #00a3ff ;
8
- $table-graph--heading-text-corner : #f6f6f8 ;
9
- $table-graph--heading-text : #c6cad3 ;
10
- $table-graph--text-color : #999dab ;
11
- $table-graph--text-highlight : #ffffff ;
12
-
13
- $table-light-graph--border : #e7e8eb ;
14
- $table-light-graph--cell-highlight : #f6f6f8 ;
15
- $table-light-graph--cell : #ffffff ;
16
- $table-light-graph--heading-bg--active : #e7e8eb ;
17
- $table-light-graph--heading-bg : #eeeff2 ;
18
- $table-light-graph--heading-sort : #00a3ff ;
19
- $table-light-graph--heading-text-corner : #434453 ;
20
- $table-light-graph--heading-text : #757888 ;
21
- $table-light-graph--text-color : #676978 ;
22
- $table-light-graph--text-highlight : #383846 ;
1
+ @import ' ../../style/variables.scss' ;
23
2
24
3
@font-face {
25
4
font-family : ' icomoon' ;
Original file line number Diff line number Diff line change @@ -164,3 +164,26 @@ $cf-text-base-2: #{var(--giraffe-step-2)};
164
164
cursor : default ;
165
165
}
166
166
}
167
+
168
+ $table-graph--border : #292933 ;
169
+ $table-graph--cell-highlight : #202028 ;
170
+ $table-graph--cell : #0f0e15 ;
171
+ $table-graph--font : 12px ;
172
+ $table-graph--heading-bg--active : #292933 ;
173
+ $table-graph--heading-bg : #181820 ;
174
+ $table-graph--heading-sort : #00a3ff ;
175
+ $table-graph--heading-text-corner : #f6f6f8 ;
176
+ $table-graph--heading-text : #c6cad3 ;
177
+ $table-graph--text-color : #999dab ;
178
+ $table-graph--text-highlight : #ffffff ;
179
+
180
+ $table-light-graph--border : #e7e8eb ;
181
+ $table-light-graph--cell-highlight : #f6f6f8 ;
182
+ $table-light-graph--cell : #ffffff ;
183
+ $table-light-graph--heading-bg--active : #e7e8eb ;
184
+ $table-light-graph--heading-bg : #eeeff2 ;
185
+ $table-light-graph--heading-sort : #00a3ff ;
186
+ $table-light-graph--heading-text-corner : #434453 ;
187
+ $table-light-graph--heading-text : #757888 ;
188
+ $table-light-graph--text-color : #676978 ;
189
+ $table-light-graph--text-highlight : #383846 ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @influxdata/giraffe-stories" ,
3
- "version" : " 2.34.2 " ,
3
+ "version" : " 2.34.3 " ,
4
4
"license" : " MIT" ,
5
5
"repository" : {
6
6
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {fluxCSV} from './data/fluxCSV'
11
11
storiesOf ( 'Raw Flux Data Table' , module )
12
12
. addDecorator ( withKnobs )
13
13
. add ( 'Raw Flux Data Table' , ( ) => {
14
- const backgroundColor = text ( 'Background contrast color:' , 'grey ' )
14
+ const backgroundColor = text ( 'Background contrast color:' , 'black ' )
15
15
const csv1 = text ( 'Paste first CSV here:' , '' )
16
16
const csv2 = text ( 'Paste second CSV here:' , '' )
17
17
You can’t perform that action at this time.
0 commit comments