src/Linkification/icons -> src/css/linkIcons
2
Makefile
@ -48,7 +48,7 @@ imports_font_awesome := \
|
||||
node_modules/font-awesome/css/font-awesome.css \
|
||||
node_modules/font-awesome/fonts/fontawesome-webfont.woff
|
||||
imports_style := \
|
||||
$(wildcard src/Linkification/icons/*.png)
|
||||
$(wildcard src/css/linkIcons/*.png)
|
||||
|
||||
crx_contents := script.js eventPage.js icon16.png icon48.png icon128.png manifest.json
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 700 B After Width: | Height: | Size: 700 B |
|
Before Width: | Height: | Size: 272 B After Width: | Height: | Size: 272 B |
|
Before Width: | Height: | Size: 226 B After Width: | Height: | Size: 226 B |
|
Before Width: | Height: | Size: 324 B After Width: | Height: | Size: 324 B |
|
Before Width: | Height: | Size: 667 B After Width: | Height: | Size: 667 B |
|
Before Width: | Height: | Size: 863 B After Width: | Height: | Size: 863 B |
|
Before Width: | Height: | Size: 729 B After Width: | Height: | Size: 729 B |
|
Before Width: | Height: | Size: 740 B After Width: | Height: | Size: 740 B |
|
Before Width: | Height: | Size: 839 B After Width: | Height: | Size: 839 B |
|
Before Width: | Height: | Size: 491 B After Width: | Height: | Size: 491 B |
|
Before Width: | Height: | Size: 248 B After Width: | Height: | Size: 248 B |
|
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 744 B |
|
Before Width: | Height: | Size: 209 B After Width: | Height: | Size: 209 B |
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
|
Before Width: | Height: | Size: 990 B After Width: | Height: | Size: 990 B |
|
Before Width: | Height: | Size: 928 B After Width: | Height: | Size: 928 B |
|
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 347 B |
@ -1822,9 +1822,9 @@ a:only-of-type > .remove {
|
||||
|
||||
/* Link Title Favicons */
|
||||
<%=
|
||||
ls('src/Linkification/icons').map(function(file) {
|
||||
ls('src/css/linkIcons').map(function(file) {
|
||||
var key = file.match(/(\w+)\.png/)[1];
|
||||
var data = readBase64(`src/Linkification/icons/${file}`);
|
||||
var data = readBase64(`src/css/linkIcons/${file}`);
|
||||
return ".linkify."+key+" {\n" +
|
||||
" background: transparent url('data:image/png;base64,"+data+"') center left no-repeat!important;\n" +
|
||||
" padding-left: 18px;\n" +
|
||||
|
||||