<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Luongo Vincenzo - Blog &#187; jQuery Mobile</title>
	<atom:link href="http://history.luongovincenzo.it/websites/my_website/v6/blog/category/javascript/jquery-mobile/feed/" rel="self" type="application/rss+xml" />
	<link>https://history.luongovincenzo.it/websites/my_website/v6/blog</link>
	<description>    CiÃ² che non conoscete vi potrebbe danneggiare - Kevin Mitnick</description>
	<lastBuildDate>Mon, 09 Dec 2013 11:04:30 +0000</lastBuildDate>
	<language>it-IT</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.1</generator>
	<item>
		<title>[jQuery Mobile] How to delete the border-radius from the tag Flip Switch</title>
		<link>https://history.luongovincenzo.it/websites/my_website/v6/blog/jquery-mobile-eliminare-il-border-radius-dal-tag-flip-switch/</link>
		<comments>https://history.luongovincenzo.it/websites/my_website/v6/blog/jquery-mobile-eliminare-il-border-radius-dal-tag-flip-switch/#comments</comments>
		<pubDate>Wed, 25 Sep 2013 13:13:20 +0000</pubDate>
		<dc:creator><![CDATA[Vincenzo]]></dc:creator>
				<category><![CDATA[HTML5/CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.luongovincenzo.it/blog/?p=77</guid>
		<description><![CDATA[Salve a tutti, in questo articolo spiegerÃ² come eliminare il border radius dal tag custom Flip Switch. La versione che andremo a trattare Ã¨ l&#8217;ultima stabile, ovvero la 1.3.2 . Le classi che richiedono la personalizzazione sono: .ui-btn-corner-all .ui-corner-all .ui-slider-switch Per eliminare il border-radious (bombatura o arrotondamento) di questi &#8220;oggetti&#8221; basta implementare dopo l&#8217;inclusione del [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Salve a tutti,</p>
<p>in questo articolo spiegerÃ² come eliminare il border radius dal tag custom <a href="http://view.jquerymobile.com/1.3.2/dist/demos/widgets/sliders/switch.html" title="Flip Switch Toggle" target="_blank">Flip Switch</a>.</p>
<p>La versione che andremo a trattare Ã¨ l&#8217;ultima stabile, ovvero la 1.3.2 .</p>
<p>Le classi che richiedono la personalizzazione sono:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="text" style="font-family:monospace;">.ui-btn-corner-all
.ui-corner-all
.ui-slider-switch</pre></td></tr></table></div>

<p>Per eliminare il border-radious (bombatura o arrotondamento) di questi &#8220;oggetti&#8221; basta implementare <strong>dopo</strong> l&#8217;inclusione del css di jquery mobile il seguente style:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="css" style="font-family:monospace;">&nbsp;
.ui-btn-corner-all<span style="color: #00AA00;">,</span>
.ui-corner-all<span style="color: #00AA00;">,</span>
<span style="color: #6666ff;">.ui-slider-switch</span> <span style="color: #00AA00;">&#123;</span>
&nbsp;
    -webkit-border-top-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -webkit-border-top-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -webkit-border-bottom-right-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -webkit-border-bottom-left-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
    -moz-border-radius-topleft<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -moz-border-radius-topright<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -moz-border-radius-bottomright<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    -moz-border-radius-bottomleft<span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">border-top-left-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border-top-right-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border-bottom-right-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border-bottom-left-radius</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>CosÃ¬ facendo avrete il vostro flip switch completamente esente dal border radius.</p>
<p>DEMO: <a href="http://jsfiddle.net/e26ac/1/" title="http://jsfiddle.net/e26ac/1/" target="_blank">http://jsfiddle.net/e26ac/1/</a></p>
<p>Saluti <img src='http://history.luongovincenzo.it/websites/my_website/v6/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>https://history.luongovincenzo.it/websites/my_website/v6/blog/jquery-mobile-eliminare-il-border-radius-dal-tag-flip-switch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
