aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/file_urls.css
blob: fd63c224ca1a3c83258cf99dadc587db2ff9c34e (plain)
1
2
3
4
5
6
/* Chrome file:// URLs set draggable=true for links to files (CSS selector .icon.file). This automatically
 * sets -webkit-user-select: none, which disables selecting the file names and so prevents Vimium's search
 * from working as expected. Here, we reset the value back to default. */
.icon.file {
  -webkit-user-select: auto !important;
}