Browse Source

Update font-effects to new syntax.

Michael Ragazzon 6 years ago
parent
commit
c582951631

+ 1 - 1
Samples/basic/drag/data/icon.rcss

@@ -14,7 +14,7 @@ icon
     
     font-size: 12px;
     text-align: center;
-    text-shadow: 1px 1px black;
+    font-effect: shadow(1px 1px black);
 	
 	cursor: move;
     

+ 1 - 1
Samples/tutorial/datagrid/data/tutorial.rcss

@@ -74,7 +74,7 @@ div#title-bar span
 	font-size: 22px;
 	font-weight: bold;
 
-	text-shadow: 2px 2px black;
+	font-effect: shadow(2px 2px black);
 	
 	decorator: tiled-horizontal( title-bar-l, title-bar-c, title-bar-r );
 }

+ 1 - 1
Samples/tutorial/datagrid_tree/data/tutorial.rcss

@@ -74,7 +74,7 @@ div#title-bar span
 	font-size: 22px;
 	font-weight: bold;
 
-	text-shadow: 2px 2px black;
+	font-effect: shadow(2px 2px black);
 	
 	decorator: tiled-horizontal( title-bar-l, title-bar-c, title-bar-r );
 }

+ 1 - 1
Samples/tutorial/drag/data/tutorial.rcss

@@ -20,5 +20,5 @@ icon
     
     font-size: 12px;
     text-align: center;
-    text-shadow: 1px 1px black;
+    font-effect: shadow(1px 1px black);
 }