2018-11-18 11:00:15 +05:30
|
|
|
$search-dropdown-max-height: 400px;
|
|
|
|
$search-avatar-size: 16px;
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
.search-results {
|
|
|
|
.search-result-row {
|
2016-06-02 11:05:42 +05:30
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
padding-bottom: $gl-padding;
|
|
|
|
margin-bottom: $gl-padding;
|
|
|
|
|
|
|
|
&:last-child {
|
2018-03-17 18:26:18 +05:30
|
|
|
border-bottom: 0;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
.blob-result {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search form:hover,
|
|
|
|
.file-finder-input:hover,
|
|
|
|
.issuable-search-form:hover,
|
|
|
|
.search-text-input:hover,
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-control:hover,
|
|
|
|
:not[readonly] {
|
2018-11-20 20:47:30 +05:30
|
|
|
border-color: lighten($blue-300, 20%);
|
|
|
|
box-shadow: 0 0 4px lighten($dropdown-input-focus-shadow, 20%);
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
input[type='checkbox']:hover {
|
2018-11-20 20:47:30 +05:30
|
|
|
box-shadow: 0 0 2px 2px lighten($dropdown-input-focus-shadow, 20%),
|
|
|
|
0 0 0 1px lighten($dropdown-input-focus-shadow, 20%);
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
2018-11-08 19:23:39 +05:30
|
|
|
margin: 0 8px;
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
form {
|
|
|
|
@extend .form-control;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4px;
|
|
|
|
width: $search-input-width;
|
|
|
|
line-height: 24px;
|
2018-03-17 18:26:18 +05:30
|
|
|
height: 32px;
|
|
|
|
border: 0;
|
|
|
|
border-radius: $border-radius-default;
|
2018-11-18 11:00:15 +05:30
|
|
|
transition: border-color ease-in-out $default-transition-duration,
|
|
|
|
background-color ease-in-out $default-transition-duration,
|
|
|
|
width ease-in-out $default-transition-duration;
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
&:hover {
|
2018-03-17 18:26:18 +05:30
|
|
|
box-shadow: none;
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.search-input {
|
2018-03-17 18:26:18 +05:30
|
|
|
border: 0;
|
2016-06-02 11:05:42 +05:30
|
|
|
font-size: 14px;
|
2017-08-17 22:00:37 +05:30
|
|
|
padding: 0 20px 0 0;
|
2016-06-02 11:05:42 +05:30
|
|
|
margin-left: 5px;
|
|
|
|
line-height: 25px;
|
|
|
|
width: 98%;
|
2018-03-17 18:26:18 +05:30
|
|
|
color: $white-light;
|
|
|
|
background: none;
|
|
|
|
transition: color ease-in-out $default-transition-duration;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.search-input::placeholder {
|
|
|
|
transition: color ease-in-out $default-transition-duration;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.search-input-container {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
.search-input-wrap {
|
2019-07-07 11:18:12 +05:30
|
|
|
width: 100%;
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.search-icon,
|
|
|
|
.clear-icon {
|
2016-06-02 11:05:42 +05:30
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
2018-03-17 18:26:18 +05:30
|
|
|
top: 4px;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.search-icon {
|
2018-03-17 18:26:18 +05:30
|
|
|
transition: color $default-transition-duration;
|
2016-06-02 11:05:42 +05:30
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
2019-07-07 11:18:12 +05:30
|
|
|
user-select: none;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.clear-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rewrite position. Dropdown menu should be relative to .search-input-container
|
|
|
|
.dropdown {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-header {
|
2018-11-18 11:00:15 +05:30
|
|
|
// Necessary because glDropdown doesn't support a second style of headers
|
|
|
|
font-weight: $gl-font-weight-bold;
|
|
|
|
color: $gl-text-color;
|
|
|
|
font-size: $gl-font-size;
|
|
|
|
line-height: 16px;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Custom dropdown positioning
|
|
|
|
.dropdown-menu {
|
|
|
|
left: -5px;
|
2018-11-18 11:00:15 +05:30
|
|
|
max-height: $search-dropdown-max-height;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
width: $search-input-active-width;
|
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-content {
|
2018-11-18 11:00:15 +05:30
|
|
|
max-height: $search-dropdown-max-height - 18px;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.search-active {
|
|
|
|
form {
|
|
|
|
@extend .form-control:focus;
|
2018-11-20 20:47:30 +05:30
|
|
|
border-color: $blue-300;
|
2018-03-17 18:26:18 +05:30
|
|
|
box-shadow: none;
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
@include media-breakpoint-up(xl) {
|
|
|
|
width: $search-input-active-width;
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.search-input-wrap {
|
|
|
|
.search-icon,
|
|
|
|
.clear-icon {
|
|
|
|
color: $gl-text-color-tertiary;
|
|
|
|
transition: color ease-in-out $default-transition-duration;
|
|
|
|
}
|
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.search-input {
|
|
|
|
color: $gl-text-color;
|
|
|
|
transition: color ease-in-out $default-transition-duration;
|
|
|
|
}
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.search-input::placeholder {
|
|
|
|
color: $gl-text-color-tertiary;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.has-value {
|
|
|
|
.search-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clear-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
.inline-search-icon {
|
|
|
|
position: relative;
|
|
|
|
margin-right: 4px;
|
|
|
|
color: $gl-text-color-secondary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.identicon,
|
|
|
|
.search-item-avatar {
|
|
|
|
flex-basis: $search-avatar-size;
|
|
|
|
flex-shrink: 0;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-item-avatar {
|
|
|
|
width: $search-avatar-size;
|
|
|
|
height: $search-avatar-size;
|
|
|
|
border-radius: 50%;
|
2018-11-20 20:47:30 +05:30
|
|
|
border: 1px solid $gray-normal;
|
2015-04-26 12:48:37 +05:30
|
|
|
}
|
|
|
|
}
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
.search-holder {
|
2018-11-08 19:23:39 +05:30
|
|
|
@include media-breakpoint-up(sm) {
|
2016-06-02 11:05:42 +05:30
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.search-field-holder,
|
|
|
|
.project-filter-form {
|
2016-06-02 11:05:42 +05:30
|
|
|
flex: 1 0 auto;
|
|
|
|
position: relative;
|
|
|
|
margin-right: 0;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
@include media-breakpoint-up(sm) {
|
2016-06-02 11:05:42 +05:30
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.search-icon {
|
|
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
|
|
top: 10px;
|
|
|
|
color: $gray-darkest;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.search-text-input,
|
|
|
|
.project-filter-form-field {
|
2016-06-02 11:05:42 +05:30
|
|
|
padding-left: $gl-padding + 15px;
|
|
|
|
padding-right: $gl-padding + 15px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
.btn-search,
|
2018-12-05 23:21:45 +05:30
|
|
|
.btn-success {
|
2016-06-02 11:05:42 +05:30
|
|
|
width: 100%;
|
|
|
|
margin-top: 5px;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
@include media-breakpoint-up(sm) {
|
2016-06-02 11:05:42 +05:30
|
|
|
width: auto;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown {
|
2018-11-08 19:23:39 +05:30
|
|
|
@include media-breakpoint-up(sm) {
|
2016-06-02 11:05:42 +05:30
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu-toggle {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 5px;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
@include media-breakpoint-up(sm) {
|
2016-08-24 12:49:21 +05:30
|
|
|
width: 180px;
|
2016-06-02 11:05:42 +05:30
|
|
|
margin-top: 0;
|
|
|
|
}
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.search-clear {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 10px;
|
|
|
|
padding: 0;
|
|
|
|
color: $gray-darkest;
|
|
|
|
line-height: 0;
|
|
|
|
background: none;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2018-11-20 20:47:30 +05:30
|
|
|
color: $blue-600;
|
2016-06-02 11:05:42 +05:30
|
|
|
}
|
|
|
|
}
|