Version Description
- Fixed issue with CSS.
Download this release
Release Info
Developer | javitxu123 |
Plugin | Youtube Channel Gallery |
Version | 1.4.2 |
Comparing to | |
See all releases |
Code changes from version 1.4.1 to 1.4.2
- readme.txt +4 -1
- styles.css +6 -6
- youtube-channel-gallery.php +1 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://poselab.com/
|
|
4 |
Tags: widget, gallery, youtube, channel, user
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.4.1
|
7 |
-
Stable tag: 1.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -81,6 +81,9 @@ The username who uploaded a video to Youtube is located below each video, where
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
84 |
= 1.4.1 =
|
85 |
* Added width and height to player.
|
86 |
* Reverted name variable prefixes.
|
4 |
Tags: widget, gallery, youtube, channel, user
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.4.1
|
7 |
+
Stable tag: 1.4.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 1.4.2 =
|
85 |
+
* Fixed issue with CSS.
|
86 |
+
|
87 |
= 1.4.1 =
|
88 |
* Added width and height to player.
|
89 |
* Reverted name variable prefixes.
|
styles.css
CHANGED
@@ -1,24 +1,24 @@
|
|
1 |
.ytcplayer{margin-bottom: 10px}
|
2 |
-
ul.
|
3 |
margin: 0; padding: 0;
|
4 |
list-style: none; overflow:hidden
|
5 |
}
|
6 |
-
ul.
|
7 |
float:left;
|
8 |
margin: 0 10px 10px 0;padding: 0
|
9 |
}
|
10 |
-
ul.
|
11 |
display: block;
|
12 |
border:1px solid #999;
|
13 |
background-position: center center;
|
14 |
background-repeat: no-repeat;
|
15 |
}
|
16 |
-
ul.
|
17 |
background: url(img/play.png) -9999px -9999px no-repeat;
|
18 |
}
|
19 |
-
ul.
|
20 |
opacity: 0.75;
|
21 |
}
|
22 |
-
ul.
|
23 |
background-position: center center;
|
24 |
}
|
1 |
.ytcplayer{margin-bottom: 10px}
|
2 |
+
ul.ytchagallery{
|
3 |
margin: 0; padding: 0;
|
4 |
list-style: none; overflow:hidden
|
5 |
}
|
6 |
+
ul.ytchagallery li{
|
7 |
float:left;
|
8 |
margin: 0 10px 10px 0;padding: 0
|
9 |
}
|
10 |
+
ul.ytchagallery li a{
|
11 |
display: block;
|
12 |
border:1px solid #999;
|
13 |
background-position: center center;
|
14 |
background-repeat: no-repeat;
|
15 |
}
|
16 |
+
ul.ytchagallery li a .ytcplay{
|
17 |
background: url(img/play.png) -9999px -9999px no-repeat;
|
18 |
}
|
19 |
+
ul.ytchagallery li a:hover{
|
20 |
opacity: 0.75;
|
21 |
}
|
22 |
+
ul.ytchagallery li a:hover .ytcplay{
|
23 |
background-position: center center;
|
24 |
}
|
youtube-channel-gallery.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.poselab.com/
|
|
5 |
Description: Show a youtube video and a gallery of thumbnails for a youtube channel.
|
6 |
Author: Javier Gómez Pose
|
7 |
Author URI: http://www.poselab.com/
|
8 |
-
Version: 1.4.
|
9 |
License: GPL2
|
10 |
|
11 |
Copyright 2010 Javier Gómez Pose (email : javierpose@gmail.com)
|
5 |
Description: Show a youtube video and a gallery of thumbnails for a youtube channel.
|
6 |
Author: Javier Gómez Pose
|
7 |
Author URI: http://www.poselab.com/
|
8 |
+
Version: 1.4.2
|
9 |
License: GPL2
|
10 |
|
11 |
Copyright 2010 Javier Gómez Pose (email : javierpose@gmail.com)
|