]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-17285 Fix hover border on issue location
authorGuillaume Peoc'h <guillaume.peoch@sonarsource.com>
Thu, 22 Sep 2022 08:55:50 +0000 (10:55 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 22 Sep 2022 20:03:33 +0000 (20:03 +0000)
server/sonar-web/src/main/js/components/locations/SingleFileLocationNavigator.css

index d4bc578ecb6fff497d425928d86c2c83da9be890..0dec4d444dd01766c8849d6a52e99db069a76da5 100644 (file)
@@ -17,7 +17,7 @@
  * along with this program; if not, write to the Free Software Foundation,
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  */
-.locations-navigator {
+button.locations-navigator {
   display: flex;
   align-items: flex-start;
   border: 1px solid transparent;
   text-align: left;
 }
 
-.locations-navigator:hover,
-.locations-navigator:active {
+button.locations-navigator:hover,
+button.locations-navigator:active {
   border-color: var(--info400);
 }
 
-.locations-navigator:focus {
+button.locations-navigator:focus {
   border-color: transparent;
 }