Update
This commit is contained in:
parent
e92dff60e8
commit
99a74bf533
6 changed files with 30 additions and 10 deletions
Binary file not shown.
Binary file not shown.
|
@ -4,6 +4,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
## [0.53.8] - [2022-11-17]
|
||||
|
||||
### Added
|
||||
- Added the ability for users to hide content they've already watched throughout the app via a checkbox ([7645](Add Filter for Unwatched Content))
|
||||
|
||||
### Fixed
|
||||
- Selecting a large file in publish no longer crashes ([#7736](https://github.com/lbryio/lbry-desktop/pull/7736))
|
||||
- Unfollowing unpublished channels ([#7737](https://github.com/lbryio/lbry-desktop/pull/7737))
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
margin-top: var(--spacing-m);
|
||||
margin-bottom: var(--spacing-m);
|
||||
color: var(--color-text-subtitle);
|
||||
align-items: flex-start;
|
||||
align-items: baseline;
|
||||
|
||||
@media (min-width: $breakpoint-small) {
|
||||
flex-direction: row;
|
||||
|
@ -27,6 +27,23 @@
|
|||
}
|
||||
}
|
||||
|
||||
// UPDATE: Add style for checkbox
|
||||
.claim-search__checkbox {
|
||||
padding-left: 45%;
|
||||
padding-top: 7%;
|
||||
|
||||
}
|
||||
|
||||
//UPDATE: Added style for checkbox on search page
|
||||
.claim-search__checkbox_searchbox {
|
||||
// Placeholder.
|
||||
}
|
||||
|
||||
// UPDATE: Add style for checkbox label
|
||||
.checkbox-label {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.claim-search__dropdown {
|
||||
font-size: var(--font-body);
|
||||
background-color: var(--color-input-bg);
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
.file-thumbnail__viewed-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background-color: var(--color-gray-7);
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 10px; // UPDATE: Changed thumbnail viewed bar height to 10px
|
||||
background-color: var(--color-gray-7);
|
||||
}
|
||||
|
||||
.file-thumbnail__viewed-bar-progress {
|
||||
height: 5px;
|
||||
background-color: var(--color-primary);
|
||||
height: 10px; // UPDATE: Changed thumbnail viewed progress bar height to 10px
|
||||
background-color: red; // UPDATE: Changed progress bar color to red
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
.radio,
|
||||
.checkbox {
|
||||
display: inline-block;
|
||||
margin-top: 0;
|
||||
margin-top: 5px; // UPDATE: Helps to align items in "Other Options" in search
|
||||
|
||||
&:not(:first-of-type) {
|
||||
margin-top: var(--spacing-s);
|
||||
|
|
Loading…
Add table
Reference in a new issue