This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.iterable-item').each(function(i, row) { | |
row = $(row); | |
row.find('td').each(function(j, cell) { | |
cell = $(cell); | |
if(j > 0) { | |
cell.css('display', 'none'); | |
} | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * FROM `#__users` WHERE | |
( | |
`params` LIKE('%timezone":"_"%') OR | |
`params` LIKE('%timezone":"__"%') OR | |
`params` LIKE('%timezone":"___"%') OR | |
`params` LIKE('%timezone":"____"%') OR | |
`params` LIKE('%timezone":"_____"%') | |
) | |
AND | |
`params` NOT LIKE('%timezone":"UTC"%') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 3D tests | |
*/ | |
body { | |
perspective: 1000; | |
} | |
#drawarea { | |
backface-visibility: visible; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Gradient :hover | |
*/ | |
#test { | |
position: relative; | |
width: 640px; | |
height: 240px; | |
overflow: hidden; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine on | |
RewriteCond %{HTTP_HOST} ^subdomain\.yourdomain\.com | |
RewriteRule ^(.*)$ http://www\.yourdomain\.com/subdomain/$1 [L] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* GK News Show Pro Testimonials style | |
*/ | |
.testimonials.gk-nsp { | |
padding: 20px 0; | |
position: relative; | |
} | |
.testimonials .gk-nsp-arts-nav { | |
bottom: 5px; | |
position: absolute!important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
GK NSP .news-list styl for Twenty Twelve theme | |
*/ | |
.news-list .gk-nsp-art > span { | |
background: #333; | |
color: #fff; | |
float: left; | |
font-size: 14px; | |
margin: 0 18px 0 0; | |
padding: 10px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Curvy background | |
*/ | |
#main { | |
transform: skewY(10deg); | |
overflow: hidden | |
} | |
#main:hover #bg { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Curvy background | |
*/ | |
#main { | |
transform: skewY(10deg); | |
overflow: hidden | |
} | |
#main:hover #bg { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Animated dotted lines | |
*/ | |
#dotted { | |
border-top: 3px dotted #aaa; | |
height: 200px; | |
transition: all .3s ease-out; | |
width: 15px; | |
} |
NewerOlder