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 {
border-width: 5;
border-width: 5px;
border-style: solid;
border-color: rgba(255,0,0,0.6);
padding: 10;

View File

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

View File

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

View File

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

View File

@ -14,11 +14,11 @@
to(green));
border-image-slice: 1;
border-image-repeat: stretch;
border-width: 1 2 2 1;
border-width: 1px 2px 2px 1px;
}
.button-not-image {
border-color: green;
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-width: 1 2 2 1;
border-width: 1px 2px 2px 1px;
border-radius: 0;
}
.button-not-image {
border-color: green;
border-style: solid;
border-width: 1 2 2 1;
border-width: 1px 2px 2px 1px;
border-radius: 0;
border-image: none;
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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