Version Description
- UPDATED: Make the height of included files names shorter
Download this release
Release Info
Developer | tai |
Plugin | Show Current Template |
Version | 0.2.1 |
Comparing to | |
See all releases |
Code changes from version 0.2.0 to 0.2.1
- readme.txt +4 -1
- show-current-template.php +1 -1
- style.css +7 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: template, toolbar
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 0.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -45,6 +45,9 @@ None so far.
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
48 |
= 0.1.8 =
|
49 |
* UPDATED: update for 3.8.
|
50 |
|
4 |
Tags: template, toolbar
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 0.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 0.2.1 =
|
49 |
+
* UPDATED: Make the height of included files names shorter
|
50 |
+
|
51 |
= 0.1.8 =
|
52 |
* UPDATED: update for 3.8.
|
53 |
|
show-current-template.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Plugin URI: http://wp.tekapo.com/
|
6 |
Description: Show the current template file name in the tool bar.
|
7 |
Author: JOTAKI Taisuke
|
8 |
-
Version: 0.2.
|
9 |
Author URI: http://tekapo.com/
|
10 |
Text Domain: show-current-template
|
11 |
Domain Path: /languages/
|
5 |
Plugin URI: http://wp.tekapo.com/
|
6 |
Description: Show the current template file name in the tool bar.
|
7 |
Author: JOTAKI Taisuke
|
8 |
+
Version: 0.2.1
|
9 |
Author URI: http://tekapo.com/
|
10 |
Text Domain: show-current-template
|
11 |
Domain Path: /languages/
|
style.css
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
/*
|
2 |
Document : style.css
|
3 |
Created on : 2013/01/21, 16:04:46
|
4 |
-
Updated on :
|
5 |
Author : tai
|
6 |
Description:
|
7 |
-
|
8 |
*/
|
9 |
|
10 |
#wpadminbar .show-template-name,
|
@@ -16,6 +16,7 @@
|
|
16 |
|
17 |
#wpadminbar #wp-admin-bar-included_files_path .ab-item {
|
18 |
height: auto;
|
|
|
19 |
}
|
20 |
|
21 |
#wpadminbar #wp-admin-bar-included_files_path .ab-item div {
|
@@ -27,6 +28,10 @@
|
|
27 |
color: #2ea2cc;
|
28 |
}
|
29 |
|
|
|
|
|
|
|
|
|
30 |
#wpadminbar #included-files-list {
|
31 |
margin-left: 20px;
|
32 |
}
|
1 |
/*
|
2 |
Document : style.css
|
3 |
Created on : 2013/01/21, 16:04:46
|
4 |
+
Updated on : 2015/11/29, 9:30
|
5 |
Author : tai
|
6 |
Description:
|
7 |
+
The stylesheet for the plugin.
|
8 |
*/
|
9 |
|
10 |
#wpadminbar .show-template-name,
|
16 |
|
17 |
#wpadminbar #wp-admin-bar-included_files_path .ab-item {
|
18 |
height: auto;
|
19 |
+
padding-bottom: 1rem;
|
20 |
}
|
21 |
|
22 |
#wpadminbar #wp-admin-bar-included_files_path .ab-item div {
|
28 |
color: #2ea2cc;
|
29 |
}
|
30 |
|
31 |
+
#wpadminbar #wp-admin-bar-included_files_path .ab-item #included-files-list li {
|
32 |
+
line-height: 1.3rem;
|
33 |
+
}
|
34 |
+
|
35 |
#wpadminbar #included-files-list {
|
36 |
margin-left: 20px;
|
37 |
}
|