PluginProbe
Plugin Notes Plus / 1.2.4
Plugin Notes Plus v1.2.4
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.4, at admin/css/plugin-notes-plus-admin.css

85 lines 1.6 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 .column-description .pnp-wrapper {
43 padding-bottom: 10px;
44 }
45
46 /* Icon colors */
47 .pnp-wrapper .dashicons-info {
48 color: deepskyblue;
49 }
50 .pnp-wrapper .dashicons-warning {
51 color: red;
52 }
53 .pnp-wrapper .dashicons-yes {
54 color: green;
55 }
56
57 /* Icon to indicate that link is opened in new tab */
58 .pnp-plugin-note a[target="_blank"]:after {
59 content: "\f504";
60 font-family: dashicons;
61 padding-left: 3px;
62 vertical-align: top;
63 }
64 .rtl .pnp-plugin-note a[target="_blank"]:after {
65 padding-left: 0;
66 padding-right: 3px;
67 }
68
69 /* Spinner displayed while saving */
70 .dashicons.pnp-spin {
71 display: none;
72 animation: dashicons-spin 1s infinite;
73 animation-timing-function: linear;
74 font-size: 20px;
75 color: #0073aa;
76 }
77 @keyframes dashicons-spin {
78 0% {
79 transform: rotate( 0deg );
80 }
81 100% {
82 transform: rotate( 360deg );
83 }
84 }
85