PluginProbe
Insert Html Snippet / 1.0
Insert Html Snippet v1.0
1.4.6 trunk 1.0 1.0.1 1.1 1.1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.4 1.4.1 1.4.2 1.4.3 All 27 releases
insert-html-snippet / admin / style.php

style.php in Insert Html Snippet 1.0, at admin/style.php

138 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php require_once( dirname( __FILE__ ) .'/../../../../wp-load.php'); ?>
2 <style type="text/css">
3
4 #system_notice_area {
5 position: fixed;
6 margin-bottom:40px;
7 left:25%;
8 width:50%;
9 height:20px;
10 border-radius:5px;
11 -moz-border-radius:5px;
12 -webkit-border-radius:5px;
13 font-weight:bold;
14 display:none;
15 padding:5px;
16 color: #000000;
17 text-align: center;
18 <?php
19 if(function_exists('is_admin_bar_showing') && is_admin_bar_showing()){
20 ?>
21 top :28px;
22 <?php
23 }else{
24 ?>
25 top: 0px;
26 <?php
27 }
28 ?>
29
30
31 }
32
33
34
35 .xyz_fbook{
36
37 background-image: url('<?php echo plugins_url("images/facebook.png",__FILE__) ?>');
38 height:16px;
39 background-repeat: no-repeat;
40 background-position: left center;
41 padding-left: 15px;
42 text-decoration: none;
43
44
45
46 }
47 .xyz_support{
48
49 background-image: url('<?php echo plugins_url("images/support.png",__FILE__) ?>');
50 height:16px;
51 background-repeat: no-repeat;
52 background-position: left center;
53 padding-left: 15px;
54
55
56
57
58 }
59 .xyz_twitt{
60
61 background-image: url('<?php echo plugins_url("images/twitter.png",__FILE__) ?>');
62 height:16px;
63 background-repeat: no-repeat;
64 background-position: left center;
65 padding-left: 15px;
66 text-decoration: none;
67
68
69
70 }
71 .xyz_gplus{
72
73 background-image: url('<?php echo plugins_url("images/gplus.png",__FILE__) ?>');
74 height:16px;
75 background-repeat: no-repeat;
76 background-position: left center;
77 padding-left: 15px;
78 text-decoration: none;
79
80
81 }
82
83
84 #insert-html-snippet .xyz_gplus{
85 margin-left: 3px;
86 }
87
88 #insert-html-snippet .plugin-version-author-uri {
89
90 background-color: #F4F4F4;
91 min-height:16px;
92 border-radius:5px;
93 margin-bottom: 10px;
94 font-weight:bold;
95 padding: 5px;
96 color: #111111;
97
98 -webkit-box-shadow: 0 8px 6px -6px black;
99 -moz-box-shadow: 0 8px 6px -6px black;
100 box-shadow: 0 8px 6px -6px black;
101
102 }
103 #insert-html-snippet{
104 background: #a9e8f5; /* Old browsers */
105
106 background: -moz-linear-gradient(top, #ffffff 0%, #a9e8f5 100%); /* FF3.6+ */
107 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#a9e8f5)); /* Chrome,Safari4+ */
108 background: -webkit-linear-gradient(top, #ffffff 0%,#a9e8f5 100%); /* Chrome10+,Safari5.1+ */
109 background: -o-linear-gradient(top, #ffffff 0%,#a9e8f5 100%); /* Opera 11.10+ */
110 background: -ms-linear-gradient(top, #ffffff 0%,#a9e8f5 100%); /* IE10+ */
111 background: linear-gradient(top, #ffffff 0%,#a9e8f5 100%); /* W3C */
112
113
114 }
115 #insert-html-snippet .plugin-version-author-uri a,
116 #insert-html-snippet .plugin-version-author-uri a:link,
117 #insert-html-snippet .plugin-version-author-uri a:hover,
118 #insert-html-snippet .plugin-version-author-uri a:active,
119 #insert-html-snippet .plugin-version-author-uri a:visited{
120
121
122 color: #111111;
123 text-decoration: none;
124
125 }
126 #insert-html-snippet .plugin-version-author-uri a:hover{
127
128 color:#cc811a;
129 }
130 #insert-html-snippet .plugin-title{
131
132 background-image: url('<?php echo plugins_url("images/xyz_logo.png",__FILE__) ?>');
133 background-repeat: no-repeat;
134 background-position: left bottom;
135
136 }
137
138 </style>