UX: make github onebox styles more responsive (#24761)
This commit is contained in:
parent
694b5f108b
commit
c197f8c6ee
|
@ -156,24 +156,6 @@ aside.onebox {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-body-container {
|
|
||||||
margin: 1em 0 0 0;
|
|
||||||
color: var(--primary-very-high);
|
|
||||||
max-height: 400px;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
overflow-y: auto;
|
|
||||||
word-break: break-word;
|
|
||||||
font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono",
|
|
||||||
"DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
||||||
flex: 1 0 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
.show-more {
|
|
||||||
// padding on right for larger hitzone
|
|
||||||
padding: 0.5em 1.5em 0em 0.25em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[style*="--aspect-ratio"] > :first-child {
|
[style*="--aspect-ratio"] > :first-child {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -438,8 +420,27 @@ pre.onebox code {
|
||||||
.onebox.githubcommit,
|
.onebox.githubcommit,
|
||||||
.onebox.githubissue {
|
.onebox.githubissue {
|
||||||
.onebox-body {
|
.onebox-body {
|
||||||
|
display: grid;
|
||||||
|
grid-template-areas:
|
||||||
|
"icon title"
|
||||||
|
"icon branches"
|
||||||
|
"icon info"
|
||||||
|
"body body";
|
||||||
|
grid-template-columns: 2.5em 1fr;
|
||||||
|
gap: 0.25em 0.75em;
|
||||||
|
|
||||||
|
@include breakpoint(mobile-extra-large) {
|
||||||
|
gap: 0.25em 0.5em;
|
||||||
|
grid-template-columns: 1.5em 1fr;
|
||||||
|
grid-template-areas:
|
||||||
|
"icon title"
|
||||||
|
"branches branches"
|
||||||
|
"info info"
|
||||||
|
"body body";
|
||||||
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .github-icon {
|
> .github-icon {
|
||||||
|
@ -450,22 +451,26 @@ pre.onebox code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-row {
|
.github-row {
|
||||||
display: flex;
|
display: contents;
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-icon-container {
|
.github-icon-container,
|
||||||
display: flex;
|
.github-info-container {
|
||||||
align-items: center;
|
display: contents;
|
||||||
margin-right: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-icon {
|
.github-icon {
|
||||||
|
grid-area: icon;
|
||||||
|
align-self: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
max-width: 2.15em;
|
||||||
|
margin: 0 auto;
|
||||||
fill: var(--primary-high);
|
fill: var(--primary-high);
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.branches {
|
.branches {
|
||||||
|
grid-area: branches;
|
||||||
font-size: var(--font-down-1);
|
font-size: var(--font-down-1);
|
||||||
code {
|
code {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
|
@ -478,18 +483,12 @@ pre.onebox code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.github-info {
|
.github-info {
|
||||||
|
grid-area: info;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
gap: 0.15em 1em;
|
||||||
> div {
|
|
||||||
margin: 2.5px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
> div:not(:last-child) {
|
|
||||||
margin-right: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lines {
|
.lines {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -507,15 +506,26 @@ pre.onebox code {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.github-body-container {
|
||||||
|
grid-area: body;
|
||||||
|
margin: 1em 0 0 0;
|
||||||
|
color: var(--primary-very-high);
|
||||||
|
max-height: 400px;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
overflow-y: auto;
|
||||||
|
word-break: break-word;
|
||||||
|
font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono",
|
||||||
|
"DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.show-more {
|
||||||
|
// padding on right for larger hitzone
|
||||||
|
padding: 0.5em 1.5em 0em 0.25em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.onebox-avatar-inline {
|
.onebox-avatar-inline {
|
||||||
height: 20px;
|
|
||||||
width: 20px;
|
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
float: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
vertical-align: middle;
|
|
||||||
max-width: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.labels span {
|
.labels span {
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
@import "modal";
|
@import "modal";
|
||||||
@import "modal-overrides";
|
@import "modal-overrides";
|
||||||
@import "new-user";
|
@import "new-user";
|
||||||
@import "onebox";
|
|
||||||
@import "personal-message";
|
@import "personal-message";
|
||||||
@import "push-notifications-mobile";
|
@import "push-notifications-mobile";
|
||||||
@import "reviewables";
|
@import "reviewables";
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
// Onebox - Github - PR, Commit & Issue
|
|
||||||
.onebox.githubpullrequest,
|
|
||||||
.onebox.githubcommit,
|
|
||||||
.onebox.githubissue {
|
|
||||||
.github-icon-container {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
.github-info-container {
|
|
||||||
h4 {
|
|
||||||
margin: 0 0 10px 50px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue