Unchecked => opens new tab for search page. Checkbox hidden if inline results are shown (still shows link to "find styles" which opens a new tab by-default).
126 lines
2.0 KiB
CSS
Executable File
126 lines
2.0 KiB
CSS
Executable File
#disable-all-wrapper {
|
|
border-bottom: solid 1px #000;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#searchResults,
|
|
#find-styles {
|
|
display: block;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
#searchResults-error {
|
|
background-color: rgba(255, 0, 0, 0.4);
|
|
font-weight: bold;
|
|
padding: 5px;
|
|
text-align: center;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#searchResults, #searchResults-list {
|
|
max-width: 200px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.searchResult {
|
|
padding: 5px;
|
|
}
|
|
.searchResult:hover {
|
|
background-color: rgba(50, 150, 255, 0.5);
|
|
}
|
|
.searchResult.loading {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.searchResult img {
|
|
display: block;
|
|
max-width: 180px;
|
|
max-height: 180px;
|
|
}
|
|
.searchResult-screenshot.no-screenshot {
|
|
width: 180px;
|
|
height: 40px;
|
|
}
|
|
|
|
.searchResult-title {
|
|
display: block;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.searchResult-description {
|
|
overflow: hidden;
|
|
font-style: italic;
|
|
}
|
|
|
|
.searchResult > * {
|
|
overflow-x: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.searchResult-author {
|
|
display: none;
|
|
}
|
|
|
|
.searchResult-meta {
|
|
display: table;
|
|
width: 100%;
|
|
}
|
|
|
|
.searchResult-metaRating, .searchResult-metaInstallCount {
|
|
display: table-cell;
|
|
}
|
|
|
|
.searchResult-rating {
|
|
font-weight: 600;
|
|
padding: 1px 2px 1px 2px;
|
|
color: #fff;
|
|
}
|
|
.searchResult-rating.good {
|
|
background-color: darkgreen;
|
|
}
|
|
.searchResult-rating.okay {
|
|
background-color: darkorange;
|
|
}
|
|
.searchResult-rating.bad {
|
|
background-color: darkred;
|
|
}
|
|
.searchResult-rating.none {
|
|
background-color: #333;
|
|
}
|
|
|
|
.searchResult-install {
|
|
width: 100%;
|
|
}
|
|
.searchResult-install.customize, .searchResult-customize {
|
|
width: 50%;
|
|
}
|
|
|
|
#searchResultsNav {
|
|
flex-direction: row;
|
|
text-align: center;
|
|
word-break: keep-all;
|
|
opacity: 1.0;
|
|
}
|
|
#searchResultsNav.loading {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
#searchResultsNav label {
|
|
width: 40px;
|
|
display: inline-block;
|
|
word-break: keep-all;
|
|
}
|
|
|
|
#searchResultsNav button {
|
|
text-align: center;
|
|
}
|
|
|
|
#searchResultsNav-prev[disabled],
|
|
#searchResultsNav-next[disabled] {
|
|
cursor: not-allowed;
|
|
background-image: linear-gradient(rgba(90, 90, 90, 0.5), rgba(90, 90, 90, 0.5));
|
|
}
|