486
// 펀컴 수정 ---------------------------------------------------------------- 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: #000000; } /* Wicked Folder */ 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; } #wicked-folder-pane:not(.wicked-media-modal-folder-pane) .wicked-content { left: 250px; } #wicked-folder-pane .wicked-resizer { left: 250px; } .wicked-folders-toggle.expanded { left: calc(var(--wicked-folders-sidebar-width) + var(--wicked-folders-tree-pane-width) - -70px); } #e-admin-top-bar-root { width: calc(100% - 250px); } /* 물음표 아이콘 깨짐 */ .learn-press-tip::before { font-family: "FontAwesome"; content: "\f059"; } </style>'; } // 이미지 사이즈 자동조절 방지 --------------------------------------------------- add_filter( 'big_image_size_threshold', '__return_false' );