Lint CSS
This commit is contained in:
parent
bb0f3b9f7c
commit
19bbe3f11c
3 changed files with 9 additions and 5 deletions
|
@ -103,6 +103,10 @@ module.exports = function (grunt) {
|
|||
}
|
||||
},
|
||||
csslint: {
|
||||
options: {
|
||||
'box-sizing': false,
|
||||
'bulletproof-font-face': false
|
||||
},
|
||||
css: {
|
||||
src: 'css/*'
|
||||
}
|
||||
|
|
|
@ -350,6 +350,7 @@ footer a:hover {
|
|||
background-repeat:no-repeat;
|
||||
content: "no";
|
||||
left: 0;
|
||||
min-width:56px;
|
||||
padding-left:23px;
|
||||
padding-top:2px;
|
||||
-webkit-transition: all .2s;
|
||||
|
@ -357,7 +358,6 @@ footer a:hover {
|
|||
-ms-transition: all .2s;
|
||||
-o-transition: all .2s;
|
||||
transition: all .2s;
|
||||
width:56px;
|
||||
}
|
||||
.audio:checked + label .ui:after {
|
||||
background-image:url('../img/mp3.png');
|
||||
|
@ -389,15 +389,15 @@ footer a:hover {
|
|||
width: 600px;
|
||||
}
|
||||
|
||||
.playlist-entry h3 {
|
||||
.playlist-entry-title {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.playlist-entry h3 a {
|
||||
.playlist-entry-title a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.playlist-entry h3 a:hover {
|
||||
.playlist-entry-title a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
{/if}
|
||||
{foreach $video->entries as $video}
|
||||
<div class="playlist-entry">
|
||||
<h3><a target="_blank" href="{strip}
|
||||
<h3 class="playlist-entry-title"><a target="_blank" href="{strip}
|
||||
{if isset($video->ie_key) and $video->ie_key == Youtube and !filter_var($video->url, FILTER_VALIDATE_URL)}
|
||||
https://www.youtube.com/watch?v=
|
||||
{/if}
|
||||
|
|
Loading…
Reference in a new issue