mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-31 11:18:23 -05:00
542 lines
13 KiB
CSS
542 lines
13 KiB
CSS
/*!
|
|
* # Fomantic-UI 2.9.4 - Search
|
|
* https://github.com/fomantic/Fomantic-UI/
|
|
*
|
|
*
|
|
* Released under the MIT license
|
|
* https://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
|
|
/*******************************
|
|
Search
|
|
*******************************/
|
|
|
|
.ui.search {
|
|
position: relative;
|
|
}
|
|
.ui.search > .prompt {
|
|
margin: 0;
|
|
outline: none;
|
|
-webkit-appearance: none;
|
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
|
text-shadow: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1.21428571em;
|
|
padding: 0.67857143em 1em;
|
|
font-size: 1em;
|
|
background: #fff;
|
|
border: 1px solid rgba(34, 36, 38, 0.15);
|
|
color: rgba(0, 0, 0, 0.87);
|
|
box-shadow: 0 0 0 0 transparent inset;
|
|
transition: background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
|
|
}
|
|
.ui.search .prompt {
|
|
border-radius: 500rem;
|
|
}
|
|
|
|
/* --------------
|
|
Icon
|
|
--------------- */
|
|
.ui.search .prompt ~ .search.icon {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* --------------
|
|
Results
|
|
--------------- */
|
|
.ui.search > .results {
|
|
display: none;
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
transform-origin: center top;
|
|
white-space: normal;
|
|
text-align: left;
|
|
text-transform: none;
|
|
background: #fff;
|
|
margin-top: 0.5em;
|
|
width: 18em;
|
|
border-radius: 0.28571429rem;
|
|
box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
|
|
border: 1px solid #d4d4d5;
|
|
z-index: 998;
|
|
}
|
|
.ui.search > .results > :first-child {
|
|
border-radius: 0.28571429rem 0.28571429rem 0 0;
|
|
}
|
|
.ui.search > .results > :last-child {
|
|
border-radius: 0 0 0.28571429rem 0.28571429rem;
|
|
}
|
|
|
|
/* --------------
|
|
Result
|
|
--------------- */
|
|
.ui.search > .results .result {
|
|
cursor: pointer;
|
|
display: block;
|
|
overflow: hidden;
|
|
font-size: 1em;
|
|
padding: 0.85714286em 1.14285714em;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
line-height: 1.33;
|
|
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
|
}
|
|
.ui.search > .results .result:last-child {
|
|
border-bottom: none !important;
|
|
}
|
|
|
|
/* Image */
|
|
.ui.search > .results .result .image {
|
|
float: right;
|
|
overflow: hidden;
|
|
background: none;
|
|
width: 5em;
|
|
height: 3em;
|
|
border-radius: 0.25em;
|
|
}
|
|
.ui.search > .results .result .image img {
|
|
display: block;
|
|
width: auto;
|
|
height: 100%;
|
|
}
|
|
|
|
/* --------------
|
|
Info
|
|
--------------- */
|
|
.ui.search > .results .result .image + .content {
|
|
margin: 0 6em 0 0;
|
|
}
|
|
.ui.search > .results .result .title {
|
|
margin: -0.14285714em 0 0;
|
|
font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
font-weight: bold;
|
|
font-size: 1em;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
.ui.search > .results .result .description {
|
|
margin-top: 0;
|
|
font-size: 0.92857143em;
|
|
color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
.ui.search > .results .result .price {
|
|
float: right;
|
|
color: #21ba45;
|
|
}
|
|
|
|
/* --------------
|
|
Message
|
|
--------------- */
|
|
.ui.search > .results > .message {
|
|
padding: 1em 1em;
|
|
}
|
|
.ui.search > .results > .message .header {
|
|
font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.ui.search > .results > .message .description {
|
|
margin-top: 0.25rem;
|
|
font-size: 1em;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
/* View All Results */
|
|
.ui.search > .results > .action {
|
|
display: block;
|
|
border-top: none;
|
|
background: #f3f4f5;
|
|
padding: 0.92857143em 1em;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
States
|
|
*******************************/
|
|
|
|
|
|
/* --------------------
|
|
Focus
|
|
--------------------- */
|
|
.ui.search > .prompt:focus {
|
|
border-color: rgba(34, 36, 38, 0.35);
|
|
background: #fff;
|
|
color: rgba(0, 0, 0, 0.95);
|
|
}
|
|
|
|
/* --------------------
|
|
Loading
|
|
--------------------- */
|
|
.ui.loading.search .input > i.icon::before {
|
|
position: absolute;
|
|
content: "";
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -0.64285714em 0 0 -0.64285714em;
|
|
width: 1.28571429em;
|
|
height: 1.28571429em;
|
|
border-radius: 500rem;
|
|
border: 0.2em solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
.ui.loading.search .input > i.icon::after {
|
|
position: absolute;
|
|
content: "";
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -0.64285714em 0 0 -0.64285714em;
|
|
width: 1.28571429em;
|
|
height: 1.28571429em;
|
|
animation: loader 0.6s infinite linear;
|
|
border: 0.2em solid #767676;
|
|
border-radius: 500rem;
|
|
box-shadow: 0 0 0 1px transparent;
|
|
}
|
|
|
|
/* --------------
|
|
Hover
|
|
--------------- */
|
|
.ui.search > .results .result:hover,
|
|
.ui.category.search > .results .category .result:hover {
|
|
background: #f9fafb;
|
|
}
|
|
.ui.search .action:hover:not(div) {
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
/* --------------
|
|
Active
|
|
--------------- */
|
|
.ui.category.search > .results .category.active {
|
|
background: #f3f4f5;
|
|
}
|
|
.ui.category.search > .results .category.active > .name {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
.ui.search > .results .result.active,
|
|
.ui.category.search > .results .category .result.active {
|
|
position: relative;
|
|
border-left-color: rgba(34, 36, 38, 0.1);
|
|
background: #f3f4f5;
|
|
box-shadow: none;
|
|
}
|
|
.ui.search > .results .result.active .title {
|
|
color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
.ui.search > .results .result.active .description {
|
|
color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
|
|
/* --------------------
|
|
Disabled
|
|
---------------------- */
|
|
|
|
/* Disabled */
|
|
.ui.disabled.search {
|
|
cursor: default;
|
|
pointer-events: none;
|
|
opacity: 0.45;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Types
|
|
*******************************/
|
|
|
|
|
|
/* --------------
|
|
Clear Icon
|
|
--------------- */
|
|
.ui.search > .icon.input > .remove.icon {
|
|
pointer-events: all;
|
|
transition: opacity 0.1s ease;
|
|
cursor: pointer;
|
|
opacity: 0.6;
|
|
}
|
|
.ui.search > .icon.input > .remove.icon:hover {
|
|
opacity: 1;
|
|
}
|
|
.ui.search > .icon.input:not([class*="left icon"]) > .icon ~ .remove.icon {
|
|
right: 1.85714em;
|
|
}
|
|
.ui.search input[type="search"]::-webkit-search-cancel-button {
|
|
-webkit-appearance: none;
|
|
cursor: pointer;
|
|
-webkit-transition: opacity 0.1s ease;
|
|
transition: opacity 0.1s ease;
|
|
opacity: 0.6;
|
|
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 352 512'%3E%3Cpath d='M242.7 256l100.1-100.1c12.3-12.3 12.3-32.2 0-44.5l-22.2-22.2c-12.3-12.3-32.2-12.3-44.5 0L176 189.3 75.9 89.2c-12.3-12.3-32.2-12.3-44.5 0L9.2 111.5c-12.3 12.3-12.3 32.2 0 44.5L109.3 256 9.2 356.1c-12.3 12.3-12.3 32.2 0 44.5l22.2 22.2c12.3 12.3 32.2 12.3 44.5 0L176 322.7l100.1 100.1c12.3 12.3 32.2 12.3 44.5 0l22.2-22.2c12.3-12.3 12.3-32.2 0-44.5L242.7 256z'/%3E%3C/svg%3E") no-repeat;
|
|
height: 1em;
|
|
width: 1em;
|
|
}
|
|
.ui.search input[type="search"]::-webkit-search-cancel-button:hover {
|
|
opacity: 1;
|
|
}
|
|
.ui.loading.search input[type="search"]::-webkit-search-cancel-button {
|
|
display: none;
|
|
}
|
|
.ui.search > .icon.input > input:-ms-input-placeholder ~ .remove.icon {
|
|
display: none;
|
|
}
|
|
.ui.search > .icon.input > input:placeholder-shown ~ .remove.icon,
|
|
.ui.search.loading > .icon.input > .remove.icon {
|
|
display: none;
|
|
}
|
|
.ui.search > .icon.input > input:-ms-input-placeholder ~ .remove.icon {
|
|
display: none;
|
|
}
|
|
|
|
/* --------------
|
|
Category
|
|
--------------- */
|
|
.ui.category.search .results {
|
|
width: 28em;
|
|
}
|
|
.ui.category.search .results.animating,
|
|
.ui.category.search .results.visible {
|
|
display: table;
|
|
}
|
|
|
|
/* Category */
|
|
.ui.category.search > .results .category {
|
|
display: table-row;
|
|
background: #f3f4f5;
|
|
box-shadow: none;
|
|
transition: background 0.1s ease, border-color 0.1s ease;
|
|
}
|
|
|
|
/* Last Category */
|
|
.ui.category.search > .results .category:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* First / Last */
|
|
.ui.category.search > .results .category:first-child .name + .result {
|
|
border-radius: 0 0.28571429rem 0 0;
|
|
}
|
|
.ui.category.search > .results .category:last-child .result:last-child {
|
|
border-radius: 0 0 0.28571429rem 0;
|
|
}
|
|
|
|
/* Category Result Name */
|
|
.ui.category.search > .results .category > .name {
|
|
display: table-cell;
|
|
text-overflow: ellipsis;
|
|
width: 100px;
|
|
white-space: nowrap;
|
|
background: transparent;
|
|
font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
font-size: 1em;
|
|
padding: 0.4em 1em;
|
|
font-weight: bold;
|
|
color: rgba(0, 0, 0, 0.4);
|
|
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
|
}
|
|
|
|
/* Category Result */
|
|
.ui.category.search > .results .category .results {
|
|
display: table-cell;
|
|
background: #fff;
|
|
border-left: 1px solid rgba(34, 36, 38, 0.15);
|
|
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
|
}
|
|
.ui.category.search > .results .category .result {
|
|
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
|
transition: background 0.1s ease, border-color 0.1s ease;
|
|
padding: 0.85714286em 1.14285714em;
|
|
}
|
|
.ui.horizontal.category.search > .results .category,
|
|
.ui.horizontal.category.search > .results .category > .name,
|
|
.ui.horizontal.category.search > .results .category > .results {
|
|
display: block;
|
|
}
|
|
.ui.horizontal.category.search > .results .category > .results {
|
|
width: 100%;
|
|
border-left: 0;
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
|
|
|
|
/* -------------------
|
|
Scrolling
|
|
-------------------- */
|
|
.ui.scrolling.search > .results,
|
|
.ui.search.long > .results,
|
|
.ui.search.short > .results {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
-ms-scroll-chaining: none;
|
|
overscroll-behavior: none;
|
|
-webkit-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
}
|
|
@media only screen and (max-width: 767.98px) {
|
|
.ui.scrolling.search > .results {
|
|
max-height: 12.17714286em;
|
|
}
|
|
.resizable.ui.scrolling.search > .results {
|
|
height: 12.17714286em;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
.ui.scrolling.search > .results {
|
|
max-height: 18.26571429em;
|
|
}
|
|
.resizable.ui.scrolling.search > .results {
|
|
height: 18.26571429em;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 992px) {
|
|
.ui.scrolling.search > .results {
|
|
max-height: 24.35428571em;
|
|
}
|
|
.resizable.ui.scrolling.search > .results {
|
|
height: 24.35428571em;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 1920px) {
|
|
.ui.scrolling.search > .results {
|
|
max-height: 36.53142857em;
|
|
}
|
|
.resizable.ui.scrolling.search > .results {
|
|
height: 36.53142857em;
|
|
}
|
|
}
|
|
.ui.scrolling.resizable.search > .results {
|
|
resize: vertical;
|
|
max-height: none;
|
|
}
|
|
@media only screen and (max-width: 767.98px) {
|
|
.ui.search.short > .results {
|
|
max-height: 12.17714286em;
|
|
}
|
|
.ui.search[class*="very short"] > .results {
|
|
max-height: 9.13285714em;
|
|
}
|
|
.ui.search.long > .results {
|
|
max-height: 24.35428571em;
|
|
}
|
|
.ui.search[class*="very long"] > .results {
|
|
max-height: 36.53142857em;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
.ui.search.short > .results {
|
|
max-height: 18.26571429em;
|
|
}
|
|
.ui.search[class*="very short"] > .results {
|
|
max-height: 13.69928571em;
|
|
}
|
|
.ui.search.long > .results {
|
|
max-height: 36.53142857em;
|
|
}
|
|
.ui.search[class*="very long"] > .results {
|
|
max-height: 54.79714286em;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 992px) {
|
|
.ui.search.short > .results {
|
|
max-height: 24.35428571em;
|
|
}
|
|
.ui.search[class*="very short"] > .results {
|
|
max-height: 18.26571429em;
|
|
}
|
|
.ui.search.long > .results {
|
|
max-height: 48.70857143em;
|
|
}
|
|
.ui.search[class*="very long"] > .results {
|
|
max-height: 73.06285714em;
|
|
}
|
|
}
|
|
@media only screen and (min-width: 1920px) {
|
|
.ui.search.short > .results {
|
|
max-height: 36.53142857em;
|
|
}
|
|
.ui.search[class*="very short"] > .results {
|
|
max-height: 27.39857143em;
|
|
}
|
|
.ui.search.long > .results {
|
|
max-height: 73.06285714em;
|
|
}
|
|
.ui.search[class*="very long"] > .results {
|
|
max-height: 109.59428571em;
|
|
}
|
|
}
|
|
|
|
/* -------------------
|
|
Left / Right
|
|
-------------------- */
|
|
.ui[class*="left aligned"].search > .results {
|
|
right: auto;
|
|
left: 0;
|
|
}
|
|
.ui[class*="right aligned"].search > .results {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
|
|
/* --------------
|
|
Fluid
|
|
--------------- */
|
|
.ui.fluid.search .results {
|
|
width: 100%;
|
|
}
|
|
|
|
/* --------------
|
|
Sizes
|
|
--------------- */
|
|
.ui.search {
|
|
font-size: 1em;
|
|
}
|
|
.ui.mini.search {
|
|
font-size: 0.78571429em;
|
|
}
|
|
.ui.tiny.search {
|
|
font-size: 0.85714286em;
|
|
}
|
|
.ui.small.search {
|
|
font-size: 0.92857143em;
|
|
}
|
|
.ui.large.search {
|
|
font-size: 1.14285714em;
|
|
}
|
|
.ui.big.search {
|
|
font-size: 1.28571429em;
|
|
}
|
|
.ui.huge.search {
|
|
font-size: 1.42857143em;
|
|
}
|
|
.ui.massive.search {
|
|
font-size: 1.71428571em;
|
|
}
|
|
|
|
/* --------------
|
|
Mobile
|
|
--------------- */
|
|
@media only screen and (max-width: 767.98px) {
|
|
.ui.search .results {
|
|
max-width: calc(100vw - 2rem);
|
|
}
|
|
}
|
|
|
|
|
|
/*******************************
|
|
Theme Overrides
|
|
*******************************/
|
|
|
|
|
|
|
|
/*******************************
|
|
Site Overrides
|
|
*******************************/
|
|
|