mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
166 lines
5.0 KiB
SCSS
166 lines
5.0 KiB
SCSS
@import "../../globals.wp";
|
|
@import "./searchbar";
|
|
|
|
// Windows Searchbar
|
|
// --------------------------------------------------
|
|
|
|
$searchbar-wp-padding: 8px !default;
|
|
$searchbar-wp-background-color: transparent !default;
|
|
$searchbar-wp-border-width: 2px !default;
|
|
$searchbar-wp-border-color: $input-wp-border-color !default;
|
|
$searchbar-wp-border-color-focused: color($colors-wp, primary) !default;
|
|
|
|
$searchbar-wp-input-search-icon-color: #858585 !default;
|
|
$searchbar-wp-input-search-icon-svg: "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='" + $searchbar-wp-input-search-icon-color + "' d='M337.509,305.372h-17.501l-6.571-5.486c20.791-25.232,33.922-57.054,33.922-93.257C347.358,127.632,283.896,64,205.135,64C127.452,64,64,127.632,64,206.629s63.452,142.628,142.225,142.628c35.011,0,67.831-13.167,92.991-34.008l6.561,5.487v17.551L415.18,448L448,415.086L337.509,305.372z M206.225,305.372c-54.702,0-98.463-43.887-98.463-98.743c0-54.858,43.761-98.742,98.463-98.742c54.7,0,98.462,43.884,98.462,98.742C304.687,261.485,260.925,305.372,206.225,305.372z'/></svg>" !default;
|
|
$searchbar-wp-input-search-icon-size: 20px !default;
|
|
|
|
$searchbar-wp-input-padding-vertical: 0 !default;
|
|
$searchbar-wp-input-padding-horizontal: 8px !default;
|
|
$searchbar-wp-input-height: auto !default;
|
|
$searchbar-wp-input-line-height: 3rem !default;
|
|
$searchbar-wp-input-placeholder-color: #858585 !default;
|
|
$searchbar-wp-input-text-color: #141414 !default;
|
|
$searchbar-wp-input-background-color: #fff !default;
|
|
$searchbar-wp-input-border-radius: 0 !default;
|
|
$searchbar-wp-input-font-size: 1.4rem !default;
|
|
$searchbar-wp-input-font-weight: 400 !default;
|
|
|
|
$searchbar-wp-input-clear-icon-color: #858585 !default;
|
|
$searchbar-wp-input-clear-icon-svg: "<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><polygon fill='" + $searchbar-wp-input-clear-icon-color + "' points='405,136.798 375.202,107 256,226.202 136.798,107 107,136.798 226.202,256 107,375.202 136.798,405 256,285.798 375.202,405 405,375.202 285.798,256'/></svg>" !default;
|
|
$searchbar-wp-input-clear-icon-size: 22px !default;
|
|
|
|
|
|
// Searchbar
|
|
// -----------------------------------------
|
|
|
|
ion-searchbar {
|
|
padding: $searchbar-wp-padding;
|
|
|
|
background: $searchbar-wp-background-color;
|
|
}
|
|
|
|
.searchbar-input-container {
|
|
border: $searchbar-wp-border-width solid $searchbar-wp-border-color;
|
|
}
|
|
|
|
// Searchbar Search Icon
|
|
// -----------------------------------------
|
|
|
|
.searchbar-search-icon {
|
|
@include svg-background-image($searchbar-wp-input-search-icon-svg);
|
|
|
|
position: absolute;
|
|
top: 5px;
|
|
right: $searchbar-wp-input-padding-horizontal;
|
|
|
|
width: $searchbar-wp-input-search-icon-size + 1;
|
|
height: $searchbar-wp-input-search-icon-size + 1;
|
|
|
|
background-repeat: no-repeat;
|
|
background-size: $searchbar-wp-input-search-icon-size;
|
|
|
|
&.activated {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
|
|
// Searchbar Input Field
|
|
// -----------------------------------------
|
|
|
|
.searchbar-input {
|
|
@include placeholder($searchbar-wp-input-placeholder-color);
|
|
|
|
padding: $searchbar-wp-input-padding-vertical $searchbar-wp-input-padding-horizontal;
|
|
|
|
height: $searchbar-wp-input-height;
|
|
|
|
border-radius: $searchbar-wp-input-border-radius;
|
|
font-size: $searchbar-wp-input-font-size;
|
|
font-weight: $searchbar-wp-input-font-weight;
|
|
|
|
line-height: $searchbar-wp-input-line-height;
|
|
color: $searchbar-wp-input-text-color;
|
|
|
|
background-color: $searchbar-wp-input-background-color;
|
|
background-position: $searchbar-wp-input-padding-horizontal center;
|
|
}
|
|
|
|
|
|
// Searchbar Clear Input Icon
|
|
// -----------------------------------------
|
|
|
|
.searchbar-clear-icon {
|
|
@include svg-background-image($searchbar-wp-input-clear-icon-svg);
|
|
|
|
position: absolute;
|
|
top: 0;
|
|
right: $searchbar-wp-input-padding-horizontal;
|
|
|
|
padding: 0;
|
|
|
|
width: $searchbar-wp-input-clear-icon-size;
|
|
height: 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: $searchbar-wp-input-clear-icon-size;
|
|
|
|
&.activated {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
|
|
// Searchbar Focused
|
|
// -----------------------------------------
|
|
|
|
.searchbar-focused .searchbar-input-container {
|
|
border-color: $searchbar-wp-border-color-focused;
|
|
}
|
|
|
|
|
|
// Searchbar Left Aligned
|
|
// -----------------------------------------
|
|
|
|
.searchbar-has-value .searchbar-search-icon {
|
|
display: none;
|
|
}
|
|
|
|
|
|
// Searchbar Cancel Icon (iOS only)
|
|
// -----------------------------------------
|
|
|
|
.searchbar-ios-cancel {
|
|
display: none;
|
|
}
|
|
|
|
|
|
// Searchbar Cancel Icon (MD only)
|
|
// -----------------------------------------
|
|
|
|
.searchbar-md-cancel {
|
|
display: none;
|
|
}
|
|
|
|
// Searchbar in Toolbar
|
|
// -----------------------------------------
|
|
|
|
.toolbar {
|
|
ion-searchbar {
|
|
padding: 2px;
|
|
}
|
|
}
|
|
|
|
|
|
// Generate Default Windows Search Bar Colors
|
|
// --------------------------------------------------
|
|
|
|
@each $color-name, $color-base, $color-contrast in get-colors($colors-wp) {
|
|
|
|
ion-searchbar[#{$color-name}].searchbar-focused .searchbar-input-container {
|
|
border-color: $color-base;
|
|
}
|
|
|
|
}
|