Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow primary field container to fill available space #97081

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/reader/recent/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ body.is-reader-full-post {

.components-flex {
align-items: center;
flex-grow: 1;
}

.dataviews-view-list__media-wrapper {
Expand Down
2 changes: 1 addition & 1 deletion client/reader/sidebar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ body.is-section-reader {
margin-right: 8px;
}

/* @holdercp TODO: This can be removed once calypso/reader/stream/reader-list-followed-sites is removed */

.sidebar-streams__following-load-more {
color: var(--color-link);
cursor: pointer;
Expand Down
2 changes: 1 addition & 1 deletion client/reader/stream/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@
line-height: 20px;
}
}
/* @holdercp TODO: This can be removed once calypso/reader/stream/reader-list-followed-sites is removed */

.sidebar-streams__following-load-more {
color: var(--color-neutral-100);
font-size: $font-body-small;
Expand Down
1 change: 0 additions & 1 deletion client/state/reader-ui/sidebar/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export function toggleReaderSidebarFollowing() {
* @returns The action object to dispatch.
*/
export function selectSidebarRecentSite( { feedId } ) {
// @holdercp TODO: Determine if tracking is needed here
return {
type: READER_SIDEBAR_SELECT_RECENT_SITE,
feedId,
Expand Down
Loading