This file contains 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
body { | |
padding-top: 100px; | |
padding-left: 30px; | |
font: 12px arial; | |
} | |
div.ballon { | |
position: absolute; | |
display: inline-block; | |
border: 1px solid #EEE; |
This file contains 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
a { | |
display: inline-block; | |
padding: 3px 12px; | |
border: 1px solid #999; | |
border-top-color: #BBB; | |
border-radius: 3px; | |
font: 11px arial; | |
text-decoration: none; |
This file contains 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
a { | |
display: inline-block; | |
padding: 3px 12px; | |
border: 1px solid #999; | |
border-top-color: #BBB; | |
border-radius: 3px; | |
font: 11px arial; | |
text-decoration: none; |
This file contains 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
// «archive» button for yandex mail | |
// version 0.1.5 | |
// 2012-03-28 | |
// | |
// ==UserScript== | |
// @name «Yandex Mail Archive button» | |
// @namespace http://gurugray.ru | |
// @description Создаём кнопку «В архив» на web-почте Яндекса | |
// @include http*://mail.yandex*/neo2/* |
This file contains 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
div.tag { | |
background: #EDF; | |
display: inline-block; | |
padding: .3em .6em; | |
padding-left: .8em; | |
border-radius: .6em; | |
font: 10pt arial; | |
text-shadow: 1px 1px #F7F7F7; | |
} |
This file contains 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
function __get_git_branch { | |
local br="" | |
local git="$(git symbolic-ref HEAD 2> /dev/null)" | |
# git | |
if [ -n "$git" ]; then | |
br="${git##refs/heads/}" | |
fi | |
echo "$br" |
This file contains 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
function __get_git_branch { | |
local br="" | |
local git="$(git symbolic-ref HEAD 2> /dev/null)" | |
# git | |
if [ -n "$git" ]; then | |
br="${git##refs/heads/}" | |
fi | |
echo "$br" |
This file contains 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
"a=1&b=2".match(/[a-z]=\d/i) // --> ["a=1"] | |
"a=1&b=2".match(/[a-z]=\d/gi) // --> ["a=1", "b=2"] | |
"a=1&b=2".match(/[a-z]=(\d)/i) // --> ["a=1", "1"] | |
"a=1&b=2".match(/[a-z]=(\d)/gi) // --> ["a=1", "b=2"] - !!! |
This file contains 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
.img { | |
position: absolute; | |
background: #FBB; | |
width: 400px; | |
height: 80%; | |
} | |
.arrow-right { | |
position: absolute; | |
right: 0; |
This file contains 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
.left { | |
border: 1px solid; | |
border-color: #d7d7d7 #b8b8b8 #656667; | |
background: -webkit-linear-gradient(top,#fdfdfd 0,#BBB 100%); | |
left: 0; | |
width: 11px; | |
height: 12px; | |
position: absolute; | |
border-top-left-radius: 3px; | |
border-bottom-left-radius: 3px; |
OlderNewer