File tree 7 files changed +35
-19
lines changed
7 files changed +35
-19
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ workflows:
182
182
branches :
183
183
only :
184
184
- legacy-tco
185
+ - hot-fixes-3
185
186
# This is beta env for production soft releases
186
187
- " build-prod-beta " :
187
188
context : org-global
Original file line number Diff line number Diff line change @@ -77,22 +77,23 @@ $contentWrapperPadding: 0;
77
77
}
78
78
79
79
p {
80
- font-size : 20 px ;
80
+ font-size : 15 px ;
81
81
margin-bottom : 1em ;
82
82
line-height : 25px ;
83
+
84
+ strong {
85
+ font-weight : bold ;
86
+ }
87
+
88
+ em {
89
+ font-style : italic ;
90
+ }
83
91
}
84
92
85
93
ul {
86
94
list-style : disc ;
87
95
margin-bottom : 1em ;
88
96
margin-left : 20px ;
89
-
90
- li {
91
- p {
92
- font-size : 16px ;
93
- line-height : 27px ;
94
- }
95
- }
96
97
}
97
98
98
99
input {
Original file line number Diff line number Diff line change 110
110
td {
111
111
@include roboto-regular ;
112
112
113
- font-size : 20 px ;
114
- line-height : 70 px ;
113
+ font-size : 15 px ;
114
+ line-height : 25 px ;
115
115
text-align : left ;
116
116
color : $tc-gray-80 ;
117
117
border-top : 1px solid #ededf2 ;
118
118
border-bottom : 1px solid #ededf2 ;
119
- padding : 0 10px ;
119
+ padding : 10px 0 ;
120
+ min-height : 51px ;
121
+
122
+ & :first-child {
123
+ padding-left : 10px ;
124
+ }
125
+
126
+ & :last-child {
127
+ padding-right : 10px ;
128
+ }
120
129
}
121
130
122
131
ul ,
Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ export default function Looker(props) {
71
71
cols . map ( ( c ) => {
72
72
const name = c . headerName ;
73
73
const { styles } = c ;
74
- return (
74
+ return name ? (
75
75
< th key = { name } style = { styles } > { name } </ th >
76
- ) ;
76
+ ) : null ;
77
77
} )
78
78
79
79
}
@@ -82,7 +82,7 @@ export default function Looker(props) {
82
82
83
83
const bodyRow = ( record , cols , i ) => (
84
84
< tr key = { Object . values ( record ) } >
85
- { ( countRows && ( limit <= 0 || i < limit ) ) ? < td > { i + 1 } . </ td > : ' ' }
85
+ { ( countRows && ( limit <= 0 || i < limit ) ) ? < td style = { { borderTop : '1px solid #D5D5D5' } } > { i + 1 } . </ td > : ' ' }
86
86
{
87
87
cols . map ( ( c ) => {
88
88
const prop = c . property ;
@@ -96,11 +96,11 @@ export default function Looker(props) {
96
96
value = record [ prop ] . toString ( ) . replace ( / \B (? = ( \d { 3 } ) + (? ! \d ) ) / g, ',' ) ;
97
97
}
98
98
}
99
- return (
99
+ return value ? (
100
100
< td key = { record [ prop ] } style = { styles } title = { value } >
101
101
{ value }
102
102
</ td >
103
- ) ;
103
+ ) : null ;
104
104
} )
105
105
}
106
106
</ tr >
Original file line number Diff line number Diff line change @@ -252,7 +252,12 @@ Toggle navigation
252
252
< div className = { isMobileOpen ? theme . menuWrapOpen : theme . menuWrap } >
253
253
{
254
254
menuItems [ 0 ] && menuItems [ 0 ] . navigationMenu ? (
255
- < Menu id = { menuItems [ 0 ] . navigationMenu } baseUrl = { baseUrl } />
255
+ < Menu
256
+ id = { menuItems [ 0 ] . navigationMenu }
257
+ baseUrl = { baseUrl }
258
+ spaceName = { menuItems [ 0 ] . spaceName }
259
+ environment = { menuItems [ 0 ] . environment }
260
+ />
256
261
) : (
257
262
< ul className = { theme . menu } >
258
263
{ _ . map ( menuItems , menuIterator ) }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default function TCO03({ base }) {
25
25
< ContentfulRoute
26
26
baseUrl = { base }
27
27
error404 = { < Error404 /> }
28
- id = "4mKZxfgAi6Us6dRS4Hy2Ab "
28
+ id = "2MKnrhssyBHnKH2wuV9Ate "
29
29
/>
30
30
< Route
31
31
component = { Error404 }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default function TCO07({ base }) {
25
25
< ContentfulRoute
26
26
baseUrl = { base }
27
27
error404 = { < Error404 /> }
28
- id = "2XWcxVALvInOlAOfROErKS "
28
+ id = "52NfYmZnxLnJXKpIQXwnzC "
29
29
/>
30
30
< Route
31
31
component = { Error404 }
You can’t perform that action at this time.
0 commit comments