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

My Profile [Sheets][Desktop] #2142

Closed
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
41 changes: 40 additions & 1 deletion static/css/s2.css
Original file line number Diff line number Diff line change
Expand Up @@ -8856,7 +8856,10 @@ body.interface-english .publishBox .react-tags__suggestions ul {
flex: 1;
}
.sheet .sheetTitleText {
font-family: var(--english-serif-font-family);
font-family: Roboto;
font-size: 16px;
font-weight: 600;
line-height: 18.75px;
}
.sheetListingPinButton {
display: none;
Expand Down Expand Up @@ -14075,6 +14078,42 @@ span.ref-link-color-3 {color: blue}
padding: 0px 4px;
}


.sheetsProfileList {
margin-top: 20px;
background-color: white;
border: 1000px solid white;
border-top: 4px solid white;
border-bottom: 120px solid white;
margin: -4px 0 -120px -1000px;
width: 100%;

}

.interface-hebrew .profile-page .sheetsProfileList {
margin: -4px -1000px -120px 0;
}

.sheetsProfileList .readerNavMenuSearchButton {
margin: 0 10px 0 5px;
display: inline-flex;
top: 0;
}
.interface-hebrew .sheetsProfileList .readerNavMenuSearchButton {
margin: 0 5px 0 10px;
}
.sheetsProfileList input {
border: 0;
font-size: 18px;
font-family: "adobe-garamond-pro", "Crimson Text", Georgia, serif;
background-color: transparent;
}
.sheetsProfileList .loadingMessage {
margin-top: 30px;
}



@-webkit-keyframes load5 {
0%,100%{box-shadow:0 -2.6em 0 0 #ffffff,1.8em -1.8em 0 0 rgba(0,0,0,0.2),2.5em 0 0 0 rgba(0,0,0,0.2),1.75em 1.75em 0 0 rgba(0,0,0,0.2),0 2.5em 0 0 rgba(0,0,0,0.2),-1.8em 1.8em 0 0 rgba(0,0,0,0.2),-2.6em 0 0 0 rgba(0,0,0,0.5),-1.8em -1.8em 0 0 rgba(0,0,0,0.7)}
12.5%{box-shadow:0 -2.6em 0 0 rgba(0,0,0,0.7),1.8em -1.8em 0 0 #ffffff,2.5em 0 0 0 rgba(0,0,0,0.2),1.75em 1.75em 0 0 rgba(0,0,0,0.2),0 2.5em 0 0 rgba(0,0,0,0.2),-1.8em 1.8em 0 0 rgba(0,0,0,0.2),-2.6em 0 0 0 rgba(0,0,0,0.2),-1.8em -1.8em 0 0 rgba(0,0,0,0.5)}
Expand Down
2 changes: 0 additions & 2 deletions static/js/Misc.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,6 @@ FilterableList.propTypes = {
showFilterHeader: PropTypes.bool,
};


class TabView extends Component {
constructor(props) {
super(props);
Expand Down Expand Up @@ -1917,7 +1916,6 @@ const SheetListing = ({
<div className="sheetLeft">
{sheetInfo}
<a href={sheet.sheetUrl} target={openInNewTab ? "_blank" : "_self"} className="sheetTitle" onClick={handleSheetClickLocal}>
<img src="/static/img/sheet.svg" className="sheetIcon"/>
<span className="sheetTitleText">{title}</span>
</a>
{sheetSummary}
Expand Down
Loading