805
// 펀컴 수정 ----------------------------------------------------------------
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
body, td, textarea, input, select {
.notice, div.error, div.updated {
display: none;
}
#adminmenu a, #catlist a, #taglist a {
text-decoration: none;
font-weight: 300;
}
}
#wpadminbar {
color: #fff;
background: #072e86;
}
ul.wicked-tree .wicked-folder {
position: relative;
padding: 5px;
border-radius: 5px;
box-sizing: border-box;
vertical-align: middle;
max-width: calc(100% - 30px);
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
}
ul.wicked-tree .wicked-selected > .wicked-folder {
background: #000000;
color: #fff;
font-size: 12px;
border-radius: 0px;
}
</style>';
}
// 이미지 사이즈 자동조절 방지 ---------------------------------------------------
add_filter( 'big_image_size_threshold', '__return_false' );
// 펀컴 수정 ----------------------------------------------------------------
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
body, td, textarea, input, select {
.notice, div.error, div.updated {
display: none;
}
#adminmenu a, #catlist a, #taglist a {
text-decoration: none;
font-weight: 300;
}
}
#wpadminbar {
color: #fff;
background: #072e86;
}
ul.wicked-tree .wicked-folder {
position: relative;
padding: 5px;
border-radius: 5px;
box-sizing: border-box;
vertical-align: middle;
max-width: calc(100% - 30px);
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
}
ul.wicked-tree .wicked-selected > .wicked-folder {
background: #000000;
color: #fff;
font-size: 12px;
border-radius: 0px;
}
</style>';
}
// 이미지 사이즈 자동조절 방지 ---------------------------------------------------
add_filter( 'big_image_size_threshold', '__return_false' );
// 펀컴 수정 ---------------------------------------------------------------- add_action('admin_head', 'my_custom_fonts'); function my_custom_fonts() { echo '<style> body, td, textarea, input, select { .notice, div.error, div.updated { display: none; } #adminmenu a, #catlist a, #taglist a { text-decoration: none; font-weight: 300; } } #wpadminbar { color: #fff; background: #072e86; } ul.wicked-tree .wicked-folder { position: relative; padding: 5px; border-radius: 5px; box-sizing: border-box; vertical-align: middle; max-width: calc(100% - 30px); overflow: hidden; text-overflow: ellipsis; font-size: 12px; } ul.wicked-tree .wicked-selected > .wicked-folder { background: #000000; color: #fff; font-size: 12px; border-radius: 0px; } </style>'; } // 이미지 사이즈 자동조절 방지 --------------------------------------------------- add_filter( 'big_image_size_threshold', '__return_false' );