The cells in Vue Tables 2 are outlined, giving them a distinctive appearance as if they are designed

I could really use some assistance. I have been utilizing Vue Tables 2 for over two years now with no issues until recently. My table displays perfectly as usual, but whenever I click on a cell, it is outlined in blue on Chrome and dotted on Firefox. The behavior is similar to that of clicking on an input field. I have tried disabling various Vue Tables 2 options one by one, yet the behavior persists. After reviewing Bootstrap 4 tables documentation, I couldn't find a related option, leading me to believe it's linked to Vue Tables. Even the demo fiddle on the Vue Tables 2 page exhibits this same distracting behavior.

My aim is to restore the previous behavior of the table, where clicking on a cell had no effect.

For reference, I am using Bootstrap 4.4 and Vue-Tables-2 version 1.6.25

Here is a snippet of my options array:

tableOptions: {
            skin: 'table table-sm table-hover border-0',
            filterable: true,
            pagination: { chunk:4 },
            perPageValues: [],
            perPage: 18,
        dateColumns: ['created_at'],
        dateFormat: 'MM-DD-YYYY',
        toMomentFormat:  'YYYY-MM-DD H:mm:ss',
            texts:{
                filter:"",
                count:"",
                filterPlaceholder:"Search",
                page:"Page:",
                noResults:"No matching records",
                loading:'Loading...',
            },
            columnsClasses: {
                cntCnt: 'text-center noOutline',
                qtCnt: 'text-center noOutline', 
                statusName: 'text-center noOutline',
                created_at: 'text-center ',
            }, 
            headings: { 
                id: 'Ref',
                name: 'Name',
                cntCnt: 'Contacts',
                qtCnt: 'Quotes', 
                statusName: 'Status',
                created_at: 'Created',
                orgSelect: '',
            },
        }

I've attached a screenshot illustrating the issue. The outlining occurs around every cell clicked, including column headers.

https://i.sstatic.net/Ou70Z.png

Answer №1

This is referring to the CSS focus selector, which determines the style that is currently active. For more information, you can check out: https://developer.mozilla.org/en-US/docs/Web/CSS/:focus

In order to remove the border, you will need to overwrite this specific CSS rule.

Another option is to use the following code snippet:

:focus { outline: none; }

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Use jQuery to smoothly navigate to a designated pixel position by scrolling down the page

Is it possible to use jQuery to scroll down a page to a specific pixel? I am currently working on a website with a fixed navigation bar that scrolls to an anchor point when a button is clicked, utilizing the jQuery smooth scroll plugin. The issue I am fa ...

Having trouble getting SPRITE SVG or SIMPLE SVG to show up when using xlinkHref in a React JSX file

I'm struggling to get the SVG logo to display. I created the SVG using icomoon. I'm trying to use xlinkHref="path/to/my/svg" in my jsx code, but it just won't work. Can anyone point out what I might be missing? Here's the desired effec ...

Angular 9: Missing sort icon in Kendo grid

I've encountered an issue with my project developed in Angular 9 and utilizing the latest version of the Kendo grid. While both sorting and resizing columns are enabled within the grid, everything functions properly when accessing the application loca ...

How to make a section header stay at the top of a wrapper container

Currently, I am facing an issue with getting a section header to stay fixed at the top of a wrapper div. The challenge lies in the fact that the wrapper div must have a specified height and overflow set to scroll. I came across this example (jsfiddle) tha ...

React Native allows children to evenly fill in the empty space available

I am facing an issue with a container that contains a nested scrollview component. Inside this scrollview container, I am iterating through data to display the children in 2 items per row and automatically fill any remaining empty space. However, currently ...

What are some ways to locate the address of CSS and JavaScript files?

I'm having trouble figuring out a simple issue, as I am new to this. I am experimenting with the Twitter-Bootstrap starter template in order to improve my knowledge of HTML, CSS, and JS. After copying and pasting the source code into TextWrangler and ...

Utilizing Flask to insert data into a MySQL database table

Hey there, I'm running into some trouble with inserting values into my database. While I can successfully log in using the same method on the sign-up page, I've tried various options without success. Below is my Python code: from flask import F ...

Perform a prerender of a Vue.js 2.0 component (resembling the functionality of this.$compile in Vue 1)

I'm currently working on developing reusable components specifically for gridstack. One issue I've encountered is the absence of a simple equivalent to the this.$compile method from vue 1. I came across this example that caught my attention. Her ...

Troubleshooting Vue CLI installation

Currently in the process of learning Vue.JS and I've encountered an issue while attempting to install Vue CLI. My current versions are: NodeJS - v13.8.0 Vue CLI - v4.2.2 I had no trouble installing NodeJS, however, when I navigated to my folder in ...

How can you change a particular inline style using the Firefox browser?

I am looking for a solution to override an inline style on a specific webpage within the Firefox browser without access to the source code. Previously, I would manually modify the page source using Firefox development tools. Specifically, I encounter a we ...

The validation classes in Bootstrap 4 are not appearing on the input or feedback elements

Based on the bootstrap documentation, the provided bootply code is supposed to include green and red elements, with the expectation that the invalid-feedback messages will be shown. I am looking to integrate the appropriate styles into an angular4 reactiv ...

Change the classes of the body prior to the initial rendering

I know this may seem like a difficult task, and I understand that what I want to achieve might be nearly impossible. My goal is to incorporate a dark/light mode switch on my website. The challenge lies in the fact that the site consists of static files on ...

Creating a platform that allows users to build custom themes on a website using ASP.NET/C# programming language

I'm looking for a sophisticated approach to designing an ASP.NET website where users can easily create personalized themes for their sites using a user-friendly interface. Can ASP.NET themes assist with this? Should the interface enable users to gener ...

Styling your website's navigation with CSS

I'm looking to create a navigation menu using HTML ul li that displays drop down items in a similar way to www.microsoft.com. For example, when you click on 'Products' on the Microsoft website, it shows a list of products in one dropdown win ...

Decrease the heaviness of a Glyphicon

How can I make Glyphicons appear lighter in weight? I have utilized the "ok" Glyphicon <span class="glyphicon glyphicon-ok"></span> which currently displays as follows: Is there a method to decrease the weight of the icon in order to create a ...

Guide to setting a dynamic print style without affecting the screen media

In my report, there is a details section below. The screen provides instructions to view the details with a button that toggles the list's visibility. When printing the report, I only want the instructions to show if the list is visible. If the list ...

Issue with scrolling in Bootstrap tooltip container set to "body"

Using a bootstrap tooltip within a dropdown menu led to an issue where the tooltip would be hidden inside the dropdown. To resolve this, I added the container="body" attribute. However, a new issue arose where scrolling while hovering over the t ...

Rearrange the components of the navigation bar in Bootstrap 4

I'm new to using Bootstrap and I want to create a fixed-top branded Navbar in Bootstrap 4. The Navbar should display the Brand, 6 navigation items, and a dropdown. <nav class="navbar navbar-expand-lg fixed-top navbar-light bg-light"> <a cl ...

Menu Similar to Wordpress Admin Interface

Is there a tutorial or jQuery plugin available that can create a menu that collapses both vertically and horizontally? I've searched online but only found options for vertical collapsing menus. The Wordpress option seems to be too integrated for my ne ...

Having trouble rendering the actual checkbox using v-simple-checkbox or v-checkbox

I'm currently trying to implement a data table with a checkbox in one column, following the documentation's example found here. However, while everything else is rendering correctly, the checkbox itself won't appear. I am able to see the ani ...