Sublime Forum

[Closed] Minihtml: Bug Reports and Feature Requests

#1

I can’t get the color blending to work on a Mac.
I’m using the example straight from the docs, but it’s not working.

.error {
    background-color: color(var(--background) blend(red, 50%));
}

Is it working for you guys?

0 Likes

#2

Zero leading decimal digits are not recognized, causing a totally broken UI since everything in your CSS after a zero leading decimal digit is ignored.

For example, having this will cause the rest of your CSS to be ignored:

font-size: .8rem;
0 Likes

#3

Having a <br> tag in between two or more adjacent inline elements makes the last one disappear.

    <span class="badge">11</span>&nbsp;<span class="badge badge-info">22</span>&nbsp;<span class="badge badge-success">33</span>&nbsp;<span class="badge badge-warning">44</span>&nbsp;<span class="badge badge-error">55</span>
  <br>
    <span class="badge badge-large">42</span>

wrapping each side of the <br> tag in a block elements fixed the issue but might not be desired all the time.

0 Likes

#4

Please post bugs at https://github.com/SublimeTextIssues/Core/issues. I don’t want to try and use Discourse as a bug tracker.

0 Likes

#5

makes sense, will move these to github issues.

0 Likes