stylus/popup/search-results.css

343 lines
5.9 KiB
CSS
Raw Normal View History

body.search-results-shown {
overflow-y: scroll;
overflow-x: hidden;
2017-12-11 04:35:23 +00:00
background-color: #aaa;
}
2017-12-10 01:03:04 +00:00
#search-results {
position: relative;
}
#search-results-error {
background-color: rgba(255, 0, 0, 0.4);
font-weight: bold;
padding: 5px;
text-align: center;
margin: -.5rem 0 1rem;
}
#search-results-list {
position: relative;
min-height: 200px;
}
.search-result,
.search-result-empty {
position: relative;
2017-12-11 04:35:23 +00:00
padding: 8px 8px 24px;
2017-12-10 01:03:04 +00:00
min-height: 160px;
}
2017-12-10 01:03:04 +00:00
.search-result {
2017-12-11 04:35:23 +00:00
box-shadow: 1px 1px 10px rgba(0, 0, 0, .75);
border-radius: 4px;
border: 1px solid #555;
margin-bottom: 24px;
background-color: #eee;
2017-12-10 01:03:04 +00:00
}
.search-result:hover {
2017-12-11 04:35:23 +00:00
border-color: #000;
background-color: #fff;
}
2017-12-11 05:31:15 +00:00
.search-result .lds-spinner {
2017-12-11 04:35:23 +00:00
transform: scale(.5);
2017-12-11 05:31:15 +00:00
filter: invert(1) drop-shadow(1px 1px 3px #000);
}
2017-12-11 04:35:23 +00:00
.search-result-empty .lds-spinner {
2017-12-11 05:31:15 +00:00
transform: scale(.5);
filter: opacity(.2);
}
.search-result-fadein {
animation: fadein 1s;
animation-fill-mode: both;
}
.search-result-screenshot {
height: 140px;
width: 100%;
object-fit: cover;
2017-12-11 04:35:23 +00:00
cursor: pointer;
}
.search-result-title {
2017-12-10 01:03:04 +00:00
margin-bottom: .5em;
display: block;
color: #666;
2017-12-10 07:06:21 +00:00
overflow-wrap: break-word;
2017-12-10 01:03:04 +00:00
}
.search-result-title span {
font-size: 1.2em;
font-weight: 600;
}
2017-12-10 01:03:04 +00:00
.search-result:hover .search-result-title {
color: initial;
}
.search-result-info {
position: relative;
}
2017-12-10 01:03:04 +00:00
.search-result-info > div {
2017-12-11 04:35:23 +00:00
/* opacity: 0; */
position: absolute;
width: 100%;
2017-12-10 07:06:21 +00:00
transition: opacity .25s ease-in-out;
}
2017-12-10 01:03:04 +00:00
2017-12-11 04:35:23 +00:00
.search-result:hover .actions {
opacity: 1;
}
.search-result-overlay {
2017-12-11 04:35:23 +00:00
bottom: -24px;
}
.search-result-info > .actions {
2017-12-11 04:35:23 +00:00
bottom: 15px;
2017-12-10 01:03:04 +00:00
text-align: center;
2017-12-11 04:35:23 +00:00
z-index: 10;
opacity: 0;
}
2017-12-10 01:03:04 +00:00
.search-result-info > .actions > button {
background-color: #fff;
2017-12-10 01:03:04 +00:00
box-shadow: 2px 2px 20px #000;
white-space: nowrap;
}
2017-12-10 01:03:04 +00:00
.search-result-info > .actions > button:hover {
background-color: #ccc;
}
.search-result-overlay > * {
2017-12-10 01:03:04 +00:00
display: flex;
}
2017-12-10 01:03:04 +00:00
.search-result-author {
2017-12-11 04:35:23 +00:00
max-width: 20%;
}
.search-result-author-link {
2017-12-10 01:03:04 +00:00
color: inherit;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.search-result-description-group {
align-items: center;
2017-12-11 04:35:23 +00:00
padding: 0;
font-size: 90%;
line-height: 24px;
min-height: 5px;
}
.search-result-description {
2017-12-10 01:03:04 +00:00
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2017-12-10 01:03:04 +00:00
.search-result-meta {
2017-12-11 04:35:23 +00:00
background-color: hsla(0, 0%, 93%, 0.76);
2017-12-10 01:03:04 +00:00
justify-content: space-between;
2017-12-11 04:35:23 +00:00
flex-wrap: wrap;
}
.search-result:hover .search-result-meta {
background-color: hsla(0, 0%, 100%, 0.76);
}
2017-12-10 01:03:04 +00:00
.search-result-meta > * > :first-child {
2017-12-11 04:35:23 +00:00
display: none;
2017-12-10 01:03:04 +00:00
opacity: .75;
}
2017-12-10 01:03:04 +00:00
.search-result-meta-rating {
text-align: center;
}
2017-12-10 01:03:04 +00:00
.search-result-meta-install-count {
text-align: right;
}
.search-result-rating {
font-weight: 600;
padding: 1px 2px 1px 2px;
}
2017-12-10 01:03:04 +00:00
.search-result-rating.good {
2017-12-11 04:35:23 +00:00
color: darkgreen;
}
2017-12-10 01:03:04 +00:00
.search-result-rating.okay {
2017-12-11 04:35:23 +00:00
color: chocolate;
}
2017-12-10 01:03:04 +00:00
.search-result-rating.bad {
2017-12-11 04:35:23 +00:00
color: darkred;
}
2017-12-10 01:03:04 +00:00
.search-result-rating.none {
}
.search-result-install-count {
font-weight: 600;
}
2017-12-10 01:03:04 +00:00
.search-result-install, .search-result-customize, .search-result-uninstall {
margin: 3px;
}
#search-results-nav-top,
#search-results-nav-bottom {
flex-direction: row;
text-align: center;
word-break: keep-all;
2017-12-11 04:35:23 +00:00
}
#search-results-nav-top {
padding-top: 4px;
margin-bottom: 8px;
}
#search-results-nav-bottom {
margin-top: -14px;
margin-bottom: 16px;
}
#search-results-nav-top button,
#search-results-nav-bottom button {
-webkit-appearance: none;
background: none;
border: none;
padding: .25rem 1rem;
margin: 0 .5rem;
2017-12-11 04:35:23 +00:00
color: #eee;
text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
font-size: 250%;
line-height: 24px;
vertical-align: middle;
cursor: pointer;
}
#search-results-nav-top button:hover,
#search-results-nav-bottom button:hover {
2017-12-11 04:35:23 +00:00
text-shadow: 0 1px 3px #000;
}
#find-styles-inline-group label {
position: relative;
padding-left: 16px;
}
/* spinner: https://github.com/loadingio/css-spinner */
.lds-spinner {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
2017-12-10 01:03:04 +00:00
position: absolute;
top: 0;
left: 0;
right: 0;
width: 200px; /* don't change! use "transform: scale(.75)" */
height: 200px; /* don't change! use "transform: scale(.75)" */
margin: auto;
animation: lds-spinner 1s reverse;
animation-fill-mode: both;
}
@keyframes lds-spinner {
0% {
2017-12-11 04:35:23 +00:00
opacity: 1;
}
2017-12-10 01:03:04 +00:00
100% {
opacity: 0;
}
}
2017-12-10 01:03:04 +00:00
.lds-spinner div {
left: 94px;
top: 23px;
position: absolute;
animation: lds-spinner linear 1s infinite;
2017-12-10 01:03:04 +00:00
animation-direction: reverse;
background: currentColor;
width: 12px;
height: 34px;
border-radius: 20%;
transform-origin: 6px 77px;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(1) {
transform: rotate(0deg);
animation-delay: -0.916666666666667s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(2) {
transform: rotate(30deg);
animation-delay: -0.833333333333333s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(3) {
transform: rotate(60deg);
animation-delay: -0.75s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(4) {
transform: rotate(90deg);
animation-delay: -0.666666666666667s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(5) {
transform: rotate(120deg);
animation-delay: -0.583333333333333s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(6) {
transform: rotate(150deg);
animation-delay: -0.5s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(7) {
transform: rotate(180deg);
animation-delay: -0.416666666666667s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(8) {
transform: rotate(210deg);
animation-delay: -0.333333333333333s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(9) {
transform: rotate(240deg);
animation-delay: -0.25s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(10) {
transform: rotate(270deg);
animation-delay: -0.166666666666667s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(11) {
transform: rotate(300deg);
animation-delay: -0.083333333333333s;
}
2017-12-10 01:03:04 +00:00
.lds-spinner div:nth-child(12) {
transform: rotate(330deg);
animation-delay: 0s;
}