Projet

Général

Profil

0001-style-add-non-prefixed-css-properties-6510.patch

Frédéric Péters, 15 février 2015 09:48

Télécharger (1,33 ko)

Voir les différences:

Subject: [PATCH] style: add non-prefixed css properties (#6510)

 authentic2/static/authentic2/css/style.css | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
authentic2/static/authentic2/css/style.css
34 34
	width: 640px;
35 35
	margin: 5em auto;
36 36
	padding: 15px;
37
	border-radius: 6px;
37 38
	-moz-border-radius: 6px;
38 39
	-webkit-border-radius:6px;
39
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.75);
40
	box-shadow: 0 0 4px rgba(0,0,0,0.75);
40 41
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.75);
41 42
	position: relative;
42 43
}
......
45 46
{
46 47
	position: absolute;
47 48
	background: #FF7800 url(../images/a8.gif) repeat-x;
49
	border-radius: 6px 0 0 6px;
48 50
	-moz-border-radius: 6px 0 0 6px;
49 51
	-webkit-border-radius: 6px 0 0 6px;
50 52
	width: 202px;
......
76 78
	background: #EAEAE2 url(../images/a10.jpg) no-repeat;
77 79
	width: 410px;
78 80
	height: 92px;
81
	border-radius: 0 6px 6px 0;
79 82
	-moz-border-radius: 0 6px 6px 0;
80 83
	-webkit-border-radius: 0 6px 6px 0;
81 84
}
82
-