QSS question. It is possible to set gradients for widgets. Gradients are defined through Qt-snyh gradient classes. Question on qss syntax:
background: QLinearGradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 rgba(0, 0, 0, 0), stop: 0.3 rgba(102, 181, 255, 200), stop: 1 rgba(102, 181, 255, 255)); Creating a linear gradient with the vector 0; 1. This style is taken from the example, the actual question is, what are the stop parameters and in what range are their values โโ(0..1?), I would like a link to the documentation, I myself somehow did not find