Skip to content

Commit 9fe9598

Browse files
committed
Make background of tags input white again
1 parent ee63461 commit 9fe9598

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

css/edit.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ label[for='snippet_description'] h3 div {
1717
position: absolute;
1818
}
1919

20+
ul.tagit {
21+
background-color: #fff;
22+
}
23+
2024
/* Add spacing in between the action buttons */
2125
.submit .button {
2226
margin-right: .5em;
@@ -38,7 +42,7 @@ label[for='snippet_description'] h3 div {
3842

3943
border: 1px solid #dfdfdf;
4044
border-radius: 3px;
41-
background-color: #fff;;
45+
background-color: #fff;
4246
}
4347

4448
.CodeMirror-scroll {

includes/edit/edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function code_snippets_load_single_menu() {
9090
require plugin_dir_path( __FILE__ ) . 'admin-help.php';
9191

9292
/* Enqueue the code editor and other scripts and styles */
93-
add_filter( 'admin_enqueue_scripts', 'code_snippets_enqueue_codemirror' );
93+
add_action( 'admin_enqueue_scripts', 'code_snippets_enqueue_codemirror', 9 );
9494

9595
/* Don't allow visiting the edit snippet page without a valid ID */
9696
if ( code_snippets_get_menu_slug( 'edit' ) === $_REQUEST['page'] ) {

0 commit comments

Comments
 (0)