File tree Expand file tree Collapse file tree 4 files changed +39
-11
lines changed Expand file tree Collapse file tree 4 files changed +39
-11
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ const CourseOptimizerPage: FC<{ courseId: string }> = ({ courseId }) => {
150
150
(
151
151
< span style = { { display : 'inline-flex' , alignItems : 'center' } } >
152
152
{ intl . formatMessage ( messages . headingTitle ) }
153
- < Badge variant = "primary" className = "ml-2" > { intl . formatMessage ( messages . beta ) } </ Badge >
153
+ < Badge variant = "primary" className = "ml-2" style = { { fontSize : 'large' } } > { intl . formatMessage ( messages . beta ) } </ Badge >
154
154
</ span >
155
155
)
156
156
}
Original file line number Diff line number Diff line change 29
29
.unit-card {
30
30
border : 1px solid #BCBCBC ;
31
31
box-shadow : 0 1px 2px rgb (0 0 0 / .15 );
32
- padding : 14px 32px 4 px !important ;
32
+ padding : 14px 32px 8 px !important ;
33
33
34
- .table {
35
- margin-bottom : .5rem ;
34
+ .pgn__data-table-wrapper {
35
+ box-shadow : none ;
36
+ }
37
+
38
+ .pgn__data-table-status-bar {
39
+ display : none ;
40
+ }
41
+
42
+ .pgn__data-table-footer {
43
+ display : none ;
44
+ }
45
+
46
+ .pgn__data-table.is-striped tbody tr :nth-child (even ) {
47
+ background-color : transparent !important ;
48
+ }
49
+
50
+ table {
36
51
table-layout : fixed ;
37
52
38
53
tbody {
42
57
td {
43
58
padding : 16px 0 ;
44
59
border-top : none !important ;
60
+
61
+ a {
62
+ color : var (--info-500 , #00688D );
63
+ }
45
64
}
46
65
47
66
td :nth-child (2 ) {
54
73
55
74
/* Subsection Header */
56
75
.unit-header {
57
- margin-top : 10 px ;
76
+ padding : 4 px 0 6 px !important ;
58
77
font-size : 14px ;
59
78
font-weight : 700 ;
60
79
margin-bottom : .75rem ;
61
- color : var ( --pgn-color-primary-500 ) ;
80
+ color : #000000 ;
62
81
}
63
82
64
83
/* Block Links */
78
97
}
79
98
80
99
.unit {
81
- padding : 0 1.5rem ;
100
+ padding : .6 rem 1.5rem 0 ;
82
101
margin-right : -12px ;
83
102
}
84
103
85
104
.broken-link {
86
- color : var (--pgn-color-blue );
87
105
text-decoration : none ;
88
106
}
89
107
172
190
box-shadow : 0 1px 2px rgb (0 0 0 / .15 );
173
191
174
192
.collapsible-trigger {
193
+ padding : 18px ;
175
194
border : none ;
176
195
}
177
196
}
181
200
}
182
201
183
202
.section-collapsible-item-body {
184
- margin : -16 px -9 px -12 px -10 px ;
203
+ margin : -20 px -8 px -2 px -12 px ;
185
204
}
186
205
187
206
.scan-header-title-container {
304
323
border-bottom-left-radius : 8px !important ;
305
324
border-bottom-right-radius : 8px !important ;
306
325
}
326
+
327
+ .section-title {
328
+ color : #000000 ;
329
+ font-size : 18px ;
330
+ font-style : normal ;
331
+ font-weight : 700 ;
332
+ line-height : 24px ;
333
+ margin : 0 ;
334
+ }
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ const ScanResults: FC<Props> = ({ data }) => {
121
121
onClick = { open }
122
122
disabled = { false }
123
123
iconAfter = { ArrowDropDown }
124
- className = "rounded-sm justify-content-between cadence-button "
124
+ className = "justify-content-between"
125
125
>
126
126
{ intl . formatMessage ( messages . filterButtonLabel ) }
127
127
</ Button >
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const SectionCollapsible: FC<Props> = ({
45
45
< div className = { className } >
46
46
< div className = "section-collapsible-header-item" >
47
47
< Icon src = { isOpen ? ArrowDropDown : ArrowRight } />
48
- < strong > { title } </ strong >
48
+ < p className = "section-title" > { title } </ p >
49
49
</ div >
50
50
< div className = "section-collapsible-header-actions" >
51
51
< div className = "section-collapsible-header-action-item" >
You can’t perform that action at this time.
0 commit comments