Changed rgb() to rgba()

Avoids message:   
QCssParser::parseColorValue: Specified color without alpha value but alpha given: 'rgb 200, 200, 200, 75%'
This commit is contained in:
dmdmdm 2020-05-27 11:30:33 -04:00 committed by John Maguire
parent 84099f2491
commit 0555cf5a35
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
<string notr="true">#container {
background: rgba(200, 200, 200, 50%);
border-radius: 10px;
border: 1px solid rgb(200, 200, 200, 75%);
border: 1px solid rgba(200, 200, 200, 75%);
}
#label1 {