標準の管理CSS id / classタグとは何ですか?


45

WordPress CSS id / classesのリストがあり、通常のWordPressオプションページのように見えるプラグインオプション画面を作成できますか?私はセレンディピティを通じていくつかを見つけましたが、リストを用意しておくと良かったでしょう。

例はこのクラスです。button-primaryこれにより、ボタンは次のようになります。 一次


WordPressの標準の保存ボタンのように見えます。写真を投稿するのに十分な評判が得られた場合、2ポイント不足しています:)
オレヘンリックスコグストロム

2
今、あなたはそれが良い質問だから13を持っています:D
mor7ifer

1
こんにちは...私は解決策を与えていますが、これはこの質問に正確には関係ありませんが、Web開発には非常に役立ちます。以下は、Webページのすべての情報を表示するWeb開発ツールです。このリンクからダウンロードしてください:chrispederick.com/work/web-developerこれはfirebugアドオンとしてインストールされ、非常に簡単に使用できます。
w3uiguru

@HappySinghの見栄えが悪く、良い開発ツールはいつでも便利です:)
オレヘンリックスコグストロム

回答:


15

私たちはhttp://dotorgstyleguide.wordpress.com/の更新に取り組んでおり、この情報をより多く入手し、3.2からのスタイルの更新を反映しています。

それ以外に、さまざまなCSSセレクターとその外観を表示する種類のデモページを表示するプラグイン(現在は見つけることができません)を見ましたが、それは時代遅れだと思います。それ以外は、現時点での最善の選択肢は、Firebug / Web Inspectorを起動してwp-admin / css / wp-admin.dev.cssを確認することです。


ありがとう、今までやってきた小さなことでfirebugソリューションを使ってきた。それは大丈夫ですが、私はあなたと@bultgeから得た2つのリストの例のようなものを好むでしょう:)ありがとう!
オレヘンリックスコグストロム

2
このサイトのコンテンツは現在かなり古くなっています。
ブルギ


2

* 注:フロントエンド側の場合-これは、ワードプレスのデフォルトのCSSスタイルで多くのR&Dを行った後に抽出したリストです。私はすべてを研究し、可能な限り正確にすべてを整理するために最善を尽くしました。不足しているものや不完全なものがある場合は、コメントに記入してください。希望するプラグインとテーマの開発に役立つことを願っています*

/* WP WYSIWYG Editor Styles */

.entry-content img {
    margin: 0 0 1.5em 0;
    }

.alignleft, img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
    }
.alignright, img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
    }
.aligncenter, img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
    }
.alignnone, img.alignnone {}
.wp-caption {
    margin-bottom: 1.5em;
    text-align: center;
    padding-top: 5px;
    }
.wp-caption img {
    border: 0 none;
    padding: 0;
    margin: 0;
    }
.wp-caption p.wp-caption-text {
    line-height: 1.5;
    font-size: 10px;
    margin: 0;
    }
.wp-smiley {
    margin: 0 !important;
    max-height: 1em;
    }
blockquote.left {
    margin-right: 20px;
    text-align: right;
    margin-left: 0;
    width: 33%;
    float: left;
    }
blockquote.right {
    margin-left: 20px;
    text-align: left;
    margin-right: 0;
    width: 33%;
    float: right;
    }
.gallery dl {}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {}
.gallery-caption {}

.size-full {}
.size-large {}
.size-medium {}
.size-thumbnail {}

/* WP CSS - Miscellaneous Styles */

/* category links */
 li.categories {}  
 li.cat-item {}
 li.cat-item-{id} {}
 li.current-cat {}
 li.current-cat-parent {}
 ul.children {}

/* blogroll links */
.linkcat {}
.blogroll {}

/* read-more links */
.more-link {}

/* WP CSS - Page Listings */

.pagenav {}               /* outermost list item */
.page_item {}             /* any page item */
.page-item-{id} {}        /* specific page id */
.current_page_item {}     /* current page */
.current_page_parent {}   /* parent of current page */
.current_page_ancestor {} /* any ancestor of current page */

