diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-03-26 22:31:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-26 22:31:57 +0200 |
commit | 0d6e5dfbb9498593c741fe43c2854123e3faf3e4 (patch) | |
tree | cd3b26eb71377e733f5a81c57cc1a9e1f4942d16 | |
parent | 7dd5d7363e5891b6ef270188f25d9cd582b6e7fe (diff) | |
parent | 068e2b3c3092e05d8e78e50fb5abd18d26c64e6b (diff) | |
download | nextcloud-server-0d6e5dfbb9498593c741fe43c2854123e3faf3e4.tar.gz nextcloud-server-0d6e5dfbb9498593c741fe43c2854123e3faf3e4.zip |
Merge pull request #4075 from nextcloud/search-hover-feedback
add hover feedback for search, and opacity on use
-rw-r--r-- | core/css/styles.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 8f20180f201..a5b7f2481d9 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -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; |