Ultimate Tag Cloud Widget - Version 2.3

Version Description

  • #27: Added filtering feature to generate a cloud of posts which have a common term/terms
  • #28: Added more styling options (center, right align, justify, display as list)
  • #29: Changed CSS classes to match the WordPress tag cloud
  • #25, #26, #31: Internal / code quality
Download this release

Release Info

Developer exz
Plugin Icon wp plugin Ultimate Tag Cloud Widget
Version 2.3
Comparing to
See all releases

Code changes from version 2.3-beta4 to 2.3

Files changed (3) hide show
  1. css/style.css +1 -103
  2. readme.txt +1 -1
  3. ultimate-tag-cloud-widget.php +2 -2
css/style.css CHANGED
@@ -1,103 +1 @@
1
- .utcw-tab-button {
2
- border-top: solid 1px #dfdfdf;
3
- border-left: solid 1px #dfdfdf;
4
- border-right: solid 1px #dfdfdf;
5
- border-bottom: none;
6
- margin: 0;
7
- -webkit-border-top-left-radius: 3px;
8
- -webkit-border-top-right-radius: 3px;
9
- -moz-border-radius-topleft: 3px;
10
- -moz-border-radius-topright: 3px;
11
- border-top-left-radius: 3px;
12
- border-top-right-radius: 3px;
13
- padding: 2px;
14
- background: transparent;
15
- opacity: 0.5;
16
- cursor: pointer;
17
- -webkit-transition: opacity 0.1s ease-in; }
18
- .utcw-tab-button:hover {
19
- opacity: 1; }
20
-
21
- .utcw-help {
22
- float: right;
23
- display: block;
24
- width: 14px;
25
- height: 14px;
26
- border: solid 1px transparent;
27
- -webkit-border-radius: 14px;
28
- -moz-border-radius: 14px;
29
- -khtml-border-radius: 14px;
30
- border-radius: 14px;
31
- text-align: center;
32
- color: #fff;
33
- font-weight: bold;
34
- background-color: #6295fb;
35
- background-image: -webkit-gradient(linear, left top, left bottom, from(#6295fb), to(#3265cb));
36
- background-image: -webkit-linear-gradient(top, #6295fb, #3265cb);
37
- background-image: -moz-linear-gradient(top, #6295fb, #3265cb);
38
- background-image: -ms-linear-gradient(top, #6295fb, #3265cb);
39
- background-image: -o-linear-gradient(top, #6295fb, #3265cb);
40
- background-image: linear-gradient(top, #6295fb, #3265cb);
41
- cursor: pointer; }
42
- .utcw-help:hover {
43
- color: #fff; }
44
-
45
- .utcw-tooltip {
46
- color: #000;
47
- width: 200px;
48
- text-align: center;
49
- border: solid 1px #6295fb;
50
- -webkit-border-radius: 9px;
51
- -moz-border-radius: 9px;
52
- -khtml-border-radius: 9px;
53
- border-radius: 9px; }
54
- .utcw-tooltip ul {
55
- list-style-type: circle;
56
- margin: 10px 0; }
57
- .utcw-tooltip li {
58
- margin: 0 0 0 20px; }
59
-
60
- fieldset.utcw {
61
- padding: 10px;
62
- border: solid 1px #dfdfdf;
63
- margin-bottom: 25px; }
64
- fieldset.utcw h3 {
65
- margin: 0 0 5px 0; }
66
- fieldset.utcw input[type="number"] {
67
- width: 50px; }
68
- fieldset.utcw legend {
69
- letter-spacing: 2px;
70
- font-size: 16px; }
71
- fieldset.utcw label.two-col {
72
- width: 120px;
73
- display: inline-block; }
74
- fieldset.utcw .post-term-search-result {
75
- background: #fff;
76
- box-shadow: 0 0 6px #ccc;
77
- -webkit-border-radius: 3px;
78
- -moz-border-radius: 3px;
79
- -khtml-border-radius: 3px;
80
- border-radius: 3px; }
81
- fieldset.utcw .post-term-search-result li {
82
- padding: 0 0.5em;
83
- cursor: pointer; }
84
- fieldset.utcw .post-term-search-result li:first-of-type {
85
- padding-top: 0.5em; }
86
- fieldset.utcw .post-term-search-result li:last-of-type {
87
- padding-bottom: 0.5em; }
88
- fieldset.utcw .submitbox {
89
- float: right;
90
- cursor: pointer; }
91
-
92
- .utcw-hidden {
93
- display: none; }
94
-
95
- .utcw-active {
96
- font-weight: bold;
97
- opacity: 1; }
98
-
99
- .utcw-authors {
100
- margin-top: 5px; }
101
-
102
- .utcw-remove-config {
103
- cursor: pointer; }
1
+ .utcw-tab-button{border-top:solid 1px #dfdfdf;border-left:solid 1px #dfdfdf;border-right:solid 1px #dfdfdf;border-bottom:none;margin:0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;border-top-left-radius:3px;border-top-right-radius:3px;padding:2px;background:transparent;opacity:0.5;cursor:pointer;-webkit-transition:opacity 0.1s ease-in}.utcw-tab-button:hover{opacity:1}.utcw-help{float:right;display:block;width:14px;height:14px;border:solid 1px transparent;-webkit-border-radius:14px;-moz-border-radius:14px;-khtml-border-radius:14px;border-radius:14px;text-align:center;color:#fff;font-weight:bold;background-color:#6295fb;background-image:-webkit-gradient(linear, left top, left bottom, from(#6295fb), to(#3265cb));background-image:-webkit-linear-gradient(top, #6295fb, #3265cb);background-image:-moz-linear-gradient(top, #6295fb, #3265cb);background-image:-ms-linear-gradient(top, #6295fb, #3265cb);background-image:-o-linear-gradient(top, #6295fb, #3265cb);background-image:linear-gradient(top, #6295fb, #3265cb);cursor:pointer}.utcw-help:hover{color:#fff}.utcw-tooltip{color:#000;width:200px;text-align:center;border:solid 1px #6295fb;-webkit-border-radius:9px;-moz-border-radius:9px;-khtml-border-radius:9px;border-radius:9px}.utcw-tooltip ul{list-style-type:circle;margin:10px 0}.utcw-tooltip li{margin:0 0 0 20px}fieldset.utcw{padding:10px;border:solid 1px #dfdfdf;margin-bottom:25px}fieldset.utcw h3{margin:0 0 5px 0}fieldset.utcw input[type="number"]{width:50px}fieldset.utcw legend{letter-spacing:2px;font-size:16px}fieldset.utcw label.two-col{width:120px;display:inline-block}fieldset.utcw .post-term-search-result{background:#fff;box-shadow:0 0 6px #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;-khtml-border-radius:3px;border-radius:3px}fieldset.utcw .post-term-search-result li{padding:0 0.5em;cursor:pointer}fieldset.utcw .post-term-search-result li:first-of-type{padding-top:0.5em}fieldset.utcw .post-term-search-result li:last-of-type{padding-bottom:0.5em}fieldset.utcw .submitbox{float:right;cursor:pointer}.utcw-hidden{display:none}.utcw-active{font-weight:bold;opacity:1}.utcw-authors{margin-top:5px}.utcw-remove-config{cursor:pointer}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: exz
3
  Tags: widget, tags, configurable, tag cloud
4
  Requires at least: 3.0
5
- Tested up to: 3.6-beta2
6
  Stable tag: 2.3
7
  Donate link: https://flattr.com/thing/112193/Ultimate-Tag-Cloud-Widget
8
  License: GPLv2 or later
2
  Contributors: exz
3
  Tags: widget, tags, configurable, tag cloud
4
  Requires at least: 3.0
5
+ Tested up to: 3.6-beta3
6
  Stable tag: 2.3
7
  Donate link: https://flattr.com/thing/112193/Ultimate-Tag-Cloud-Widget
8
  License: GPLv2 or later
ultimate-tag-cloud-widget.php CHANGED
@@ -5,7 +5,7 @@
5
  Plugin Name: Ultimate tag cloud widget
6
  Plugin URI: https://www.0x539.se/wordpress/ultimate-tag-cloud-widget/
7
  Description: This plugin aims to be the most configurable tag cloud widget out there.
8
- Version: 2.3 beta 2
9
  Author: Rickard Andersson
10
  Author URI: https://www.0x539.se
11
  License: GPLv2
@@ -17,7 +17,7 @@ License: GPLv2
17
  * @var string
18
  * @since 2.0
19
  */
20
- define('UTCW_VERSION', '2.3 beta 2');
21
 
22
  /**
23
  * If development mode is currently enabled
5
  Plugin Name: Ultimate tag cloud widget
6
  Plugin URI: https://www.0x539.se/wordpress/ultimate-tag-cloud-widget/
7
  Description: This plugin aims to be the most configurable tag cloud widget out there.
8
+ Version: 2.3
9
  Author: Rickard Andersson
10
  Author URI: https://www.0x539.se
11
  License: GPLv2
17
  * @var string
18
  * @since 2.0
19
  */
20
+ define('UTCW_VERSION', '2.3');
21
 
22
  /**
23
  * If development mode is currently enabled