You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by to...@apache.org on 2018/08/27 12:30:58 UTC

[ambari] branch trunk updated: [AMBARI-24435] [Log Search UI] Remove underline text decoration from dropdowns on hover (#2132)

This is an automated email from the ASF dual-hosted git repository.

tobiasistvan pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 93375b8  [AMBARI-24435] [Log Search UI] Remove underline text decoration from dropdowns on hover (#2132)
93375b8 is described below

commit 93375b8c0bb7f590940d73c3e73ada7cecbdf6d5
Author: Istvan Tobias <to...@gmail.com>
AuthorDate: Mon Aug 27 14:30:55 2018 +0200

    [AMBARI-24435] [Log Search UI] Remove underline text decoration from dropdowns on hover (#2132)
---
 ambari-logsearch/ambari-logsearch-web/src/styles.less | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/ambari-logsearch/ambari-logsearch-web/src/styles.less b/ambari-logsearch/ambari-logsearch-web/src/styles.less
index 0de7301..e3ecbb7 100644
--- a/ambari-logsearch/ambari-logsearch-web/src/styles.less
+++ b/ambari-logsearch/ambari-logsearch-web/src/styles.less
@@ -22,3 +22,10 @@ body {
 .initial-color {
   color: initial;
 }
+
+/** Override Bootstrap rules **/
+.btn-link {
+  &:hover, &:focus {
+    text-decoration: none;
+  }
+}