Skip to content

Commit a6a9e18

Browse files
committed
Fix: CSS border-color does not recognize rgb and rgba values
Resolves #2781
1 parent c91162b commit a6a9e18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/app/ui-tests-app/css/label-border.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Label {
99
}
1010

1111
#s1 {
12-
border-width: 5; border-color: red;
12+
border-width: 5; border-color: rgba(255,0,0,1);
1313
}
1414

1515
#s2 {
@@ -25,7 +25,7 @@ Label {
2525
}
2626

2727
#s5 {
28-
border-width: 5 10 15 20; border-color: red;
28+
border-width: 5 10 15 20; border-color: rgb(255, 0, 0);
2929
}
3030

3131
#s6 {

0 commit comments

Comments
 (0)