.pagenav ul,
.pagenav .current_page_item ul,
.pagenav .current_page_ancestor ul,
.pagenav .current_page_ancestor .current_page_item ul,
.pagenav .current_page_ancestor .current_page_ancestor ul,
.pagenav .current_page_ancestor .current_page_ancestor .current_page_item ul,
.pagenav .current_page_ancestor .current_page_ancestor .current_page_ancestor ul {}

.pagenav  ul ul,
.pagenav .current_page_item ul ul,
.pagenav .current_page_ancestor ul ul,
.pagenav .current_page_ancestor .current_page_item ul ul,
.pagenav .current_page_ancestor .current_page_ancestor ul ul {}
.pagenav .current_page_ancestor .current_page_ancestor .current_page_item ul ul, 
.pagenav .current_page_ancestor .current_page_ancestor .current_page_ancestor ul ul {}

/* WP CSS - Default WordPress Widgets */

.widget {}

/* links widget */
.widget_links {}
.widget_links ul {}
.widget_links ul li {}
.widget_links ul li a {}

/* meta widget */
.widget_meta {}
.widget_meta ul {}
.widget_meta ul li {}
.widget_meta ul li a {}

/* pages widget */
.widget_pages {}
.widget_pages ul {}
.widget_pages ul li {}
.widget_pages ul li a {}

/* recent-posts widget */
.widget_recent_entries {}
.widget_recent_entries ul {}
.widget_recent_entries ul li {}
.widget_recent_entries ul li a {}

/* archives widget */
.widget_archive {}
.widget_archive ul {}
.widget_archive ul li {} 
.widget_archive ul li a {}
.widget_archive select {}
.widget_archive option {}

/* tag-cloud widget */
.widget_links {}
.widget_links li:after {}
.widget_links li:before {}
.widget_tag_cloud {}
.widget_tag_cloud a {}
.widget_tag_cloud a:after {}
.widget_tag_cloud a:before {}

/* calendar widget */
.widget_calendar {}
#calendar_wrap {}
#calendar_wrap th {}
#calendar_wrap td {}
#wp-calendar tr td {}
#wp-calendar caption {}
#wp-calendar a {}
#wp-calendar #today {}
#wp-calendar #prev {}
#wp-calendar #next {}
#wp-calendar #next a {}
#wp-calendar #prev a {}

/* category widget */
.widget_categories {}
.widget_categories ul {}
.widget_categories ul li {} 
.widget_categories ul ul.children {}
.widget_categories a {}
.widget_categories select{}
.widget_categories select#cat {}
.widget_categories select.postform {}
.widget_categories option {}
.widget_categories .level-0 {}
.widget_categories .level-1 {}
.widget_categories .level-2 {}
.widget_categories .level-3 {}

/* recent-comments widget */
.recentcomments {}
#recentcomments {}
#recentcomments li {}
#recentcomments li a {}
.widget_recent_comments {}

/* search widget */
#searchform {}
.widget_search {}
.screen-reader-text {}

/* text widget */
.textwidget {}
.widget_text {}
.textwidget p {}

/* WP CSS - Comment Styles */

.commentlist .reply {}
.commentlist .reply a {}

.commentlist .alt {}
.commentlist .odd {}
.commentlist .even {}
.commentlist .thread-alt {}
.commentlist .thread-odd {}
.commentlist .thread-even {}
.commentlist li ul.children .alt {}
.commentlist li ul.children .odd {}
.commentlist li ul.children .even {}

.commentlist .vcard {}
.commentlist .vcard cite.fn {}
.commentlist .vcard span.says {}
.commentlist .vcard img.photo {}
.commentlist .vcard img.avatar {}
.commentlist .vcard cite.fn a.url {}

.commentlist .comment-meta {} 
.commentlist .comment-meta a {}
.commentlist .commentmetadata {}
.commentlist .commentmetadata a {}

