PluginProbe ʕ •ᴥ•ʔ
Tracking Code Manager / 2.7.0
Tracking Code Manager v2.7.0
2.8.0 2.7.0 trunk 1.11.8 1.11.9 1.12.0 1.12.1 1.12.2 1.12.3 1.4 1.5 2.0.0 2.0.1 2.0.13 2.0.14 2.0.15 2.0.16 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1.0 2.2.0 2.3.0 2.4.0 2.5.0 2.6.0
tracking-code-manager / assets / css / style.css
tracking-code-manager / assets / css Last commit date
font-awesome.min.css 4 years ago manager.css 4 years ago style.css 1 month ago
style.css
214 lines
1 ._tcmp {
2 background-color: #efc439;
3 border-radius: 2px;
4 color: #fff;
5 display: inline-block;
6 font-size: 12px;
7 padding: 0 2px;
8 line-height: 14px;
9 vertical-align: baseline;
10 }
11
12 .tcmp-tag {
13 display: inline-block;
14 line-height: 13px;
15 padding: 0 3px;
16 color: white;
17 font-size: 10px;
18 font-weight: normal;
19 width:25px;
20 margin-top:3px;
21 margin-right:5px;
22 text-align:center;
23 -webkit-border-radius: 2px;
24 border-radius: 2px;
25 vertical-align: baseline;
26 }
27 .tcmp-tag-free {
28 /*background-color: #edb802;*/
29 background-color: #16a765;
30 }
31 .tcmp-tag-premium {
32 /*background-color: #edb802;*/
33 background-color: #4986e7;
34 opacity: 0.7;
35 filter: alpha(opacity=70);
36 }
37 .tcmp-tag-premium a {
38 color:white;
39 text-decoration:none;
40 }
41 .tcmp-button {
42 margin-right:5px!important;
43 }
44
45 .tcmp-textarea {
46 font-family:"Courier New", Courier, mono;
47 font-size:12px;
48 color:#555;
49 background-color:#f8f8f8;
50 width:550px;
51 }
52
53 .tcmp-form {
54 float:left;
55 padding:5px;
56 }
57 .tcmp-form input, .tcmp-form label {
58 float:left;
59 }
60 .tcmp-text {
61 width: 400px;
62 }
63 .tcmp-label {
64 width: 150px;
65 margin: 0px;
66 background-color: transparent;
67 }
68 .tcmp-label-disabled {
69 /*color:#A8A8A8;*/
70 opacity: 0.7;
71 filter: alpha(opacity=70);
72 }
73 .tcmp-checkbox {
74 margin:0px;
75 }
76 .tcmp-checkbox:disabled {
77 background-color: #f8f8f8;
78 }
79 .tcmp-select {
80
81 }
82 .tcmp-form-newline {
83 clear:both;
84 margin-bottom:5px;
85 }
86
87 .tcmp-box-error {
88 background: #fff;
89 border-left: 4px solid #dd3d36;
90 margin: 5px 0 15px;
91 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
92 box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
93 padding: 1px 12px;
94 }
95 .tcmp-box-warning {
96 background: #fff;
97 border-left: 4px solid #ffba00;
98 margin: 5px 0 15px;
99 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
100 box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
101 padding: 1px 12px;
102 }
103 .tcmp-box-success {
104 background: #fff;
105 border-left: 4px solid #7ad03a;
106 margin: 5px 0 15px;
107 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
108 box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
109 padding: 1px 12px;
110 }
111 .tcmp-box-info {
112 background: #fff;
113 border-left: 4px solid #00a0d2;
114 margin: 5px 0 15px;
115 -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
116 box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
117 padding: 1px 12px;
118 }
119
120 table thead {
121 background-color: #fafafa;
122 }
123 table tr td {
124 vertical-align: middle;
125 border-top: 1px solid #eeeeee;
126 }
127 table .odd {
128 background-color: white;
129 }
130 table .even {
131 background-color: #fafafa;
132 }
133 #tcmp-sidebar li {
134 margin: 0px!important;
135 margin-left: 20px!important;;
136 }
137 .tcmp-plugin-widget {
138 padding: 10px;
139 border: 2px dashed red;
140 }
141
142 /* ==========================================================================
143 X (formerly Twitter) "Follow" button — brand pill, admin-header accessory.
144 Rendered by the plugin's Utils::twitter() helper; sits beside the "Rate us"
145 label + star rating in the settings-page header. Scoped under .tcmp-x-follow
146 so it is safe next to other admin styles and overrides the font-size the
147 anchor would otherwise inherit from the surrounding <h2>. The inline SVG uses
148 fill:currentColor, so one `color` paints both the label and the X mark.
149 ========================================================================== */
150 .tcmp-x-follow {
151 display: inline-flex;
152 align-items: center;
153 justify-content: center;
154 gap: 6px;
155 box-sizing: border-box;
156 margin: 0 0 0 10px;
157 padding: 5px 12px;
158 border: 0;
159 border-radius: 9999px;
160 background-color: #000;
161 color: #fff;
162 font-size: 13px;
163 font-weight: 600;
164 line-height: 1;
165 text-decoration: none;
166 white-space: nowrap;
167 vertical-align: middle;
168 cursor: pointer;
169 -webkit-font-smoothing: antialiased;
170 transition: background-color .15s ease;
171 }
172 .tcmp-x-follow,
173 .tcmp-x-follow:link,
174 .tcmp-x-follow:visited,
175 .tcmp-x-follow:hover,
176 .tcmp-x-follow:active,
177 .tcmp-x-follow:focus {
178 color: #fff;
179 text-decoration: none;
180 }
181 .tcmp-x-follow span {
182 font-size: 13px;
183 line-height: 1;
184 }
185 .tcmp-x-follow svg {
186 display: block;
187 width: 16px;
188 height: 16px;
189 flex: 0 0 auto;
190 fill: currentColor;
191 }
192 .tcmp-x-follow:hover {
193 background-color: #1a1a1a;
194 }
195 .tcmp-x-follow:active {
196 background-color: #333;
197 }
198 .tcmp-x-follow:focus {
199 outline: 2px solid #2271b1;
200 outline-offset: 2px;
201 box-shadow: none;
202 }
203 .tcmp-x-follow:focus:not(:focus-visible) {
204 outline: none;
205 }
206 .tcmp-x-follow:focus-visible {
207 outline: 2px solid #2271b1;
208 outline-offset: 2px;
209 }
210 @media (prefers-reduced-motion: reduce) {
211 .tcmp-x-follow {
212 transition: none;
213 }
214 }