PluginProbe
Admin and Site Enhancements (ASE) / 7.3.0
Admin and Site Enhancements (ASE) v7.3.0
9.1.1 9.1.0 9.0.2 9.0.1 9.0.0 8.9.2 8.9.1 8.9.0 8.8.8 8.8.7 8.8.6 8.8.5 8.8.4 8.8.3 8.8.2 8.8.1 8.8.0 8.7.3 8.7.2 8.7.1 8.2.1 8.2.2 8.2.3 8.3.0 8.3.1 All 273 releases
admin-site-enhancements / assets / css / image-sizes-panel.css
image-sizes-panel.css
74 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Adapted from https://plugins.trac.wordpress.org/browser/image-sizes-panel/tags/0.4/admin/css/admin.css */
2
3 #image_sizes .inside {
4 margin: 0px;
5 padding: 0px;
6 }
7
8 #image_sizes table {
9 border: none;
10 border-collapse: collapse;
11 width: 100%;
12 }
13
14 #image_sizes table th {
15 display: none;
16 }
17
18 #image_sizes table td {
19 border-bottom: 1px solid #eee;
20 padding: 6px 12px;
21 text-align: left;
22 vertical-align: top;
23 }
24
25 #image_sizes table .size .name {
26 font-weight: bold;
27 display: block;
28 max-width: 135px;
29 min-width: 1px;
30 overflow: hidden;
31 text-overflow: ellipsis;
32 white-space: nowrap;
33 }
34
35 #image_sizes table .dim {
36 padding-left: 0px;
37 text-align: right;
38 white-space: nowrap;
39 }
40
41 #image_sizes table td.copy {
42 padding-right: 0px;
43 width: 20px;
44 }
45
46 #image_sizes table td .copy-url-button {
47 width: 20px;
48 height: 20px;
49 display: flex;
50 justify-content: center;
51 align-items: center;
52 }
53
54 #image_sizes table td .copy-url-button:hover {
55 cursor: pointer;
56 }
57
58 #image_sizes table td .copy-url-button:hover svg g {
59 stroke: #135e96;
60 }
61
62 #image_sizes .image-size-row {
63 position: relative;
64 }
65
66 #image_sizes .image-size-row .url-copied {
67 position: absolute;
68 top: 4px;
69 left: 40px;
70 background: #fff;
71 border: 1px solid #ccc;
72 padding: 2px 8px;
73 border-radius: 3px;
74 }