kpumuk / codecolorer

WordPress plugin which allows you to insert code snippets into the post with nice syntax highlighting.
https://kpumuk.info/projects/wordpress-plugins/codecolorer/
56 stars 14 forks source link

line number column width issue #29

Open mattselkey opened 5 years ago

mattselkey commented 5 years ago

Hi Dmytro

thanks for the the excellent plugin!

I've noted that the line number column is set to 1% by default? see below:

.codecolorer-container table td.line-numbers { width: 1%; }

This messes up the formatting on my wordpress install as shown below:

image

I've fixed this simply by adding the following in the additional CSS of my install:

.codecolorer-container table td.line-numbers { width: 4%; }

is this a bug? maybe I'm missing something?

kind regards

Matt