Merge pull request #4075 from nextcloud/search-hover-feedback
add hover feedback for search, and opacity on use
This commit is contained in:
commit
0d6e5dfbb9
|
@ -6,8 +6,8 @@
|
|||
* @copyright Copyright (c) 2016, Joas Schilling <coding@schilljs.com>
|
||||
* @copyright Copyright (c) 2016, Morris Jobke <hey@morrisjobke.de>
|
||||
* @copyright Copyright (c) 2016, Christoph Wurst <christoph@winzerhof-wurst.at>
|
||||
* @copyright Copyright (c) 2016, Jan-Christoph Borchardt <hey@jancborchardt.net>
|
||||
* @copyright Copyright (c) 2016, Raghu Nayyar <hey@raghunayyar.com>
|
||||
* @copyright Copyright (c) 2011-2017, Jan-Christoph Borchardt <hey@jancborchardt.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
|
@ -195,6 +195,10 @@ body {
|
|||
background-color: $color-primary !important;
|
||||
border: 1px solid rgba($color-primary-text, 0.5) !important;
|
||||
}
|
||||
&:hover, &:focus, &:active {
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
|
||||
opacity: 1;
|
||||
}
|
||||
& ~ .icon-close-white {
|
||||
display: inline;
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in New Issue