Branch: refs/heads/fix-rgba-use Home: https://github.com/yast/yast-theme Commit: 99cf9c04b2e50a878b85e067bf2943e772e3ef31 https://github.com/yast/yast-theme/commit/99cf9c04b2e50a878b85e067bf2943e772... Author: David Díaz González <dgonzalez@suse.de> Date: 2022-02-24 (Thu, 24 Feb 2022) Changed paths: M theme/SLE/wizard/cyan-black.qss M theme/SLE/wizard/cyan-black_richtext.css M theme/SLE/wizard/highcontrast.qss M theme/SLE/wizard/highcontrast_richtext.css M theme/SLE/wizard/installation.qss M theme/SLE/wizard/installation_richtext.css M theme/SLE/wizard/white-black.qss M theme/SLE/wizard/white-black_richtext.css M theme/assets/scss/theme-vars/cyan-black.scss M theme/assets/scss/theme-vars/dark.scss M theme/assets/scss/theme-vars/highcontrast.scss M theme/assets/scss/theme-vars/light.scss M theme/assets/scss/theme-vars/white-black.scss Log Message: ----------- Fix missusage of Sass rgba global function The alpha channel was using a percentage without the "%" symbol, which was producing the rgb color instead. See https://sass-lang.com/documentation/modules#rgb
The alpha channel can be specified as either a unitless number between 0 and 1 (inclusive), or a percentage between 0% and 100% (inclusive)