_search-entry.scss
ASCII text
1// Search entry 2 3%search-entry, 4.search-entry { 5width: 320px - 8px * 2; 6padding: 0 8px; 7border-radius: $corner-radius $corner-radius 0 0; 8color: disabled($on-dark); 9selection-background-color: stroke($on-dark); 10selected-color: $on-dark; 11@include entry(normal, $fc: stroke($on-dark)); 12 13&:hover { 14@include entry(hover, $fc: stroke($on-dark)); 15color: disabled($on-dark); 16} 17 18&:focus { 19@include entry(focus, $fc: $on-dark); 20padding: 0 8px; 21border: 0; 22color: $on-dark; 23} 24 25StLabel.hint-text { 26color: hint($on-dark); 27} 28 29.search-entry-icon { 30icon-size: 16px; 31padding: 0 4px; 32color: hint($on-dark); 33} 34 35&:hover, 36&:focus { 37.search-entry-icon { 38color: $on-dark; 39} 40} 41} 42