Fix: CSS border-color does not recognize rgb and rgba values

Resolves #2781
This commit is contained in:
hamorphis
2016-09-21 16:31:30 +03:00
parent c91162b934
commit 08f9c941cc
3 changed files with 20 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ Label {
}
#s1 {
border-width: 5; border-color: red;
border-width: 5; border-color: rgba(255,0,0,1);
}
#s2 {
@@ -25,7 +25,7 @@ Label {
}
#s5 {
border-width: 5 10 15 20; border-color: red;
border-width: 5 10 15 20; border-color: rgb(255, 0, 0);
}
#s6 {