mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
b8da3ab22f
no issue - fixed filter responsive CSS - fixed list behavior
296 lines
6.0 KiB
CSS
296 lines
6.0 KiB
CSS
.gh-list {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
background: var(--white);
|
|
display: table;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
box-shadow: var(--shadow-1);
|
|
}
|
|
|
|
.gh-list.tabbed {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
}
|
|
|
|
.gh-list-row {
|
|
display: table-row;
|
|
}
|
|
|
|
.gh-list-row:not(.header):not(.loading):hover .gh-list-cell,
|
|
.gh-list-row:not(.header):not(.loading):hover .gh-list-data {
|
|
background: var(--whitegrey-l2);
|
|
}
|
|
|
|
.gh-list-row:first-of-type .gh-list-cell:first-child,
|
|
.gh-list-row:first-of-type .gh-list-data:first-child {
|
|
border-top-left-radius: 5px;
|
|
}
|
|
|
|
.gh-list-row:first-of-type .gh-list-cell:last-child,
|
|
.gh-list-row:first-of-type .gh-list-data:last-child {
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
.gh-list-row:last-of-type .gh-list-cell:first-child,
|
|
.gh-list-row:last-of-type .gh-list-data:first-child {
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.gh-list-row:last-of-type .gh-list-cell:last-child,
|
|
.gh-list-row:last-of-type .gh-list-data:last-child {
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.gh-list-row:not(.header):first-of-type {
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
.gh-list-row:last-of-type {
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.gh-list-cell {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.gh-list-header {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
border-bottom: var(--lightgrey) 1px solid;
|
|
font-size: 1.2rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.1px;
|
|
color: var(--midgrey);
|
|
text-transform: uppercase;
|
|
padding: 10px 20px;
|
|
white-space: nowrap;
|
|
background: var(--whitegrey-l2);
|
|
}
|
|
|
|
.gh-list:not(.tabbed) .gh-list-header:first-child {
|
|
border-top-left-radius: 5px;
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.gh-list:not(.tabbed) .gh-list-header:last-child {
|
|
border-top-right-radius: 5px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
.gh-list-data {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
padding: 16px 20px;
|
|
border-top: var(--whitegrey) 1px solid;
|
|
transition: none !important;
|
|
}
|
|
|
|
.gh-list-row:nth-of-type(2) .gh-list-data {
|
|
border-top: none;
|
|
}
|
|
|
|
.gh-list-row .gh-list-data:first-child {
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.gh-list-data.show-on-hover > *,
|
|
.gh-list-cell.show-on-hover > * {
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.gh-list-row:hover .gh-list-data.show-on-hover > *,
|
|
.gh-list-row:hover .gh-list-cell.show-on-hover > * {
|
|
opacity: 1;
|
|
}
|
|
|
|
.gh-list-data.align-right,
|
|
.gh-list-cell.align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.gh-list-cellwidth-max {
|
|
width: 100%;
|
|
}
|
|
|
|
.gh-list-cellwidth-min {
|
|
max-width: 0;
|
|
}
|
|
|
|
.gh-list-cellwidth-2-3 {
|
|
width: 67%;
|
|
}
|
|
|
|
.gh-list-cellwidth-1-2 {
|
|
width: 50%;
|
|
}
|
|
|
|
.gh-list-cellwidth-1-3 {
|
|
width: 33%;
|
|
}
|
|
|
|
.gh-list-cellwidth-10 { width: 10%; }
|
|
.gh-list-cellwidth-20 { width: 20%; }
|
|
.gh-list-cellwidth-30 { width: 30%; }
|
|
.gh-list-cellwidth-40 { width: 40%; }
|
|
.gh-list-cellwidth-50 { width: 50%; }
|
|
.gh-list-cellwidth-60 { width: 60%; }
|
|
.gh-list-cellwidth-70 { width: 70%; }
|
|
.gh-list-cellwidth-80 { width: 80%; }
|
|
.gh-list-cellwidth-90 { width: 90%; }
|
|
.gh-list-cellwidth-100 { width: 100%; }
|
|
|
|
.gh-list-cellwidth-chevron {
|
|
width: 32px;
|
|
}
|
|
|
|
/* Typography
|
|
/* --------------------------------------------------- */
|
|
.gh-list h3 {
|
|
margin: 0 0 3px 0;
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
|
|
/* Helpers for smaller sizes
|
|
/* --------------------------------------------------- */
|
|
|
|
@media (max-width: 1000px) {
|
|
.gh-list-header {
|
|
display: none;
|
|
}
|
|
|
|
/* Generic helper class to hide cell */
|
|
.gh-list-hidecell-m {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
.gh-list-hidecell-s {
|
|
display: none;
|
|
}
|
|
|
|
/* Hidden elements are usually controls for the row which should
|
|
be shown always on mobile sizes */
|
|
.gh-list-cell.show-on-hover > *,
|
|
.gh-list-data.show-on-hover > * {
|
|
opacity: 1;
|
|
}
|
|
|
|
.gh-list-cell.force-hide-s > *,
|
|
.gh-list-data.force-hide-s > * {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
|
|
/* Flex lists - header and responsive sizes must be custom
|
|
/* -------------------------------------------------- */
|
|
.gh-flex-list-row {
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: space-between;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-top: var(--whitegrey) 1px solid;
|
|
}
|
|
|
|
.gh-flex-list-row:first-of-type {
|
|
border-top: none;
|
|
}
|
|
|
|
.gh-flex-list-row:not(.header):not(.loading):hover {
|
|
background: var(--whitegrey-l2);
|
|
}
|
|
|
|
.gh-flex-list-row:first-of-type {
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
.gh-flex-list-row:last-of-type {
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.gh-flex-list-data {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px 20px;
|
|
transition: none !important;
|
|
}
|
|
|
|
.gh-flex-list-auto {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.gh-flex-list-grow {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.gh-flex-list-shrink {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
|
|
/* Fake loading list
|
|
/* -------------------------------------------------- */
|
|
|
|
@keyframes placeHolderShimmer {
|
|
0%{
|
|
background-position: -800px 0
|
|
}
|
|
100%{
|
|
background-position: 800px 0
|
|
}
|
|
}
|
|
|
|
@keyframes fadeLoadingList {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.gh-list.loading {
|
|
opacity: 0;
|
|
animation: fadeLoadingList 0.3s ease 0.75s 1 forwards;
|
|
}
|
|
|
|
.gh-list-loadingcell div {
|
|
animation-duration: 1.5s;
|
|
animation-fill-mode: forwards;
|
|
animation-iteration-count: infinite;
|
|
animation-name: placeHolderShimmer;
|
|
animation-timing-function: linear;
|
|
background: var(--lightgrey);
|
|
background: linear-gradient(to right, var(--lightgrey) 8%, color-mod(var(--lightgrey) l(+2%)) 18%, var(--lightgrey) 33%);
|
|
background-size: 800px 104px;
|
|
position: relative;
|
|
max-width: 440px;
|
|
height: 13px;
|
|
}
|
|
|
|
.gh-list-loadingcell:hover {
|
|
background: none;
|
|
}
|
|
|
|
.gh-list-loadingcell .gh-list-loading-title {
|
|
max-width: 440px;
|
|
height: 13px;
|
|
}
|
|
|
|
.gh-list-loadingcell .gh-list-loading-detail {
|
|
max-width: 320px;
|
|
height: 9px;
|
|
margin-top: 8px;
|
|
} |