PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / trunk
Block Animations, Motion & Scroll Effects – Ghost Kit vtrunk
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / assets / admin / css / admin.scss

admin.scss in Block Animations, Motion & Scroll Effects – Ghost Kit trunk, at assets/admin/css/admin.scss

86 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Admin Styles.
3 */
4 @import "../../../gutenberg/variables";
5
6 /*
7 * Go Pro menu link
8 */
9 #adminmenu a[href*="admin.php?page=ghostkit_go_pro"]*="admin.php?page=ghostkit_go_pro""],
10 .wp-list-table.plugins a[href*="admin.php?page=ghostkit_go_pro"]*="admin.php?page=ghostkit_go_pro""] {
11 font-weight: 700;
12 color: $color-success;
13
14 .dashicons {
15 transition: none;
16 }
17
18 &:hover,
19 &:focus {
20 color: $color-success;
21 filter: contrast(1.1) brightness(1.2);
22 }
23 }
24
25 /**
26 * Admin menu icon.
27 */
28 #adminmenu .toplevel_page_ghostkit > .wp-menu-image.svg {
29 filter: brightness(1.3);
30 background-size: 16px auto;
31 }
32
33 .dashicons-ghostkit {
34 background-image: url(../../../../assets/images/admin-icon.svg);
35 background-repeat: no-repeat;
36 background-position: center center;
37 background-size: 18px;
38 opacity: 0.6;
39 }
40
41 /**
42 * Admin Notices
43 */
44 .gkt-admin-notice {
45 display: flex;
46 padding: 0;
47 border: none;
48 border-left: 4px solid #000;
49 box-shadow: 0 0 4px rgba(0, 0, 0, 15%);
50
51 h3 {
52 margin-top: 10px;
53 margin-bottom: 12px;
54 font-size: 16px;
55
56 svg {
57 display: inline-block;
58 width: 1.3em;
59 height: 1.3em;
60 margin-right: 0.2em;
61 vertical-align: -0.28em;
62 }
63 }
64
65 .gkt-admin-notice-icon {
66 display: flex;
67 justify-content: center;
68 width: 50px;
69 min-width: 50px;
70 padding-top: 14px;
71 background-color: rgba(0, 0, 0, 5%);
72 }
73
74 .dashicons-ghostkit {
75 display: block;
76 width: 22px;
77 height: 22px;
78 background-size: 22px;
79 opacity: 1;
80 }
81
82 .gkt-admin-notice-content {
83 padding: 6px 16px;
84 }
85 }
86