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

recent_view: Remove side borders. #30109

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 0 additions & 2 deletions web/styles/dark_theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -724,8 +724,6 @@
}

#recent_view_table {
border-color: hsl(0deg 0% 0% / 60%);

.fa-envelope,
.fa-group {
opacity: 0.7;
Expand Down
10 changes: 4 additions & 6 deletions web/styles/recent_view.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
overflow: hidden !important;
display: flex;
flex-direction: column;
border-style: solid;
border-color: hsl(0deg 0% 88%);
border-width: 0 1px;
border-radius: 0;
/* To make the table span full height
* when rows don't reach bottom of the
* window. This makes the border span
Expand Down Expand Up @@ -164,7 +160,6 @@

#recent_view_filter_buttons {
padding-top: 12px;
margin: 0 10px;
display: flex;
/* Search box has no height without this in safari. */
flex: 0 0 auto;
Expand All @@ -175,7 +170,9 @@
.search_group {
display: flex;
flex-grow: 1;
margin: 0 -27px 10px 0;
/* The negative margin here is to move the
clear search icon inside the search input. */
margin: 0 -23px 10px 4px;
}

#recent_view_search {
Expand Down Expand Up @@ -558,6 +555,7 @@
}

&:focus {
outline-offset: -2px;
outline: 2px solid var(--color-outline-focus);
}
}
Expand Down
Loading