fix: Awesomebar shadow

This commit is contained in:
Suraj Shetty 2020-11-30 13:39:15 +05:30
parent 219b8d15fb
commit fcf231f13c
3 changed files with 13 additions and 13 deletions

View file

@ -36,7 +36,7 @@ frappe.search.AwesomeBar = Class.extend({
}
return $('<li></li>')
.data('item.autocomplete', d)
.html('<a style="font-weight:normal"><p>' + html + '</p></a>')
.html(`<a style="font-weight:normal">${html}</a>`)
.get(0);
},
sort: function(a, b) {

View file

@ -1,5 +1,6 @@
// REDESIGN-TODO: Review
.awesomplete {
--awesomebar-shadow: 0px 2px 6px rgba(17, 43, 66, 0.08), 0px 1px 4px rgba(17, 43, 66, 0.1);
[hidden] {
display: none;
}
@ -10,6 +11,12 @@
&> input {
display: block;
&:focus {
// border-bottom: 1px solid var(--border-color);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
box-shadow: var(--awesomebar-shadow);
}
}
&> ul:empty {
@ -25,19 +32,19 @@
overflow-y: auto;
overflow-x: hidden;
border-radius: var(--border-radius-sm);
box-shadow: var(--shadow-md);
border: 1px solid var(--border-color);
border-top-left-radius: 0;
border-top-right-radius: 0;
left: 0;
margin: 0;
padding: var(--padding-xs);
z-index: 1;
top: calc(100% + var(--margin-xs));
box-shadow: var(--awesomebar-shadow);
&> li {
cursor: pointer;
font-size: 12px;
font-size: var(--text-md);
padding: var(--padding-sm);
color: var(--text-light);
color: var(--text-color);
border-radius: var(--border-radius-sm);
}
@ -53,10 +60,5 @@
a:hover {
text-decoration: none;
}
p {
margin: 3px 0;
line-height: 1.4;
}
}
}

View file

@ -61,8 +61,6 @@
font-size: var(--text-md);
}
input:focus {
box-shadow: 0px 1px 4px rgba(17, 43, 66, 0.1),
0px 2px 6px rgba(17, 43, 66, 0.08);
background-color: var(--awesomebar-focus-bg);
height: 42px;
}