2015-06-15 07:52:59 +00:00
|
|
|
function _add_css(css) {
|
|
|
|
$("<style type='text/css'>"+css.replace(/\s+/g, ' ') + "</style>").appendTo("head");
|
|
|
|
}
|
|
|
|
|
|
|
|
function MBImportStyle() {
|
|
|
|
var css_import_button = " \
|
|
|
|
.musicbrainz_import button { \
|
|
|
|
-moz-border-radius:5px; \
|
|
|
|
-webkit-border-radius:5px; \
|
|
|
|
border-radius:5px; \
|
|
|
|
display:inline-block; \
|
|
|
|
cursor:pointer; \
|
|
|
|
font-family:Arial; \
|
|
|
|
font-size:14px !important; \
|
|
|
|
padding:3px 6px; \
|
|
|
|
text-decoration:none; \
|
|
|
|
border: 1px solid #888 !important; \
|
|
|
|
background-color: rgba(240,240,240,0.8) !important; \
|
|
|
|
color: #334 !important; \
|
|
|
|
} \
|
|
|
|
.musicbrainz_import button:hover { \
|
|
|
|
background-color: rgba(250,250,250,0.9) !important; \
|
|
|
|
} \
|
|
|
|
.musicbrainz_import button:active { \
|
|
|
|
position:relative; \
|
|
|
|
top:1px; \
|
|
|
|
} \
|
|
|
|
.musicbrainz_import button img { \
|
|
|
|
vertical-align: middle !important; \
|
|
|
|
margin-right: 4px !important; \
|
|
|
|
} \
|
|
|
|
";
|
|
|
|
_add_css(css_import_button);
|
|
|
|
}
|
2015-06-14 19:58:43 +00:00
|
|
|
|
|
|
|
function MBSearchItStyle() {
|
|
|
|
var css_search_it = " \
|
|
|
|
.mb_valign { \
|
|
|
|
display: inline-block; \
|
|
|
|
vertical-align: top; \
|
|
|
|
} \
|
|
|
|
.mb_searchit { \
|
|
|
|
width: 16px; \
|
|
|
|
height: 16px; \
|
|
|
|
margin: 0; \
|
|
|
|
padding: 0; \
|
|
|
|
background-color: #FFF7BE; \
|
|
|
|
border: 0px; \
|
|
|
|
vertical-align: top; \
|
|
|
|
font-size: 11px; \
|
|
|
|
text-align: center; \
|
|
|
|
} \
|
|
|
|
a.mb_search_link { \
|
|
|
|
color: #888; \
|
|
|
|
text-decoration: none; \
|
|
|
|
} \
|
|
|
|
a.mb_search_link small { \
|
|
|
|
font-size: 8px; \
|
|
|
|
} \
|
|
|
|
.mb_searchit a.mb_search_link:hover { \
|
|
|
|
color: darkblue; \
|
|
|
|
} \
|
|
|
|
.mb_wrapper { \
|
|
|
|
display: inline-block; \
|
|
|
|
} \
|
|
|
|
";
|
|
|
|
_add_css(css_search_it);
|
|
|
|
}
|