Skip to content
459 changes: 383 additions & 76 deletions public/index.css

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
.filterSelect .ant-picker {
background-color: #ffffff !important;
border-color: rgba(0, 0, 0, 0.2) !important;
}
}

.oxideDark {
background-color: #1b2a41;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,6 @@
width: 100%;
}

/* border for all the row data */
.resourceRow {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
border: 2px solid black;
}

/* Column Styling for resources*/
.column {
Expand All @@ -24,15 +16,7 @@
font-weight: bold;
}

/* Header Styling */
.header {
background-color: #f5f5f5;
font-weight: bold;
}

.resourceRow .column:last-child {
border-right: none;
}

/* colors for text based on status */
.statusgreen {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
align-items: center;
padding: 8px;
margin: 2px;
cursor: pointer;
background-color: white;
border-radius: 5px;
border-bottom: 1px solid #eee;
Expand Down
8 changes: 4 additions & 4 deletions src/components/WeeklySummariesReport/FormattedReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function ReportDetails({
<ListGroupItem darkMode={darkMode}>
<div
style={{
backgroundColor: isMeetCriteria ? '#ffff66' : 'transparent',
backgroundColor: isMeetCriteria ? '#989845' : 'transparent',
width: '100%',
padding: '6px 12px 6px 0px',
}}
Expand Down Expand Up @@ -665,7 +665,7 @@ function TotalValidWeeklySummaries({ summary, canEditSummaryCount, darkMode }) {
</div>
) : (
<div className="total-valid-text">
<b style={style}>Total Valid Weekly Summaries:</b>
<b>Total Valid Weekly Summaries:</b>
</div>
)}
{canEditSummaryCount ? (
Expand Down Expand Up @@ -738,7 +738,7 @@ function BioSwitch({ userId, bioPosted, summary, getWeeklySummariesReport }) {
return (
<div>
<div className={styles.bioToggle}>
<b style={style}>Bio announcement:</b>
<b>Bio announcement:</b>
</div>
<div className={styles.bioToggle}>
<ToggleSwitch
Expand Down Expand Up @@ -769,7 +769,7 @@ function BioLabel({ bioPosted, summary }) {
}
return (
<div>
<b style={style}>Bio announcement: </b>
<b>Bio announcement: </b>
{text}
</div>
);
Expand Down
Loading
Loading