You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Prerequisites
Description
Python "self" does not have a css class and cannot be edited in styles.less. It is just "#text"
In fact, this is not working
.syntax--entity.syntax--name.syntax--function.syntax--self {
color: #268bd2;
}
.syntax--variable.syntax--language.syntax--self.syntax--python {
color: #268bd2;
}
Steps to Reproduce
Simply write a python class with attributes and inspect with developer tools.
You cannot reference "self" to edit the color in style.less
class Dog:
def init(self, name, age):
self.name = name
self.age = age