mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
716ccf7fe4
* Remove unneeded bookmark name index. * Change bookmark search query to use post_search_data. This allows searching on topic title and post content * Tweak the style/layout of the bookmark list so the search looks better and the whole page fits better on mobile.
62 lines
1.0 KiB
SCSS
62 lines
1.0 KiB
SCSS
$mobile-breakpoint: 700px;
|
|
|
|
.bookmark-list {
|
|
th.post-metadata {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.bookmark-search-form {
|
|
margin-bottom: 1em;
|
|
display: flex;
|
|
|
|
input[type="text"] {
|
|
flex: 1;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
input[type="text"] {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bookmark-list-item {
|
|
td.post-metadata {
|
|
text-align: center;
|
|
}
|
|
@media (max-width: $mobile-breakpoint) {
|
|
.main-link {
|
|
padding-left: 0.5em;
|
|
padding-right: 0.5em;
|
|
}
|
|
}
|
|
.bookmark-metadata {
|
|
font-size: $font-down-2;
|
|
display: flex;
|
|
margin-bottom: 0.2em;
|
|
|
|
&-item {
|
|
margin-right: 0.5em;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.d-icon {
|
|
// not aligning center because of multi-line notes
|
|
align-self: flex-start;
|
|
margin-right: 0.2em;
|
|
padding-top: 0.12em;
|
|
}
|
|
|
|
@media (max-width: $mobile-breakpoint) {
|
|
flex-direction: column;
|
|
&-item {
|
|
display: block;
|
|
margin-bottom: 0.2em;
|
|
}
|
|
}
|
|
}
|
|
}
|