metarmask

Results 8 comments of metarmask

I tried implementing this a while back but never managed to do it in a good way. I'll add an emergency CSS box tomorrow that'll allow you to do whatever...

I have now added a box at the bottom of the options page. To change the colors, input something like this: ``` body[class] { background: #ffffff; color: #000000; } ```

What did you put in the box? Properties like `background` will be overriden by the theme so you'll need to increase specificity like in my example above. Also, make sure...

I assume your first question was if I can add this style. I might if I ever get to maintaining this extension again. Here's how you can see (and change...

The proposal sounds nice but I'm not sure many commercial websites would be interested because ads won't be shown. Adding support might be a bit more tedious than you think...

I'm going to be reworking the extension quite heavily, I'll implement this as well.

Another workaround is to put quotes around the names: ```dot digraph { "graph" [rankdir=LR] } ``` becomes ```dot digraph { graph [rankdir=LR] } ``` This works for node and edge...

The color sort of reduces the effects of the flash before the options load. A commit I made moved the default color to html without changing [the style is added...