.commentlist .parent {}
.commentlist .comment {}
.commentlist .children {}
.commentlist .pingback {}
.commentlist .bypostauthor {}
.commentlist .comment-author {}
.commentlist .comment-author-admin {}

.commentlist {}
.commentlist li {}
.commentlist li p {}
.commentlist li ul {}
.commentlist li ul.children li {}
.commentlist li ul.children li.alt {}
.commentlist li ul.children li.byuser {}
.commentlist li ul.children li.comment {}
.commentlist li ul.children li.depth-{id} {}
.commentlist li ul.children li.bypostauthor {}
.commentlist li ul.children li.comment-author-admin {}

#cancel-comment-reply {}
#cancel-comment-reply a {}

/* WP CSS - body_class() */

.rtl {}
.home {}
.blog {}
.archive {}
.date {}
.search {}
.paged {}
.attachment {}
.error404 {}
.single postid-(id) {}
.attachmentid-(id) {}
.attachment-(mime-type) {}
.author {}
.author-(user_nicename) {}
.category {}
.category-(slug) {}
.tag {}
.tag-(slug) {}
.page-parent {}
.page-child parent-pageid-(id) {}
.page-template page-template-(template file name) {}
.search-results {}
.search-no-results {}
.logged-in {}
.paged-(page number) {}
.single-paged-(page number) {}
.page-paged-(page number) {}
.category-paged-(page number) {}
.tag-paged-(page number) {}
.date-paged-(page number) {}
.author-paged-(page number) {}
.search-paged-(page number) {}

/* WP CSS - post_class() */

.post-id {}
.post {}
.page {}
.attachment {}
.sticky {}
.hentry {}
.category-misc {}
.category-example {}
.tag-news {}
.tag-wordpress {}
.tag-markup {}

私はあなたのリストを本当に理解していませんが、これは空のID /クラスのリストなので、WordPress CSSスタイルを自分でカスタマイズできますか?
オレヘンリックスコグストロム

コンテンツにさまざまな方法でこれを含める場合、これは画像のすべてのクラスのリストです。浮き上がりや右揃えなどのフロート経由のように。Webの投稿からのコピーだけですか?
-bueltge

0

WordPressバックエンドは「body」クラスを生成しました。これらをどこかで明示的に文書化したことはありません(見逃したかもしれませんが)。それらと、admin-header.phpソースでどのように生成されるかを確認できます。

生成されたクラスは、フロントエンドのものと非常に似ています:

<body class="wp-admin no-js  upload-php admin-bar branch-3-3 version-3-3-1 admin-color-fresh">

0

add_menu_page()を使用してカスタム管理ページを作成していたため、この質問に答えました。間にコンテンツを入れたいと思うでしょう

<div class = "wrap">Your content.</div>

これにより、標準のWordPress管理バックエンドCSSがアクティブになり、カスタム管理ページが正常に見えるようになります。この場合、他のdivはWordPressによって自動的に処理されます。

class AdminScreen{

    public function __construct(){
        add_action( 'admin_menu', array( $this, 'doAddMenuPage' ) );
    }

    public function doAddMenuPage(){
        add_menu_page( "AdminScreen", "AdminScreen", 'edit_others_pages', 'AdminScreen', array($this, 'echoAdminPage') );
    }

    public function echoAdminPage(){        
        //Prints out the HTML into the output buffer:
        echo '<div class = "wrap"><h1 class = "wp-heading-inline">This looks good, finally!</h1></div>';
    }
}

0

管理ページのスタイリングに使用できるすべての利用可能なcssクラス/ htmlマークアップを一覧表示するという、まともな仕事をする興味深い記事があります。この記事は、古いバージョンのWordPressからのスタイリング結果を示しているという点で少し古くなっているため、その後に追加のクラスが追加されている可能性があります。

別の有用なリソースはWordPress dashiconsです。

しかし、管理スタイルの更新されたリファレンスを維持する素晴らしい仕事をする以下にリストされた彼の優れたプラグインに @ bueltgeを祝福しなければなりません。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.