reftests: Add 'px' to all properties

This commit is contained in:
Benjamin Otte
2012-01-17 17:09:30 +01:00
parent cc83986eb8
commit f1c73fcc0c
12 changed files with 25 additions and 25 deletions

View File

@ -12,7 +12,7 @@ GtkWindow {
} }
GtkButton { GtkButton {
border-width: 5; border-width: 5px;
border-style: solid; border-style: solid;
border-color: rgba(255,0,0,0.6); border-color: rgba(255,0,0,0.6);
padding: 10; padding: 10;

View File

@ -13,7 +13,7 @@ GtkWindow {
} }
GtkButton { GtkButton {
border-width: 5; border-width: 5px;
border-style: solid; border-style: solid;
border-color: rgba(255,0,0,0.5); border-color: rgba(255,0,0,0.5);
padding: 10; padding: 10;

View File

@ -1,7 +1,7 @@
* { * {
border-image: none; border-image: none;
border-style: solid; border-style: solid;
border-width: 5; border-width: 5px;
} }
GtkButton { GtkButton {

View File

@ -4,7 +4,7 @@
background-image: none; background-image: none;
background-color: #000; background-color: #000;
border-style: solid; border-style: solid;
border-width: 1; border-width: 1px;
padding: 0; padding: 0;
border-radius: 0; border-radius: 0;
} }

View File

@ -14,11 +14,11 @@
to(green)); to(green));
border-image-slice: 1; border-image-slice: 1;
border-image-repeat: stretch; border-image-repeat: stretch;
border-width: 1 2 2 1; border-width: 1px 2px 2px 1px;
} }
.button-not-image { .button-not-image {
border-color: green; border-color: green;
border-style: solid; border-style: solid;
border-width: 1 2 2 1; border-width: 1px 2px 2px 1px;
} }

View File

@ -3,14 +3,14 @@
border-image: url("green-20x20.png") 1 stretch; border-image: url("green-20x20.png") 1 stretch;
border-width: 1 2 2 1; border-width: 1px 2px 2px 1px;
border-radius: 0; border-radius: 0;
} }
.button-not-image { .button-not-image {
border-color: green; border-color: green;
border-style: solid; border-style: solid;
border-width: 1 2 2 1; border-width: 1px 2px 2px 1px;
border-radius: 0; border-radius: 0;
border-image: none; border-image: none;
} }

View File

@ -1,9 +1,9 @@
.progressbar { .progressbar {
engine: none; engine: none;
border-image: none; border-image: none;
border-radius: 25; border-radius: 25px;
} }
#reference .progressbar { #reference .progressbar {
border-radius: 10; border-radius: 10px;
} }

View File

@ -7,13 +7,13 @@
GtkButton { GtkButton {
background-color: purple; background-color: purple;
border-style: none; border-style: none;
border-width: 5; border-width: 5px;
border-radius: 15; border-radius: 15px;
} }
#reference { #reference {
border-style: solid; border-style: solid;
border-width: 0; border-width: 0;
border-radius: 15; border-radius: 15px;
} }

View File

@ -3,7 +3,7 @@
GtkButton { GtkButton {
background-color: red; background-color: red;
border-color: green; border-color: green;
border-width: 1; border-width: 1px;
} }
.button-top-left { .button-top-left {

View File

@ -10,7 +10,7 @@ GtkButton {
.row1, .row2, .row3 { .row1, .row2, .row3 {
/*border:5px solid blue;*/ /*border:5px solid blue;*/
border-width: 5; border-width: 5px;
border-style: solid; border-style: solid;
border-color: blue; border-color: blue;
background-color:orange; background-color:orange;
@ -40,7 +40,7 @@ GtkButton {
} }
.reference-border { .reference-border {
border-width: 5; border-width: 5px;
border-style: solid; border-style: solid;
border-color: blue; border-color: blue;
} }
@ -55,14 +55,14 @@ GtkButton {
/* /*
.reference-padding-radius { .reference-padding-radius {
border-radius: 15 border-radius: 15px
} }
.reference-radii1 { .reference-radii1 {
border-radius: 15 0 10; border-radius: 15px 0 10px;
} }
.reference-radii2 { .reference-radii2 {
border-radius: 5 0 10; border-radius: 5px 0 10px;
} }
*/ */

View File

@ -3,5 +3,5 @@
color: transparent; color: transparent;
border-color: transparent; border-color: transparent;
border-style: solid; border-style: solid;
border-width: 1; border-width: 1px;
} }

View File

@ -4,18 +4,18 @@
} }
GtkWidget { GtkWidget {
border-right-width: 5; border-right-width: 5px;
} }
GtkEntry { GtkEntry {
border-width: 10 20; border-width: 10px 20px;
} }
.entry { .entry {
border-left-width: 10; border-left-width: 10px;
border-right-width: 10; border-right-width: 10px;
} }
#reference { #reference {
border-width: 10; border-width: 10px;
} }