PluginProbe
Plugin Notes Plus / 1.2.3
Plugin Notes Plus v1.2.3
trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9
plugin-notes-plus / admin / css / plugin-notes-plus-admin.css

plugin-notes-plus-admin.css in Plugin Notes Plus 1.2.3, at admin/css/plugin-notes-plus-admin.css

81 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * All of the CSS for your admin-specific functionality should be
3 * included in this file.
4 */
5
6 #pnp_plugin_notes_col {
7 width: 20%;
8 }
9 .pnp-note-form-wrapper {
10 display: none;
11 padding-bottom: 12px;
12 }
13 .pnp-note-form {
14 display: block;
15 width: 200px;
16 height: 100px;
17 margin-top: 5px;
18 }
19 .pnp-show-note-wrapper {
20 padding-bottom: 10px;
21 }
22 .pnp-add-note {
23 font-size: 11px;
24 }
25 .view-icon span {
26 vertical-align: middle;
27 font-size: 20px;
28 }
29 .pnp-plugin-note span.dashicons {
30 padding-right: 5px;
31 font-size: 20px;
32 }
33 .rtl .pnp-plugin-note span.dashicons {
34 padding-right: 0;
35 padding-left: 5px;
36 }
37 .pnp-note-meta {
38 font-size: 11px !important;
39 margin-top: 5px !important;
40 }
41
42 /* Icon colors */
43 .pnp-wrapper .dashicons-info {
44 color: deepskyblue;
45 }
46 .pnp-wrapper .dashicons-warning {
47 color: red;
48 }
49 .pnp-wrapper .dashicons-yes {
50 color: green;
51 }
52
53 /* Icon to indicate that link is opened in new tab */
54 .pnp-plugin-note a[target="_blank"]:after {
55 content: "\f504";
56 font-family: dashicons;
57 padding-left: 3px;
58 vertical-align: top;
59 }
60 .rtl .pnp-plugin-note a[target="_blank"]:after {
61 padding-left: 0;
62 padding-right: 3px;
63 }
64
65 /* Spinner displayed while saving */
66 .dashicons.pnp-spin {
67 display: none;
68 animation: dashicons-spin 1s infinite;
69 animation-timing-function: linear;
70 font-size: 20px;
71 color: #0073aa;
72 }
73 @keyframes dashicons-spin {
74 0% {
75 transform: rotate( 0deg );
76 }
77 100% {
78 transform: rotate( 360deg );
79 }
80 }
81