├── .gitignore ├── header-template.psd ├── themes ├── OneMozilla │ ├── img │ │ ├── favicon.ico │ │ ├── featured.png │ │ ├── bg-date-lt.png │ │ ├── icn-search.png │ │ ├── icn-share.png │ │ ├── icn-comment.png │ │ ├── logo-mozilla.png │ │ ├── headers │ │ │ ├── firefox.png │ │ │ └── firefox-thumbnail.png │ │ ├── logo-mozilla-lt.png │ │ ├── tabzilla-static.png │ │ ├── mozilla-wordmark.png │ │ └── tabzilla-static-high-res.png │ ├── screenshot.jpg │ ├── colors │ │ ├── sky │ │ │ ├── sky.jpg │ │ │ ├── bg-sky.png │ │ │ ├── icn-comment.png │ │ │ ├── sky.css │ │ │ ├── sky-header-preview.css │ │ │ └── sky-editor-style.css │ │ ├── sand │ │ │ ├── sand.jpg │ │ │ ├── bg-sand.png │ │ │ ├── icn-comment.png │ │ │ ├── bg-gradient-sand.png │ │ │ ├── sand.css │ │ │ ├── sand-header-preview.css │ │ │ └── sand-editor-style.css │ │ ├── stone │ │ │ ├── stone.jpg │ │ │ ├── bg-stone.png │ │ │ ├── icn-comment.png │ │ │ ├── stone.css │ │ │ ├── stone-header-preview.css │ │ │ └── stone-editor-style.css │ │ └── obsidian │ │ │ ├── obsidian.jpg │ │ │ ├── bg-obsidian.png │ │ │ ├── icn-comment.png │ │ │ ├── icn-share.png │ │ │ ├── obsidian-header-preview.css │ │ │ └── obsidian.css │ ├── inc │ │ ├── images │ │ │ ├── content.png │ │ │ ├── content-sidebar.png │ │ │ └── sidebar-content.png │ │ ├── theme-options.css │ │ └── theme-options.js │ ├── fonts │ │ ├── opensans-italic.eot │ │ ├── opensans-italic.ttf │ │ ├── opensans-italic.woff │ │ ├── opensans-light.eot │ │ ├── opensans-light.ttf │ │ ├── opensans-light.woff │ │ ├── opensans-light.woff2 │ │ ├── opensans-regular.eot │ │ ├── opensans-regular.ttf │ │ ├── opensans-italic.woff2 │ │ ├── opensans-regular.woff │ │ ├── opensans-regular.woff2 │ │ ├── opensans-semibold.eot │ │ ├── opensans-semibold.ttf │ │ ├── opensans-semibold.woff │ │ ├── opensans-lightitalic.eot │ │ ├── opensans-lightitalic.ttf │ │ ├── opensans-lightitalic.woff │ │ ├── opensans-semibold.woff2 │ │ ├── opensans-lightitalic.woff2 │ │ ├── opensans-semibolditalic.eot │ │ ├── opensans-semibolditalic.ttf │ │ ├── opensans-semibolditalic.woff │ │ └── opensans-semibolditalic.woff2 │ ├── searchform.php │ ├── single.php │ ├── page.php │ ├── css │ │ ├── ie7.css │ │ ├── login.css │ │ └── print.css │ ├── content-page.php │ ├── 404.php │ ├── masthead.php │ ├── footer.php │ ├── js │ │ ├── html5.js │ │ └── fc-checkcomment.js │ ├── search.php │ ├── image.php │ ├── comments.php │ ├── index.php │ ├── archive.php │ ├── content-single.php │ ├── content-summary.php │ ├── content.php │ ├── header.php │ └── sidebar.php ├── OneMozilla-Air │ ├── screenshot.jpg │ ├── img │ │ ├── thumbnail.png │ │ ├── bg-midnight.png │ │ ├── icn-comment.png │ │ ├── logo-airmo-lg.png │ │ ├── logo-airmo-md.png │ │ ├── thumbnail-sm.png │ │ └── thumbnail-short.png │ ├── page.php │ ├── single.php │ ├── content-page.php │ ├── masthead.php │ ├── content.php │ ├── content-single.php │ ├── content-summary.php │ ├── content-featured.php │ ├── index.php │ ├── functions.php │ └── sidebar.php ├── OneMozilla-Den │ ├── screenshot.jpg │ ├── img │ │ └── mail-small.png │ └── style.css ├── OneMozilla-WebDev │ ├── img │ │ ├── tree.png │ │ ├── activity.png │ │ ├── bg-date.png │ │ ├── bg-tile.png │ │ ├── bg-gradient.png │ │ ├── icn-comment.png │ │ ├── icn-share.png │ │ └── author-links.png │ ├── screenshot.jpg │ ├── page-about.php │ ├── sidebar.php │ ├── functions.php │ ├── wp-syntax.css │ └── mozweb-editor-style.css ├── OneMozilla-Nightly │ ├── img │ │ ├── favicon.png │ │ ├── background.png │ │ ├── icn-share.png │ │ ├── page-image.png │ │ ├── favicon-196.png │ │ └── icn-comment.png │ ├── screenshot.jpg │ ├── functions.php │ ├── header.php │ └── style.css └── OneMozilla-PressCenter │ ├── screenshot.jpg │ ├── content-syndicated.php │ ├── archive-ataglance.php │ ├── index.php │ ├── home.php │ ├── single-bios.php │ ├── archive-bios.php │ ├── media-library.php │ ├── languages │ ├── mozpress.pot │ ├── pt_BR.po │ └── it_IT.po │ ├── js │ └── TabInterface.js │ └── functions.php ├── README.md └── CODE_OF_CONDUCT.md /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | .DS_Store -------------------------------------------------------------------------------- /header-template.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/header-template.psd -------------------------------------------------------------------------------- /themes/OneMozilla/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/favicon.ico -------------------------------------------------------------------------------- /themes/OneMozilla/img/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/featured.png -------------------------------------------------------------------------------- /themes/OneMozilla/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/screenshot.jpg -------------------------------------------------------------------------------- /themes/OneMozilla-Air/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/screenshot.jpg -------------------------------------------------------------------------------- /themes/OneMozilla-Den/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Den/screenshot.jpg -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sky/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sky/sky.jpg -------------------------------------------------------------------------------- /themes/OneMozilla/img/bg-date-lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/bg-date-lt.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/icn-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/icn-search.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/icn-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/icn-share.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/thumbnail.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/tree.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/screenshot.jpg -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sand/sand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sand/sand.jpg -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sky/bg-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sky/bg-sky.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/logo-mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/logo-mozilla.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/bg-midnight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/bg-midnight.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla-Den/img/mail-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Den/img/mail-small.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/img/favicon.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/screenshot.jpg -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/activity.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/bg-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/bg-date.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/bg-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/bg-tile.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sand/bg-sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sand/bg-sand.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/stone/stone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/stone/stone.jpg -------------------------------------------------------------------------------- /themes/OneMozilla/img/headers/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/headers/firefox.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/logo-mozilla-lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/logo-mozilla-lt.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/tabzilla-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/tabzilla-static.png -------------------------------------------------------------------------------- /themes/OneMozilla/inc/images/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/inc/images/content.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/logo-airmo-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/logo-airmo-lg.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/logo-airmo-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/logo-airmo-md.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/thumbnail-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/thumbnail-sm.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/img/background.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/img/icn-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/img/icn-share.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/img/page-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/img/page-image.png -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-PressCenter/screenshot.jpg -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/bg-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/bg-gradient.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/icn-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/icn-share.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sky/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sky/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/stone/bg-stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/stone/bg-stone.png -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-italic.eot -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-italic.ttf -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-italic.woff -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-light.eot -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-light.ttf -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-light.woff -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-light.woff2 -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-regular.eot -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-regular.ttf -------------------------------------------------------------------------------- /themes/OneMozilla/img/mozilla-wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/mozilla-wordmark.png -------------------------------------------------------------------------------- /themes/OneMozilla-Air/img/thumbnail-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Air/img/thumbnail-short.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/img/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/img/favicon-196.png -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/img/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-Nightly/img/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/img/author-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla-WebDev/img/author-links.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/obsidian/obsidian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/obsidian/obsidian.jpg -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sand/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sand/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/stone/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/stone/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-italic.woff2 -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-regular.woff -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-regular.woff2 -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibold.eot -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibold.ttf -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibold.woff -------------------------------------------------------------------------------- /themes/OneMozilla/colors/obsidian/bg-obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/obsidian/bg-obsidian.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/obsidian/icn-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/obsidian/icn-comment.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/obsidian/icn-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/obsidian/icn-share.png -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-lightitalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-lightitalic.eot -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-lightitalic.ttf -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-lightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-lightitalic.woff -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibold.woff2 -------------------------------------------------------------------------------- /themes/OneMozilla/inc/images/content-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/inc/images/content-sidebar.png -------------------------------------------------------------------------------- /themes/OneMozilla/inc/images/sidebar-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/inc/images/sidebar-content.png -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sand/bg-gradient-sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/colors/sand/bg-gradient-sand.png -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-lightitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-lightitalic.woff2 -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibolditalic.eot -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibolditalic.ttf -------------------------------------------------------------------------------- /themes/OneMozilla/img/headers/firefox-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/headers/firefox-thumbnail.png -------------------------------------------------------------------------------- /themes/OneMozilla/img/tabzilla-static-high-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/img/tabzilla-static-high-res.png -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibolditalic.woff -------------------------------------------------------------------------------- /themes/OneMozilla/fonts/opensans-semibolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/One-Mozilla-blog/HEAD/themes/OneMozilla/fonts/opensans-semibolditalic.woff2 -------------------------------------------------------------------------------- /themes/OneMozilla/searchform.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/single.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /themes/OneMozilla/single.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /themes/OneMozilla/page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /themes/OneMozilla/css/ie7.css: -------------------------------------------------------------------------------- 1 | /* Styles for IE7 and older */ 2 | 3 | /* I can hasLayout */ 4 | #masthead, 5 | #site-info, 6 | #content, 7 | #content-main, 8 | #content-sub, 9 | .entry-header, 10 | .entry-title, 11 | .entry-posted, 12 | #nav-primary, 13 | .nav-paging, 14 | #comment-list.av .comment, 15 | .featured-posts { 16 | zoom: 1; 17 | } 18 | 19 | /* A few position adjustments */ 20 | .single-post .entry-title, 21 | .page .entry-title { 22 | margin-top: 0; 23 | } 24 | 25 | /* Just for IE6 */ 26 | * html legend { 27 | margin-left: -8px; 28 | } 29 | -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/functions.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |
10 |

11 | 12 |
13 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /themes/OneMozilla/content-page.php: -------------------------------------------------------------------------------- 1 |
> 2 |
3 |

4 | ', '

' ); ?> 5 |
6 | 7 |
8 | 9 | '' ) ); ?> 10 |
11 |
12 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/content-page.php: -------------------------------------------------------------------------------- 1 |
> 2 | 3 |
4 |

5 |
6 | 7 |
8 | ', '

' ); ?> 9 | 10 | '' ) ); ?> 11 |
12 |
13 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Community Participation Guidelines 2 | 3 | This repository is governed by Mozilla's code of conduct and etiquette guidelines. 4 | For more details, please read the 5 | [Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). 6 | 7 | ## How to Report 8 | For more information on how to report violations of the Community Participation Guidelines, please read our '[How to Report](https://www.mozilla.org/about/governance/policies/participation/reporting/)' page. 9 | 10 | 16 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/masthead.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /themes/OneMozilla/inc/theme-options.css: -------------------------------------------------------------------------------- 1 | #wpcontent select option { 2 | padding-right: 5px; 3 | } 4 | .image-radio-option td { 5 | padding-top: 15px; 6 | } 7 | .image-radio-option label { 8 | display: block; 9 | float: left; 10 | margin: 0 30px 20px 2px; 11 | position: relative; 12 | } 13 | .image-radio-option input { 14 | margin: 0 0 10px; 15 | } 16 | .image-radio-option span { 17 | display: block; 18 | width: 136px; 19 | } 20 | .image-radio-option img { 21 | margin: 0 0 0 -2px; 22 | } 23 | #link-color-example { 24 | -moz-border-radius: 4px; 25 | -webkit-border-radius: 4px; 26 | border-radius: 4px; 27 | border: 1px solid #dfdfdf; 28 | margin: 0 7px 0 3px; 29 | padding: 4px 14px; 30 | } 31 | 32 | body.rtl .image-radio-option label { 33 | float: right; 34 | margin: 0 2px 20px 30px; 35 | } 36 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sand/sand.css: -------------------------------------------------------------------------------- 1 | /* 2 | "Sand" - a warm color scheme for the One Mozilla theme 3 | 4 | @@Colors - 5 | Tan #f2f0e9 6 | Link #0096dd 7 | Hover #0073aa 8 | */ 9 | 10 | #page { 11 | background-color: #f2f0e9; 12 | background-image: url("bg-gradient-sand.png"), url("bg-sand.png"); 13 | background-repeat: repeat-x, repeat; 14 | } 15 | #site-description { 16 | color: #484848; 17 | } 18 | #site-title a:hover, 19 | #site-title a:focus, 20 | #site-title a:active { 21 | color: #0073aa; 22 | } 23 | 24 | /* @Links */ 25 | a:link, 26 | a:visited { 27 | color: #0096dd; 28 | text-decoration: none; 29 | } 30 | a:hover, 31 | a:focus, 32 | a:active { 33 | color: #0073aa; 34 | text-decoration: underline; 35 | } 36 | 37 | .entry-comments a { 38 | background-image: url("icn-comment.png"); 39 | } 40 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/content.php: -------------------------------------------------------------------------------- 1 |
> 2 |
3 |

4 |
5 | 6 |
7 | 8 | '' ) ); ?> 9 |
10 | 11 | ', '

' ); ?> 12 | 13 |
14 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/stone/stone.css: -------------------------------------------------------------------------------- 1 | /* 2 | "Stone" - the default neutral gray color scheme for the One Mozilla theme 3 | 4 | @@Colors - 5 | Light Gray #f9f9f9 6 | Link #2983c8 7 | Hover #20679e 8 | */ 9 | 10 | html { 11 | background: #f9f9f9; 12 | } 13 | 14 | #page { 15 | background-color: #f9f9f9; 16 | background-image: url("bg-stone.png"); 17 | } 18 | 19 | #site-description { 20 | color: #777; 21 | } 22 | 23 | /* @Links */ 24 | a:link, 25 | a:visited { 26 | color: #2983c8; 27 | } 28 | a:hover, 29 | a:focus, 30 | a:active { 31 | color: #20679e; 32 | } 33 | 34 | #site-title a:hover, 35 | #site-title a:focus, 36 | #site-title a:active { 37 | color: #20679e; 38 | } 39 | 40 | ::-moz-selection { 41 | background: #666; 42 | color: #fff; 43 | } 44 | ::selection { 45 | background: #666; 46 | color: #fff; 47 | } 48 | 49 | .entry-comments a { 50 | background-image: url("icn-comment.png"); 51 | } 52 | -------------------------------------------------------------------------------- /themes/OneMozilla/404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 |
7 |

8 |
9 |
10 |

11 |

12 |

webmaster at mozilla dot com. Be sure to tell us where you came from and what you were looking for, and we’ll do our best to fix it.', 'onemozilla' ); ?>

13 |
14 |
15 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /themes/OneMozilla-Den/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: One Mozilla - The Den 3 | Description: Site theme for The Den. This theme is a child of the One Mozilla WordPress theme. 4 | Author: Craig Cook 5 | Template: OneMozilla 6 | Version: 1.1 7 | */ 8 | 9 | @import url("../OneMozilla/style.css"); 10 | 11 | /* @Firefox @Affiliates *********/ 12 | .get-firefox .latest { padding: 0; margin: 0 0 24px; border-bottom: 1px dotted rgba(0,0,0,.2); } 13 | .get-firefox .widgettitle { font-size: 1.5em; margin: 0 0 .5em; } 14 | .get-firefox a.go:after { content: "\00A0\00BB"; font-size: 1.2em; font-weight: bold; line-height: .8; } /* nbsp raquo */ 15 | 16 | /* @Newsletter @Subscribe *********/ 17 | .newsletter-sub a { padding: 15px 15px 85px; background: url(img/mail-small.png) 90% 90% no-repeat; background-color: rgba(255,255,255,.3); border: 1px solid #dbdbdb; border-radius: 6px; box-shadow: inset rgba(0,0,0,0.1) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; } 18 | .newsletter-sub a { display: block; font-size: 16px; } 19 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sky/sky.css: -------------------------------------------------------------------------------- 1 | /* 2 | "Sky" - a light blue color scheme for the One Mozilla theme 3 | 4 | @@Colors - 5 | Gray #eee 6 | Link #67a7d0 7 | Hover #4090c4 8 | */ 9 | 10 | html { 11 | background: #eee; 12 | } 13 | #page { 14 | background-color: #eee; 15 | background-image: url("bg-sky.png"); 16 | } 17 | #site-description { 18 | color: #707477; 19 | } 20 | 21 | /* @Links */ 22 | a:link, 23 | a:visited { 24 | color: #67a7d0; 25 | } 26 | a:hover, 27 | a:focus, 28 | a:active { 29 | color: #4090c4; 30 | } 31 | 32 | #site-title a:hover, 33 | #site-title a:focus, 34 | #site-title a:active { 35 | color: #4090c4; 36 | } 37 | 38 | ::-moz-selection { 39 | background: #f60; 40 | color: #fff; 41 | } 42 | ::selection { 43 | background: #f60; 44 | color: #fff; 45 | } 46 | img::-moz-selection { 47 | background: transparent; 48 | } 49 | img::selection { 50 | background: transparent; 51 | } 52 | 53 | .entry-comments a { 54 | background-image: url("icn-comment.png"); 55 | } 56 | -------------------------------------------------------------------------------- /themes/OneMozilla/masthead.php: -------------------------------------------------------------------------------- 1 |
class="image"> 2 |
3 | 4 |

5 | 6 |

7 | 8 | 9 |

10 | 11 |
12 | 13 | 14 | Mozilla 15 | 16 | 17 | 'top', 'container' => 'nav', 'container_id' => 'nav-top', 'fallback_cb' => 'false', ) ); ?> 18 | 19 |
20 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/content-single.php: -------------------------------------------------------------------------------- 1 | ID, 'eventdate', true); 5 | ?> 6 | 7 | 8 |
> 9 |
10 |

11 | 12 |

13 | 14 |

15 | 16 |
17 | 18 |
19 | ', '

' ); ?> 20 | 21 | '' ) ); ?> 22 |
23 |
24 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/content-syndicated.php: -------------------------------------------------------------------------------- 1 | 2 |
> 3 |
4 |

5 | 6 | 7 |

8 | 13 |

14 | 15 |
16 | 17 |
18 | "", 'title' => ""));?> 19 | 20 |
21 | 22 |
23 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/content-summary.php: -------------------------------------------------------------------------------- 1 | ID, 'eventdate', true); 5 | ?> 6 | 7 |
> 8 |
9 |

10 |
11 | 12 |
13 | 14 |

15 | 16 |

17 | 18 | 19 | 20 | "", 'title' => ""));?> 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/archive-ataglance.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |

6 | 7 | query('post_type=ataglance&orderby=menu_order&order=ASC&paged=0'); 8 | if (have_posts()) : while (have_posts()) : the_post(); ?> 9 | 10 |
11 |

12 |
13 | 14 |
15 |
16 | 17 | 18 |
19 | 20 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /themes/OneMozilla/inc/theme-options.js: -------------------------------------------------------------------------------- 1 | var farbtastic; 2 | 3 | (function($){ 4 | var pickColor = function(a) { 5 | farbtastic.setColor(a); 6 | $('#link-color').val(a); 7 | $('#link-color-example').css('background-color', a); 8 | }; 9 | 10 | $(document).ready( function() { 11 | $('#default-color').wrapInner(''); 12 | 13 | farbtastic = $.farbtastic('#colorPickerDiv', pickColor); 14 | 15 | pickColor( $('#link-color').val() ); 16 | 17 | $('.pickcolor').click( function(e) { 18 | $('#colorPickerDiv').show(); 19 | e.preventDefault(); 20 | }); 21 | 22 | $('#link-color').keyup( function() { 23 | var a = $('#link-color').val(), 24 | b = a; 25 | 26 | a = a.replace(/[^a-fA-F0-9]/, ''); 27 | if ( '#' + a !== b ) 28 | $('#link-color').val(a); 29 | if ( a.length === 3 || a.length === 6 ) 30 | pickColor( '#' + a ); 31 | }); 32 | 33 | $(document).mousedown( function() { 34 | $('#colorPickerDiv').hide(); 35 | }); 36 | 37 | $('#default-color a').click( function(e) { 38 | pickColor( '#' + this.innerHTML.replace(/[^a-fA-F0-9]/, '') ); 39 | e.preventDefault(); 40 | }); 41 | 42 | $('.image-radio-option.color-scheme input:radio').change( function() { 43 | var currentDefault = $('#default-color a'), 44 | newDefault = $(this).next().val(); 45 | 46 | if ( $('#link-color').val() == currentDefault.text() ) 47 | pickColor( newDefault ); 48 | 49 | currentDefault.text( newDefault ); 50 | }); 51 | }); 52 | })(jQuery); 53 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | 25 |
26 |
27 |

28 |
29 | 30 |
31 |

32 | 33 |
34 |
35 | 36 | 37 | 38 |
39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 22 | 23 | 24 | 25 | 26 |
27 |
28 |

29 |
30 | 31 |
32 |

33 | 34 |
35 |
36 | 37 | 38 | 39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /themes/OneMozilla/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/content-featured.php: -------------------------------------------------------------------------------- 1 | ID, 'eventdate', true); 5 | ?> 6 | 7 |
> 8 |
9 |
10 | 11 |

12 | 13 |

14 | 15 |

16 |
17 | 18 |

19 | 20 |

21 | 22 |
23 |
24 | 25 | 26 | "", 'title' => ""));?> 27 | 28 | 29 | 30 | 31 | 32 |

33 |
34 |
35 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sky/sky-header-preview.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Open Sans Light"; 3 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 4 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 5 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 6 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | .appearance_page_custom-header #header-preview { 12 | position: relative; 13 | max-width: 952px; 14 | min-width: 712px; 15 | height: 240px; 16 | overflow: hidden; 17 | padding: 0 24px; 18 | margin-left: -80px; 19 | border: 0; 20 | box-shadow: inset 0 0 5px rgba(0,0,0,.2); 21 | background: #eee url("bg-sky.png") repeat-x; 22 | color: #333; 23 | } 24 | 25 | #header-preview .header { 26 | position: relative; 27 | font-size: 16px; 28 | padding: 72px 340px 24px 0; 29 | min-height: 200px; 30 | } 31 | 32 | #header-preview h1, 33 | #header-preview h2 { 34 | line-height: 1; 35 | padding: 0; 36 | font-family: "Open Sans Light", sans-serif; 37 | font-weight: normal; 38 | text-shadow: 0 1px 0 rgba(255,255,255,0.75); 39 | } 40 | 41 | #header-preview h1 { 42 | font-size: 3.75em; letter-spacing: -3px; margin: 0 0 .15em -5px; color: inherit; min-width: 475px; 43 | } 44 | 45 | #header-preview h2 { 46 | font-size: 1.75em; letter-spacing: -1px; margin: 0 0 .25em; opacity: .8; color: inherit; min-width: 475px; 47 | } 48 | 49 | #faux-tabzilla { 50 | background: url("../../img/tab.png") repeat scroll 0 0 transparent; 51 | display: block; 52 | float: right; 53 | height: 45px; 54 | overflow: hidden; 55 | position: absolute; 56 | right: 0; 57 | top: 0; 58 | text-indent: -999em; 59 | width: 150px; 60 | z-index: 999; 61 | } 62 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/stone/stone-header-preview.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Open Sans Light"; 3 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 4 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 5 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 6 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | .appearance_page_custom-header #header-preview { 12 | position: relative; 13 | max-width: 952px; 14 | min-width: 712px; 15 | height: 240px; 16 | overflow: hidden; 17 | padding: 0 24px; 18 | margin-left: -80px; 19 | border: 0; 20 | box-shadow: inset 0 0 5px rgba(0,0,0,.2); 21 | background: #f9f9f9 url("bg-stone.png") repeat-x; 22 | color: #333; 23 | } 24 | 25 | #header-preview .header { 26 | position: relative; 27 | font-size: 16px; 28 | padding: 72px 340px 24px 0; 29 | min-height: 200px; 30 | } 31 | 32 | #header-preview h1, 33 | #header-preview h2 { 34 | line-height: 1; 35 | padding: 0; 36 | font-family: "Open Sans Light", sans-serif; 37 | font-weight: normal; 38 | text-shadow: 0 1px 0 rgba(255,255,255,0.75); 39 | } 40 | 41 | #header-preview h1 { 42 | font-size: 3.75em; letter-spacing: -3px; margin: 0 0 .15em -5px; color: inherit; min-width: 475px; 43 | } 44 | 45 | #header-preview h2 { 46 | font-size: 1.75em; letter-spacing: -1px; margin: 0 0 .25em; opacity: .8; color: inherit; min-width: 475px; 47 | } 48 | 49 | #faux-tabzilla { 50 | background: url("../../img/tab.png") repeat scroll 0 0 transparent; 51 | display: block; 52 | float: right; 53 | height: 45px; 54 | overflow: hidden; 55 | position: absolute; 56 | right: 0; 57 | top: 0; 58 | text-indent: -999em; 59 | width: 150px; 60 | z-index: 999; 61 | } 62 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/obsidian/obsidian-header-preview.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Open Sans Light"; 3 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 4 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 5 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 6 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | .appearance_page_custom-header #header-preview { 12 | position: relative; 13 | max-width: 952px; 14 | min-width: 712px; 15 | height: 240px; 16 | overflow: hidden; 17 | padding: 0 24px; 18 | margin-left: -80px; 19 | border: 0; 20 | box-shadow: inset 0 0 5px rgba(0,0,0,.2); 21 | color: #c5ccd2; 22 | background: #3c5466 url("bg-obsidian.png") repeat-x; 23 | } 24 | 25 | #header-preview .header { 26 | position: relative; 27 | font-size: 16px; 28 | padding: 72px 340px 24px 0; 29 | min-height: 200px; 30 | } 31 | 32 | #header-preview h1, 33 | #header-preview h2 { 34 | line-height: 1; 35 | padding: 0; 36 | font-family: "Open Sans Light", sans-serif; 37 | font-weight: normal; 38 | text-shadow: 0 1px 0 rgba(255,255,255,0.75); 39 | } 40 | 41 | #header-preview h1 { 42 | font-size: 3.75em; letter-spacing: -3px; margin: 0 0 .15em -5px; color: inherit; min-width: 475px; 43 | } 44 | 45 | #header-preview h2 { 46 | font-size: 1.75em; letter-spacing: -1px; margin: 0 0 .25em; opacity: .8; color: inherit; min-width: 475px; 47 | } 48 | 49 | #faux-tabzilla { 50 | background: url("../../img/tab.png") repeat scroll 0 0 transparent; 51 | display: block; 52 | float: right; 53 | height: 45px; 54 | overflow: hidden; 55 | position: absolute; 56 | right: 0; 57 | top: 0; 58 | text-indent: -999em; 59 | width: 150px; 60 | z-index: 999; 61 | } 62 | -------------------------------------------------------------------------------- /themes/OneMozilla/js/html5.js: -------------------------------------------------------------------------------- 1 | // html5shiv MIT @rem remysharp.com/html5-enabling-script 2 | // iepp v1.6.2 MIT @jon_neal iecss.com/print-protector 3 | /*@cc_on(function(a,b){function r(a){var b=-1;while(++b";return a.childNodes.length!==1}())){a.iepp=a.iepp||{};var c=a.iepp,d=c.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",e=d.split("|"),f=e.length,g=new RegExp("(^|\\s)("+d+")","gi"),h=new RegExp("<(/*)("+d+")","gi"),i=/^\s*[\{\}]\s*$/,j=new RegExp("(^|[^\\n]*?\\s)("+d+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),k=b.createDocumentFragment(),l=b.documentElement,m=l.firstChild,n=b.createElement("body"),o=b.createElement("style"),p=/print|all/,q;c.getCSS=function(a,b){if(a+""===undefined)return"";var d=-1,e=a.length,f,g=[];while(++dfound_posts; 5 | 6 | get_header(); ?> 7 | 8 |
9 | 10 | 11 | 12 | 13 |

14 | 15 | 16 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 38 | 39 | 40 | 41 | 42 |

43 | 44 |
45 |

46 | 47 |
48 | 49 | 50 | 51 |
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /themes/OneMozilla/image.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
> 7 |
8 |

9 | 24 |
25 | 26 |
27 |
28 | ID, array( $attachment_size, 1024 ) ); // filterable image width with 1024px limit for image height. 31 | ?> 32 | 33 | post_excerpt ) ) : ?> 34 |
35 | 36 |
37 | 38 |
39 | 40 | 41 | '' ) ); ?> 42 | 43 |
44 | 45 |
46 | 47 | 48 | 49 |
50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 10, 'post__in' => $sticky, 'ignore_sticky_posts' => 1 ) ); 11 | if ( $sticky ) : 12 | while ( have_posts() ) : the_post(); ?> 13 | 14 | 15 | 16 | 17 |

18 | 19 | 20 | 21 | get_option( 'sticky_posts' ), 'ignore_sticky_posts' => 0, 'paged' => get_query_var('paged') ) ); 23 | if ( have_posts() ) : 24 | while ( have_posts() ) : the_post(); ?> 25 | 26 | 27 | 28 | 29 | 30 | 31 | 37 | 38 | 39 | 40 | 41 |
42 |
43 |

44 |
45 | 46 |
47 |

48 | 49 |
50 |
51 | 52 | 55 | 56 |
57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /themes/OneMozilla/js/fc-checkcomment.js: -------------------------------------------------------------------------------- 1 | /********* 2 | * This checks that a commenter has filled required fields. 3 | * It also checks that the provided e-mail is well formed. 4 | * Requires jQuery. 5 | */ 6 | 7 | function fc_clear_errors(elements) { 8 | if (jQuery("#errors").length > 0) { 9 | jQuery("#errors").remove(); 10 | } 11 | for (var i = 0; i < elements.length; i++) { 12 | elements[i].removeClass("err"); 13 | } 14 | } 15 | 16 | function fc_add_error(element, error) { 17 | errorsDiv = document.getElementById("errors"); 18 | if (errorsDiv == null) { 19 | errorsDiv = document.createElement("div"); 20 | errorsDiv.id = "errors"; 21 | jQuery("#comment-form .comment-notes").after(errorsDiv); 22 | jQuery("#comment-form .logged-in-as").after(errorsDiv); 23 | } 24 | errorP = document.createElement("p"); 25 | errorP.innerHTML = error; 26 | errorsDiv.insertBefore(errorP, errorsDiv.firstChild); 27 | element.addClass("err"); 28 | } 29 | 30 | function fc_check_author(author) { 31 | if (author.val() == "") { 32 | fc_add_error(author, objectL10n.noname); 33 | return false; 34 | } 35 | return true; 36 | } 37 | 38 | function fc_check_email(email) { 39 | if (email.val() == "") { 40 | fc_add_error(email, objectL10n.noemail); 41 | return false; 42 | } else { 43 | // check email format 44 | var filter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i; 45 | if (!filter.test(email.val())) { 46 | fc_add_error(email, objectL10n.bademail); 47 | return false; 48 | } 49 | } 50 | return true; 51 | } 52 | 53 | function fc_check_comment(comment) { 54 | if (comment.val() == "") { 55 | fc_add_error(comment, objectL10n.nocomment); 56 | return false; 57 | } 58 | return true; 59 | } 60 | 61 | function fc_checkform() { 62 | comment = jQuery("#comment"); 63 | email = jQuery("#email"); 64 | author = jQuery("#author"); 65 | 66 | fc_clear_errors([comment, email, author]); 67 | 68 | if (comment.length > 0) { 69 | fc_check_comment(comment) || comment.focus(); 70 | } 71 | if (email.length > 0) { 72 | fc_check_email(email) || email.focus(); 73 | } 74 | if (author.length > 0) { 75 | fc_check_author(author) || author.focus();; 76 | } 77 | 78 | return jQuery("#errors").length == 0; 79 | } 80 | 81 | jQuery( document ).ready(function() { 82 | jQuery("#comment-form").submit(fc_checkform); 83 | }); 84 | -------------------------------------------------------------------------------- /themes/OneMozilla/comments.php: -------------------------------------------------------------------------------- 1 | ID); 7 | 8 | /* This variable is for alternating comment background */ 9 | $oddcomment = 'alt'; 10 | ?> 11 | 12 | 13 | 14 | 15 |
16 | 17 |

18 |
19 | 27 | 28 |
29 |

0) { printf(_n( '1 response', '%d responses', $comment_count, 'onemozilla'), $comment_count); } else { _e('No responses yet', 'onemozilla'); } ?>

30 |

31 |
32 | 33 | 34 |
    35 | 36 |
37 | 38 | 1 ) : // If comment paging is enabled and there are enough comments to paginate, show the comment paging ?> 39 |

40 | 41 | 42 | 43 | 44 | 45 |

46 | trackbacks are open.', 'onemozilla' ), get_trackback_url() ); ?> 49 |

50 | 51 | 52 | 'comment-form', 55 | ) ); 56 | ?> 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /themes/OneMozilla/css/login.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Open Sans"; 3 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 4 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 5 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 6 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | html { padding: 0; margin: 0; background: #f9f9f9 url(../colors/stone/bg-stone.png) repeat-x; } 12 | body.login { padding: 0 0 0; border: 0; margin: 0; min-width: 320px; font: 14px/1.5 "Open Sans", sans-serif; color: #444; background: transparent; } 13 | 14 | #login { margin-top: 0; } 15 | 16 | h1 { background: transparent url("../img/logo-mozilla.png") 56% top no-repeat; width: 310px; height: 80px; margin: 0 0 .5em; overflow: hidden; } 17 | h1 a { position: absolute; left: -999em; } 18 | 19 | .login #backtoblog { position: absolute; top: 0; left: 0; width: 100%; height: 3em; border: 0; margin: 0; padding: 0; background: rgba(0,0,0,.05); } 20 | .login #backtoblog a { position: relative; top: .75em; left: 20px; text-decoration: none; text-shadow: none; } 21 | .login #backtoblog a:hover, .login #backtoblog a:focus, .login #backtoblog a:active { color: #fff !important; text-decoration: underline; } 22 | 23 | #loginform { border-color: #eee; border-radius: 15px; box-shadow: 0 2px 3px rgba(0,0,0,.1); } 24 | 25 | /* @Links */ 26 | .login #backtoblog a, .login #nav a { color: #2983c8 !important; text-decoration: none; text-shadow: none; } 27 | .login #backtoblog a:hover, .login #backtoblog a:focus, .login #backtoblog a:active, 28 | .login #nav a:hover, .login #nav a:focus, .login #nav a:active { color: #20679e !important; text-decoration: underline; } 29 | 30 | 31 | /*** @Buttons *********/ 32 | #wp-submit { 33 | border-radius: .25em; 34 | box-shadow: 0 2px 0 0 rgba(0,0,0,0.1),inset 0 -2px 0 0 rgba(0,0,0,0.2); 35 | color: #fff; 36 | cursor: pointer; 37 | text-align: center; 38 | padding: 8px 10px; 39 | border: 0; 40 | text-shadow: 0 1px 0 rgba(0,0,0,0.25); 41 | font-size: .857em; 42 | line-height: 1.1; 43 | font-weight: normal; 44 | background-color: #266194; 45 | background-image: -moz-linear-gradient(#3c88cc,#276195); 46 | background-image: -webkit-linear-gradient(#3c88cc,#276195); 47 | background-image: linear-gradient(#3c88cc,#276195); 48 | -moz-transition: all .25s linear; 49 | -webkit-transition: all .25s linear; 50 | transition: all .25s linear; 51 | } 52 | #wp-submit:hover, 53 | #wp-submit:focus, 54 | #wp-submit:active { 55 | box-shadow: 0 2px 0 0 rgba(0,0,0,0.1), inset 0 -2px 0 0 rgba(0,0,0,0.2), inset 0 12px 24px 2px #3089d8; 56 | } 57 | -------------------------------------------------------------------------------- /themes/OneMozilla/index.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 11 | 3, 'meta_key' => '_fc_featuredpost', 'meta_value' => 1) ); 14 | if( $featured->have_posts() ) : ?> 15 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 53 | 54 | 55 | 56 | 57 |
58 |
59 |

60 |
61 | 62 |
63 |

64 | 65 |
66 |
67 | 68 | 69 | 70 |
71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/single-bios.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 |
18 | 19 | 20 | ID, 'bio_position', true); 22 | $blog_name = get_post_meta($post->ID, 'bio_blog_name', true); 23 | $blog_url = get_post_meta($post->ID, 'bio_blog_url', true); 24 | $twitter = get_post_meta($post->ID, 'bio_twitter', true); 25 | if (has_post_thumbnail()) : 26 | $headshot = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); 27 | endif; 28 | ?> 29 |
30 | 31 |
"", 'title' => "")); ?>
32 | 33 |
34 |

35 | 36 |

37 | 38 |
39 |
40 | 41 | 42 |

:

43 | 44 | 45 |

: @

46 | 47 | 48 |

49 | 50 |
51 | 52 | '

Pages: ', 'after' => '

', 'next_or_number' => 'number', 'link_before' => '', 'link_after' => '')); ?> 53 |
54 | 55 | 56 |
57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/archive-bios.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | 17 |
18 | 19 | query('post_type=bios&posts_per_page=1&paged=0&orderby=menu_order&order=ASC'); 20 | if (have_posts()) : while (have_posts()) : the_post(); ?> 21 | ID, 'bio_position', true); 23 | $blog_name = get_post_meta($post->ID, 'bio_blog_name', true); 24 | $blog_url = get_post_meta($post->ID, 'bio_blog_url', true); 25 | $twitter = get_post_meta($post->ID, 'bio_twitter', true); 26 | if (has_post_thumbnail()) : 27 | $headshot = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); 28 | endif; 29 | ?> 30 |
31 | 32 |
"", 'title' => "")); ?>
33 | 34 |
35 |

36 | 37 |

38 | 39 |
40 |
41 | 42 | 43 |

:

44 | 45 | 46 |

: @

47 | 48 | 49 |

50 | 51 |
52 | 53 | '

Pages: ', 'after' => '

', 'next_or_number' => 'number', 'link_before' => '', 'link_after' => '')); ?> 54 |
55 | 56 | 57 |
58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /themes/OneMozilla/archive.php: -------------------------------------------------------------------------------- 1 | found_posts; 5 | 6 | get_header(); ?> 7 | 8 |
9 | 10 | 11 | 12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 | display_name) ); ?> 20 | 21 | 22 | 23 |

24 | 25 | 26 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 48 | 49 | 50 | 51 | 52 |
53 |
54 |

55 |
56 | 57 |
58 |

59 | 60 |
61 |
62 | 63 | 64 | 65 |
66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/media-library.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 | 10 |

11 | 12 | 13 | 14 | 'Media Library', 17 | 'container' => 'nav', 18 | 'container_class' => 'nav-tabs', 19 | 'theme_location' => 'media_tabs', 20 | 'fallback_cb' => false) 21 | ); 22 | endif; ?> 23 | 24 | 25 |
26 | ', '

' ); ?> 27 | 28 | 29 | ID)) : ?> 30 | 31 | have_posts()) : ?> 33 | 54 | 55 | 56 | 57 | 58 | '

Pages: ', 'after' => '

', 'next_or_number' => 'number', 'link_before' => '', 'link_after' => '')); ?> 59 | 60 |
61 | 62 | 63 |
64 | 65 | 66 | 67 | ID)) : ?> 68 | 69 | 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/languages/mozpress.pot: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Mozilla Press Center\n" 4 | "POT-Creation-Date: 2015-03-19 17:37-0800\n" 5 | "PO-Revision-Date: 2015-03-19 17:38-0800\n" 6 | "Last-Translator: \n" 7 | "Language-Team: \n" 8 | "Language: en_US\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.7.5\n" 13 | "X-Poedit-Basepath: .\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: _e;_n:1,2;__;esc_attr__\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../archive-ataglance.php:5 20 | msgid "Mozilla At a Glance" 21 | msgstr "" 22 | 23 | #: ../archive-bios.php:43 ../single-bios.php:42 24 | msgid "Website" 25 | msgstr "" 26 | 27 | #: ../archive-bios.php:46 ../single-bios.php:45 28 | msgid "Twitter" 29 | msgstr "" 30 | 31 | #: ../archive-bios.php:49 ../single-bios.php:48 32 | msgid "Download high-res JPEG" 33 | msgstr "" 34 | 35 | #: ../content-syndicated.php:4 36 | #, php-format 37 | msgid "Permanent link to “%s”" 38 | msgstr "" 39 | 40 | #: ../functions.php:27 41 | msgid "At a Glance" 42 | msgstr "" 43 | 44 | #: ../functions.php:28 45 | msgid "At a Glance Item" 46 | msgstr "" 47 | 48 | #: ../functions.php:29 ../functions.php:63 49 | msgid "Add New" 50 | msgstr "" 51 | 52 | #: ../functions.php:30 53 | msgid "Add New At a Glance Item" 54 | msgstr "" 55 | 56 | #: ../functions.php:31 57 | msgid "Edit Item" 58 | msgstr "" 59 | 60 | #: ../functions.php:32 61 | msgid "View Item" 62 | msgstr "" 63 | 64 | #: ../functions.php:33 65 | msgid "Search At a Glance Items" 66 | msgstr "" 67 | 68 | #: ../functions.php:34 ../functions.php:68 69 | msgid "Nothing found" 70 | msgstr "" 71 | 72 | #: ../functions.php:35 ../functions.php:69 73 | msgid "Nothing found in Trash" 74 | msgstr "" 75 | 76 | #: ../functions.php:61 77 | msgid "Speaker Bios" 78 | msgstr "" 79 | 80 | #: ../functions.php:62 81 | msgid "Bio" 82 | msgstr "" 83 | 84 | #: ../functions.php:64 85 | msgid "Add New Speaker Bio" 86 | msgstr "" 87 | 88 | #: ../functions.php:65 89 | msgid "Edit Bio" 90 | msgstr "" 91 | 92 | #: ../functions.php:66 93 | msgid "View Bio" 94 | msgstr "" 95 | 96 | #: ../functions.php:67 97 | msgid "Search Bios" 98 | msgstr "" 99 | 100 | #: ../functions.php:97 101 | msgid "Title/Position" 102 | msgstr "" 103 | 104 | #: ../functions.php:112 105 | msgid "Blog Name" 106 | msgstr "" 107 | 108 | #: ../functions.php:116 109 | msgid "Blog URL" 110 | msgstr "" 111 | 112 | #: ../functions.php:116 113 | msgid "full URL, including \"http://\"" 114 | msgstr "" 115 | 116 | #: ../functions.php:120 117 | msgid "Twitter Name" 118 | msgstr "" 119 | 120 | #: ../home.php:4 121 | msgid "Mozilla News" 122 | msgstr "" 123 | 124 | #: ../home.php:18 ../index.php:17 125 | msgid "Older posts" 126 | msgstr "" 127 | 128 | #: ../home.php:19 ../index.php:18 129 | msgid "Newer posts" 130 | msgstr "" 131 | 132 | #: ../home.php:28 ../index.php:27 133 | msgid "Nothing Found" 134 | msgstr "" 135 | 136 | #: ../home.php:32 ../index.php:31 137 | msgid "" 138 | "Sorry, we couldn't find any results for the requested archive. Perhaps try " 139 | "searching?" 140 | msgstr "" 141 | 142 | #: ../media-library.php:10 143 | msgid "Media Library" 144 | msgstr "" 145 | 146 | #: ../media-library.php:26 147 | msgid "Edit Page" 148 | msgstr "" 149 | 150 | #: ../media-library.php:44 151 | msgid "Download high resolution image of " 152 | msgstr "" 153 | 154 | #: ../media-library.php:48 155 | msgid "See bio" 156 | msgstr "" 157 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/js/TabInterface.js: -------------------------------------------------------------------------------- 1 | /*------------------------------------------------------------------------------ 2 | Function: TabInterface() 3 | Author: Aaron Gustafson (aaron at easy-designs dot net) 4 | Creation Date: 7 December 2006 5 | Version: 1.0 6 | Homepage: http://github.com/easy-designs/TabInterface.js 7 | License: MIT License (see MIT-LICENSE) 8 | ------------------------------------------------------------------------------*/ 9 | function TabInterface(c,d){this.Version="1.0";var j=false,i=document.createElement("ul"),g={div:document.createElement("div"),li:document.createElement("li")};function e(){var x,r,s,p=["h1","h2","h3","h4","h5","h6"],t,v,q,w,u,n,o,y;x=c.getAttribute("id")||"folder-"+d;if(!c.getAttribute("id")){c.setAttribute("id",x)}c.setAttribute("role","application");i.setAttribute("role","tablist");g.div.setAttribute("role","tabpanel");g.div.setAttribute("aria-hidden","true");g.div.setAttribute("tabindex","-1");g.li.setAttribute("role","tab");g.li.setAttribute("aria-selected","false");g.li.setAttribute("tabindex","-1");r=c.firstChild;while(r){s=r.nextSibling;if(r.nodeType==3&&!(/\S/).test(r.nodeValue)){c.removeChild(r)}r=s}for(t=0,v=p.length;t=0;n--){if(o[n]==q){o.splice(n,1)}}p.className=o.join(" ")}function k(n){while(n.nodeName.toLowerCase()!="li"){n=n.parentNode}return n}function m(q){q=(q)?q:event;var o=q.target||q.srcElement,n=q.keyCode||q.charCode,p=true;o=k(o);switch(n){case 37:case 38:a(o,"previous",false);p=false;break;case 39:case 40:a(o,"next",false);p=false;break;case 36:a(o,"previous",true);p=false;break;case 35:a(o,"next",true);p=false;break;case 27:o.blur();p=false;break}if(!p){return l(q)}}function a(o,q,n){if(n){if(q=="previous"){o.parentNode.childNodes[0].focus()}else{o.parentNode.childNodes[o.parentNode.childNodes.length-1].focus()}}else{var p=q=="previous"?o.previousSibling:o.nextSibling;if(p){p.focus()}}}function l(n){if(typeof n.stopPropagation=="function"){n.stopPropagation()}else{if(typeof n.cancelBubble!="undefined"){n.cancelBubble=true}}if(n.preventDefault){n.preventDefault()}return false}e()}; -------------------------------------------------------------------------------- /themes/OneMozilla/content-single.php: -------------------------------------------------------------------------------- 1 |
> 2 |
3 |

4 | 5 | 6 | 42 | 43 | 44 | 45 |

46 | 57 |

58 | 59 | 60 | ', '

' ); ?> 61 |
62 | 63 |
64 | "", 'title' => "")); } ?> 65 | 66 | '' ) ); ?> 67 |
68 | 69 |
70 | 71 | 72 |

:

73 | 74 |

:

75 | 76 |
77 |
78 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/languages/pt_BR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: One Mozilla Press Center\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2015-03-19 16:06-0800\n" 6 | "PO-Revision-Date: 2015-03-19 16:06-0800\n" 7 | "Last-Translator: \n" 8 | "Language-Team: \n" 9 | "Language: pt_BR\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Poedit-KeywordsList: __;_n:1,2;esc_attr__;_e\n" 14 | "X-Poedit-Basepath: .\n" 15 | "X-Generator: Poedit 1.7.5\n" 16 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 17 | "X-Poedit-SourceCharset: UTF-8\n" 18 | "X-Poedit-SearchPath-0: ..\n" 19 | 20 | #: ../archive-ataglance.php:5 21 | msgid "Mozilla At a Glance" 22 | msgstr "Mozilla em Resumo" 23 | 24 | #: ../archive-bios.php:43 ../single-bios.php:42 25 | #, fuzzy 26 | msgid "Website" 27 | msgstr "Site" 28 | 29 | #: ../archive-bios.php:46 ../single-bios.php:45 30 | msgid "Twitter" 31 | msgstr "" 32 | 33 | #: ../archive-bios.php:49 ../single-bios.php:48 34 | msgid "Download high-res JPEG" 35 | msgstr "" 36 | 37 | #: ../content-syndicated.php:4 38 | #, fuzzy, php-format 39 | msgid "Permanent link to “%s”" 40 | msgstr "Link permanente para este comentário de " 41 | 42 | #: ../functions.php:27 43 | #, fuzzy 44 | msgid "At a Glance" 45 | msgstr "Mozilla em Resumo" 46 | 47 | #: ../functions.php:28 48 | msgid "At a Glance Item" 49 | msgstr "" 50 | 51 | #: ../functions.php:29 ../functions.php:63 52 | msgid "Add New" 53 | msgstr "" 54 | 55 | #: ../functions.php:30 56 | msgid "Add New At a Glance Item" 57 | msgstr "" 58 | 59 | #: ../functions.php:31 60 | #, fuzzy 61 | msgid "Edit Item" 62 | msgstr "Editar Página" 63 | 64 | #: ../functions.php:32 65 | msgid "View Item" 66 | msgstr "" 67 | 68 | #: ../functions.php:33 69 | msgid "Search At a Glance Items" 70 | msgstr "" 71 | 72 | #: ../functions.php:34 ../functions.php:68 73 | #, fuzzy 74 | msgid "Nothing found" 75 | msgstr "Nada encontrado" 76 | 77 | #: ../functions.php:35 ../functions.php:69 78 | msgid "Nothing found in Trash" 79 | msgstr "" 80 | 81 | #: ../functions.php:61 82 | msgid "Speaker Bios" 83 | msgstr "Biografias" 84 | 85 | #: ../functions.php:62 86 | msgid "Bio" 87 | msgstr "" 88 | 89 | #: ../functions.php:64 90 | msgid "Add New Speaker Bio" 91 | msgstr "" 92 | 93 | #: ../functions.php:65 94 | msgid "Edit Bio" 95 | msgstr "" 96 | 97 | #: ../functions.php:66 98 | msgid "View Bio" 99 | msgstr "" 100 | 101 | #: ../functions.php:67 102 | msgid "Search Bios" 103 | msgstr "" 104 | 105 | #: ../functions.php:97 106 | msgid "Title/Position" 107 | msgstr "" 108 | 109 | #: ../functions.php:112 110 | msgid "Blog Name" 111 | msgstr "" 112 | 113 | #: ../functions.php:116 114 | msgid "Blog URL" 115 | msgstr "" 116 | 117 | #: ../functions.php:116 118 | msgid "full URL, including \"http://\"" 119 | msgstr "" 120 | 121 | #: ../functions.php:120 122 | msgid "Twitter Name" 123 | msgstr "" 124 | 125 | #: ../home.php:4 126 | msgid "Mozilla News" 127 | msgstr "Notícias da Mozilla" 128 | 129 | #: ../home.php:18 ../index.php:17 130 | #, fuzzy 131 | msgid "Older posts" 132 | msgstr "Posts mais antigos" 133 | 134 | #: ../home.php:19 ../index.php:18 135 | #, fuzzy 136 | msgid "Newer posts" 137 | msgstr "Posts mais recentes" 138 | 139 | #: ../home.php:28 ../index.php:27 140 | #, fuzzy 141 | msgid "Nothing Found" 142 | msgstr "Nada encontrado" 143 | 144 | #: ../home.php:32 ../index.php:31 145 | msgid "" 146 | "Sorry, we couldn't find any results for the requested archive. Perhaps try " 147 | "searching?" 148 | msgstr "" 149 | 150 | #: ../media-library.php:10 151 | msgid "Media Library" 152 | msgstr "Biblioteca de Mídia" 153 | 154 | #: ../media-library.php:26 155 | #, fuzzy 156 | msgid "Edit Page" 157 | msgstr "Editar Página" 158 | 159 | #: ../media-library.php:44 160 | msgid "Download high resolution image of " 161 | msgstr "" 162 | 163 | #: ../media-library.php:48 164 | msgid "See bio" 165 | msgstr "" 166 | -------------------------------------------------------------------------------- /themes/OneMozilla/content-summary.php: -------------------------------------------------------------------------------- 1 | 81 | -------------------------------------------------------------------------------- /themes/OneMozilla/content.php: -------------------------------------------------------------------------------- 1 |
> 2 |
3 |

4 | 5 | 6 | 7 |

8 | 9 | 10 |

11 | 22 |

23 | 24 | 25 | 26 | 62 | 63 | ', '

' ); ?> 64 |
65 | 66 |
67 | "", 'title' => "")); } ?> 68 | 69 | 70 | '' ) ); ?> 71 |
72 | 73 | 74 |
75 | 76 |

:

77 | 78 |

:

79 |
80 | 81 | 82 |
83 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/languages/it_IT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Mozilla Press Center\n" 4 | "POT-Creation-Date: 2016-07-15 22:16+0200\n" 5 | "PO-Revision-Date: 2016-07-16 09:59+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 1.8.8\n" 11 | "X-Poedit-Basepath: .\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: _e;_n:1,2;__;esc_attr__\n" 15 | "Last-Translator: Francesco Lodolo [:flod] \n" 16 | "Language: it_IT\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | 19 | #: ../archive-ataglance.php:5 20 | msgid "Mozilla At a Glance" 21 | msgstr "Mozilla - A colpo d’occhio" 22 | 23 | #: ../archive-bios.php:43 ../single-bios.php:42 24 | msgid "Website" 25 | msgstr "Sito web" 26 | 27 | #: ../archive-bios.php:46 ../single-bios.php:45 28 | msgid "Twitter" 29 | msgstr "Twitter" 30 | 31 | #: ../archive-bios.php:49 ../single-bios.php:48 32 | msgid "Download high-res JPEG" 33 | msgstr "Scarica JPEG ad alta risoluzione" 34 | 35 | #: ../content-syndicated.php:4 36 | #, php-format 37 | msgid "Permanent link to “%s”" 38 | msgstr "Link permanente a “%s”" 39 | 40 | #: ../functions.php:27 41 | msgid "At a Glance" 42 | msgstr "A colpo d’occhio" 43 | 44 | #: ../functions.php:28 45 | msgid "At a Glance Item" 46 | msgstr "Elemento A colpo d’occhio" 47 | 48 | #: ../functions.php:29 ../functions.php:63 49 | msgid "Add New" 50 | msgstr "Aggiungi nuovo" 51 | 52 | #: ../functions.php:30 53 | msgid "Add New At a Glance Item" 54 | msgstr "Aggiungi nuovo elemento A colpo d’occhio" 55 | 56 | #: ../functions.php:31 57 | msgid "Edit Item" 58 | msgstr "Modifica elemento" 59 | 60 | #: ../functions.php:32 61 | msgid "View Item" 62 | msgstr "Visualizza elemento" 63 | 64 | #: ../functions.php:33 65 | msgid "Search At a Glance Items" 66 | msgstr "Cerca in tutti gli elementi A colpo d’occhio" 67 | 68 | #: ../functions.php:34 ../functions.php:68 69 | msgid "Nothing found" 70 | msgstr "Nessun elemento trovato" 71 | 72 | #: ../functions.php:35 ../functions.php:69 73 | msgid "Nothing found in Trash" 74 | msgstr "Nessun elemento trovato nel cestino" 75 | 76 | #: ../functions.php:61 77 | msgid "Speaker Bios" 78 | msgstr "Biografia speaker" 79 | 80 | #: ../functions.php:62 81 | msgid "Bio" 82 | msgstr "Biografia" 83 | 84 | #: ../functions.php:64 85 | msgid "Add New Speaker Bio" 86 | msgstr "Aggiungi nuova biografia speaker" 87 | 88 | #: ../functions.php:65 89 | msgid "Edit Bio" 90 | msgstr "Modifica biografia" 91 | 92 | #: ../functions.php:66 93 | msgid "View Bio" 94 | msgstr "Visualizza biografia" 95 | 96 | #: ../functions.php:67 97 | msgid "Search Bios" 98 | msgstr "Cerca nelle biografie" 99 | 100 | #: ../functions.php:97 101 | msgid "Title/Position" 102 | msgstr "Titolo/posizione" 103 | 104 | #: ../functions.php:112 105 | msgid "Blog Name" 106 | msgstr "Nome del blog" 107 | 108 | #: ../functions.php:116 109 | msgid "Blog URL" 110 | msgstr "URL del blog" 111 | 112 | #: ../functions.php:116 113 | msgid "full URL, including \"http://\"" 114 | msgstr "URL completo, incluso \"http://\"" 115 | 116 | #: ../functions.php:120 117 | msgid "Twitter Name" 118 | msgstr "Nome Twitter" 119 | 120 | #: ../home.php:4 121 | msgid "Mozilla News" 122 | msgstr "Notizie Mozilla" 123 | 124 | #: ../home.php:18 ../index.php:17 125 | msgid "Older posts" 126 | msgstr "Articoli più vecchi" 127 | 128 | #: ../home.php:19 ../index.php:18 129 | msgid "Newer posts" 130 | msgstr "Articoli più recenti" 131 | 132 | #: ../home.php:28 ../index.php:27 133 | msgid "Nothing Found" 134 | msgstr "Nessun elemento trovato" 135 | 136 | #: ../home.php:32 ../index.php:31 137 | msgid "" 138 | "Sorry, we couldn't find any results for the requested archive. Perhaps try " 139 | "searching?" 140 | msgstr "" 141 | "Siamo spiacenti, non è stato trovato alcun risultato per l’archivio " 142 | "richiesto. Una ricerca potrebbe aiutare a trovare l’articolo che stavi " 143 | "cercando." 144 | 145 | #: ../media-library.php:10 146 | msgid "Media Library" 147 | msgstr "Libreria multimediale" 148 | 149 | #: ../media-library.php:26 150 | msgid "Edit Page" 151 | msgstr "Modifica pagina" 152 | 153 | #: ../media-library.php:44 154 | msgid "Download high resolution image of " 155 | msgstr "Scarica immagine ad alta risoluzione di " 156 | 157 | #: ../media-library.php:48 158 | msgid "See bio" 159 | msgstr "Visualizza biografia" 160 | -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/sidebar.php: -------------------------------------------------------------------------------- 1 | 92 | -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/functions.php: -------------------------------------------------------------------------------- 1 | '; 57 | if($website): 58 | echo '
  • ', str_replace('http://', '', $website), '
  • '; 59 | endif; 60 | if($twitterHandle): 61 | echo '
  • '; 62 | endif; 63 | if($githubUser): 64 | echo '
  • Github
  • '; 65 | endif; 66 | echo ''; 67 | endif; 68 | } 69 | 70 | /********* 71 | * Returns author listing HTML 72 | * Only lists authors who have published posts 73 | */ 74 | function dw_list_authors() { 75 | global $wpdb; 76 | 77 | $users = get_users(array()); 78 | 79 | // Do a custom query to get post counts for everyone 80 | // This will save hundreds of queries over "WordPress-style" code 81 | $postsByUsersQuery = 'SELECT post_author, COUNT(*) as count FROM '.$wpdb->posts.' p WHERE post_type="post" AND post_status="publish" GROUP BY post_author'; 82 | $postsByUsersResult = $wpdb->get_results($postsByUsersQuery, ARRAY_A); 83 | $postsByUsersIndex = array(); 84 | foreach($postsByUsersResult as $result) { 85 | $postsByUsersIndex[$result['post_author']] = array('count'=>$result['count']); 86 | } 87 | 88 | // Sort by number of posts 89 | foreach($users as $user) { 90 | $count = $postsByUsersIndex[$user->ID]['count']; 91 | if($count == '') { $count = 0; } 92 | $user->total_posts = $count; 93 | } 94 | usort($users, 'sort_objects_by_property'); 95 | $users = array_reverse($users); 96 | 97 | $author_list = array(); 98 | 99 | // Generate output for authors 100 | foreach($users as $index=>$user) { 101 | if($user->total_posts > 0) { 102 | $item = '
  • '; 103 | $item.= '

    '; 104 | if (function_exists('get_avatar')) { 105 | $item.= get_avatar($user->user_email, 48); 106 | } 107 | $item.= ''.$user->display_name.' '.$user->total_posts.' post'.($user->total_posts > 1 ? 's' : '').'

    '; 108 | if ($user->description) { 109 | $item.= '

    '.$user->description.'

    '; 110 | } 111 | $item.= '
  • '; 112 | 113 | array_push($author_list, $item); 114 | 115 | } 116 | } 117 | 118 | $return = '
      '.implode('', $author_list).'
    '; 119 | 120 | return $return; 121 | } 122 | 123 | /********* 124 | * Sorts WordPress users by Object key (total posts) 125 | */ 126 | function sort_objects_by_property($a, $b) { 127 | if($a->total_posts == $b->total_posts){ return 0 ; } 128 | return ($a->total_posts < $b->total_posts) ? -1 : 1; 129 | } 130 | 131 | /********* 132 | * Custom colors for WP-Syntax 133 | */ 134 | function fc_custom_geshi_styles(&$geshi) { 135 | $geshi->enable_classes(); 136 | $geshi->enable_keyword_links(true); 137 | return true; 138 | } 139 | add_action('wp_syntax_init_geshi', 'fc_custom_geshi_styles'); 140 | 141 | 142 | ?> 143 | -------------------------------------------------------------------------------- /themes/OneMozilla/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | id="mozilla-blog"> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ID, 'medium' ); ?> 17 | 18 | 19 | 20 | 21 | ID), 'medium' ); ?> 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | <?php 52 | if ( is_single() ) { single_post_title(); echo ' | '; bloginfo('name'); } 53 | elseif ( is_home() || is_front_page() ) { bloginfo('name'); if (get_bloginfo('description','display')) { echo ' | '. get_bloginfo('description','display'); } fc_page_number(); } 54 | elseif ( is_page() ) { single_post_title(''); echo ' | '; bloginfo('name'); } 55 | elseif ( is_search() ) { printf( __('Search results for “%s”', 'onemozilla'), esc_html( $s ) ); fc_page_number(); echo ' | '; bloginfo('name'); } 56 | elseif ( is_day() ) { $post = $posts[0]; printf(__('Posts from %s', 'onemozilla'), get_the_date()); echo ' | '; bloginfo('name'); fc_page_number(); } 57 | elseif ( is_month() ) { $post = $posts[0]; printf(__('Posts from %s', 'onemozilla'), get_the_date('F, Y')); echo ' | '; bloginfo('name'); fc_page_number(); } 58 | elseif ( is_year() ) { $post = $posts[0]; printf(__('Posts from %s', 'onemozilla'), get_the_date('Y')); echo ' | '; bloginfo('name'); fc_page_number(); } 59 | elseif ( is_404() ) { _e('Not Found', 'onemozilla'); echo ' | '; bloginfo('name'); } 60 | else { wp_title(''); echo ' | '; bloginfo('name'); fc_page_number(); } 61 | ?> 62 | 63 | 64 | 65 | 66 | 67 | > 68 |
    69 | 78 | 79 | 80 | 81 | 'primary', 'container' => 'nav', 'container_id' => 'nav-primary', 'fallback_cb' => 'false', ) ); ?> 82 | 83 |
    84 | -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | id="mozilla-blog"> 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | ID, 'medium' ); ?> 17 | 18 | 19 | 20 | 21 | ID), 'medium' ); ?> 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | <?php 56 | if ( is_single() ) { single_post_title(); echo ' | '; bloginfo('name'); } 57 | elseif ( is_home() || is_front_page() ) { bloginfo('name'); if (get_bloginfo('description','display')) { echo ' | '. get_bloginfo('description','display'); } fc_page_number(); } 58 | elseif ( is_page() ) { single_post_title(''); echo ' | '; bloginfo('name'); } 59 | elseif ( is_search() ) { printf( __('Search results for “%s”', 'onemozilla'), esc_html( $s ) ); fc_page_number(); echo ' | '; bloginfo('name'); } 60 | elseif ( is_day() ) { $post = $posts[0]; printf(__('Posts from %s', 'onemozilla'), get_the_date()); echo ' | '; bloginfo('name'); fc_page_number(); } 61 | elseif ( is_month() ) { $post = $posts[0]; printf(__('Posts from %s', 'onemozilla'), get_the_date('F, Y')); echo ' | '; bloginfo('name'); fc_page_number(); } 62 | elseif ( is_year() ) { $post = $posts[0]; printf(__('Posts from %s', 'onemozilla'), get_the_date('Y')); echo ' | '; bloginfo('name'); fc_page_number(); } 63 | elseif ( is_404() ) { _e('Not Found', 'onemozilla'); echo ' | '; bloginfo('name'); } 64 | else { wp_title(''); echo ' | '; bloginfo('name'); fc_page_number(); } 65 | ?> 66 | 67 | 68 | 69 | 70 | 71 | > 72 |
    73 | 82 | 83 | 84 | 85 | 'primary', 'container' => 'nav', 'container_id' => 'nav-primary', 'fallback_cb' => 'false', ) ); ?> 86 | 87 |
    88 | -------------------------------------------------------------------------------- /themes/OneMozilla/css/print.css: -------------------------------------------------------------------------------- 1 | /* Styles for print */ 2 | header, hgroup, nav, section, article, aside, footer, main { display: block; } 3 | 4 | /* @Fonts *********/ 5 | /* Light */ 6 | @font-face { 7 | font-family: "Open Sans Light"; 8 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 9 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 10 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 11 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | 16 | @font-face { 17 | font-family: "Open Sans Light"; 18 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot"); 19 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), 20 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.woff") format("woff"), 21 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"); 22 | font-weight: normal; 23 | font-style: italic; 24 | } 25 | 26 | @font-face { 27 | font-family: "Open Sans Light"; 28 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 29 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 30 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 31 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 32 | font-weight: bold; 33 | font-style: normal; 34 | } 35 | 36 | 37 | /* Hidden elements */ 38 | #header, 39 | #content-sub, 40 | #respond, 41 | #breadcrumbs, 42 | #nav-access, 43 | .spread, 44 | #sub-footer, 45 | #footer-logo, 46 | #footer-menu, 47 | .comment-util, 48 | .cmt-post { 49 | display: none; 50 | } 51 | 52 | #page { width: 90%; margin: 0 auto; background: #fff none !important; } 53 | 54 | body { font: 14pt/1.5 "Open Sans", sans-serif; color: #000; } 55 | 56 | h1, h2, h3, h4, h5, h6 { margin: 0 0 .25em; color: #484848; line-height: 1; font-family: "Open Sans Light", sans-serif; font-weight: normal; letter-spacing: -.05em; } 57 | h1 { font-size: 48px; font-size: 3rem; } 58 | h2 { font-size: 32px; font-size: 2rem; } 59 | h3 { font-size: 28px; font-size: 1.75rem; } 60 | h4 { font-size: 24px; font-size: 1.5rem; } 61 | h5 { font-size: 16px; font-size: 1rem; } 62 | h6 { font-size: 14px; font-size: .875rem; } 63 | 64 | #masthead { position: relative; padding: 1em 0; margin: 0 0 2em; border-bottom: 3px double #ccc; text-align: left; background: none !important; } 65 | #tabzilla { position: absolute; top: 0; right: 0; } 66 | #site-title { font-size: 2em; letter-spacing: -1px; margin: 0 0 .15em -5px; } 67 | #site-title a { text-decoration: none; color: #333; } 68 | #site-description { font-size: 1em; color: #666; margin: .15em 0 .25em; } 69 | 70 | .post { position: relative; border-bottom: 1px solid #666; margin-bottom: 2em; padding-bottom: 2em; } 71 | .post .entry-title { font-size: 140%; padding-right: 120px; } 72 | .entry-header a { text-decoration: none; color: #000; } 73 | 74 | .entry-header { font-family: "Open Sans Light", sans-serif; } 75 | .entry-header:after { content: "."; display: block; clear: both; height: 0; visibility: hidden; } 76 | .entry-header .entry-posted, .entry-header .vcard, .entry-header .entry-comments { float: left; margin: 0 24px 1em 0; } 77 | .entry-header address, .entry-header cite { font-style: normal; } 78 | .entry-header .vcard img { margin: 0 0 -.25em 6px; } 79 | 80 | .entry-meta { font: .857em "Open Sans Light", sans-serif; } 81 | .entry-meta p { margin: 0 0 .5em; } 82 | .entry-meta b { margin-right: 10px; font-weight: normal; text-transform: uppercase; } 83 | 84 | img.image-left { float: left; margin: 0 25px 10px 0; } 85 | img.image-right { float: right; margin: 0 0 10px 25px; } 86 | img.image-center { display: block; margin: 0 auto 1.7em; } 87 | 88 | .alignleft { float: left; margin: 0 20px .5em 0; } 89 | a .alignleft { margin: -2px 20px .5em -2px; } 90 | .alignright { float: right; margin: 0 0 15px 1em; } 91 | a .alignright { margin: -2px -2px 15px 1em; } 92 | .aligncenter { display: block; margin: 0 auto 1.4em; } 93 | 94 | .wp-caption.aligncenter { width: auto !important; height: auto !important; padding: 0; border: 0; } 95 | .wp-caption img { display: block; margin: 0; max-width: 100%; } 96 | .wp-caption.aligncenter img { margin: 0 auto; } 97 | .wp-caption-text { margin: .3em 5px; font-size: .923em; font-style: italic; text-align: center; } 98 | 99 | #comment-list { font-size: .857em; list-style: none; margin: 0 0 1.5em; padding: 0; } 100 | #comment-list li.hentry { border: 1px solid #666; padding: 24px; margin: 0 0 1em; } 101 | #comment-list .entry-title { font-size: 1em; } 102 | #comment-list cite { font-style: normal; } 103 | #comment-list .entry-title img { display: none; } 104 | #comment-list .entry-content { margin: 0 0 1.5em; padding: 0; } 105 | #comment-list ol.children { list-style: none; margin: 0; } 106 | 107 | #site-info { font-size: .857em; width: 90%; margin: 1em auto; padding: 1em 0 0; border-top: 3px double #ccc; } 108 | 109 | .edit, #nav-meta, #foot-logo .top { display:none; } 110 | -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/wp-syntax.css: -------------------------------------------------------------------------------- 1 | /* Customize GeSHi styles used by WP-Syntax. 2 | * All these !important overrides make my skin crawl but blame GeSHi for that. 3 | */ 4 | .wp_syntax { 5 | color: #97abc8; 6 | background-color: #1e2029; 7 | border: 1px solid #13141a; 8 | padding: 5px; 9 | margin: 0 0 1.5em 0; 10 | overflow-x: auto; 11 | overflow-y: hidden; 12 | padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0); 13 | width: 98%; 14 | } 15 | 16 | .wp_syntax table { 17 | border: none !important; 18 | border-collapse: collapse !important; 19 | margin: 0 !important; 20 | padding: 0 !important; 21 | width: 100% !important 22 | } 23 | 24 | .wp_syntax caption { 25 | margin: 0 0 10px !important; 26 | padding: 3px 1% !important; 27 | width: 98% !important; 28 | background-color: #30323f !important; 29 | text-align: left !important; 30 | font-family: monospace !important; 31 | font-size: 12px !important; 32 | line-height: 1.2em !important; 33 | } 34 | 35 | .wp_syntax caption a { 36 | color: #fc9 !important; 37 | text-align: left !important; 38 | font-family: monospace !important; 39 | font-size: 12px !important; 40 | line-height: 16px !important; 41 | text-decoration: none !important; 42 | } 43 | 44 | .wp_syntax caption a:hover, 45 | .wp_syntax caption a:focus, 46 | .wp_syntax caption a:active { 47 | color: #ffefc9 !important; 48 | text-decoration: underline !important; 49 | } 50 | 51 | .wp_syntax div, .wp_syntax td { 52 | border: none !important; 53 | text-align: left !important; 54 | padding: 0 !important; 55 | vertical-align: top !important; 56 | } 57 | 58 | .wp_syntax td.code{ 59 | background-color: #1e2029; 60 | background-image: -webkit-linear-gradient( transparent 50%, rgba(48, 50, 63, .2) 50% ); 61 | background-image: -moz-linear-gradient( transparent 50%, rgba(48, 50, 63, .2) 50% ); 62 | background-image: -ms-linear-gradient( transparent 50%, rgba(48, 50, 63, .2) 50% ); 63 | background-image: -o-linear-gradient( transparent 50%, rgba(48, 50, 63, .2) 50% ); 64 | background-image: linear-gradient( transparent 50%, rgba(48, 50, 63, .2) 50% ); 65 | background-size: 1px 2.29em; 66 | line-height: normal !important; 67 | white-space: normal !important; 68 | width: 100% !important; 69 | } 70 | 71 | /* potential overrides for other styles */ 72 | .wp_syntax pre { 73 | background: transparent !important; 74 | border: none !important; 75 | margin: 0 !important; 76 | padding: 0 !important; 77 | width: auto !important; 78 | float: none !important; 79 | clear: none !important; 80 | overflow: visible !important; 81 | font-family: monospace !important; 82 | font-size: 12px !important; 83 | line-height: 16px !important; 84 | padding: 0 4px !important; 85 | white-space: pre !important; 86 | -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important; /* FF3.5+ */ 87 | -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important; /* Saf3.0+, Chrome */ 88 | box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important; /* Opera 10.5, IE 9.0 */ 89 | -webkit-border-radius: 0 !important; 90 | -moz-border-radius: 0 !important; 91 | border-radius: 0 !important; 92 | } 93 | 94 | .wp_syntax td.line_numbers pre { 95 | background-color: #13141a !important; 96 | color: #999 !important; 97 | text-align: right !important; 98 | width: 16px !important; 99 | } 100 | 101 | 102 | /* Highlighs */ 103 | .xtra, .ln-xtra { display: block; background-color: #4a4e62; } 104 | 105 | /* default styles-- non-keywords, etc. */ 106 | .de1 { color: #97abc8; } 107 | .de2 { color: #97abc8; } 108 | 109 | /* language keywords... some languages have more than others. */ 110 | .kw1 {color: #dedbb3; } 111 | .kw2 {color: #f9efac; } 112 | .kw3 {color: #d6b57f; } 113 | .kw4 {color: #f9efac; font-weight: bold; } 114 | 115 | /* various kinds of comments. */ 116 | .co0, .co1, .co2, co3, .co4, .coMULTI {color: #7c9176; font-style: italic} 117 | 118 | /* strings */ 119 | .st0 {color: #bff98f; } 120 | .st_h {color: #bff98f; } /* "hard" strings (usu. singlequotes) */ 121 | 122 | /* escape characters ESCAPE_CHAR */ 123 | .es0 { color: #9caaa6; } 124 | .es_h { color: #9caaa6; } /* in "hard" strings */ 125 | 126 | 127 | /* brackets, braces, and the like */ 128 | .br0 { color: #dedede; } 129 | 130 | /* symbols */ 131 | .sy0 { color: #e0d79a; } 132 | .sy1 { color: #e0d79a; } 133 | 134 | /* numbers */ 135 | .nu0 { color: #ddafd9; } 136 | .nu8 { color: #ddafd9; } /* octal - GESHI_NUMBER_OCT_PREFIX */ 137 | .nu12 { color: #ddafd9; } /* hex - GESHI_NUMBER_HEX_PREFIX */ 138 | .nu19 { color: #ddafd9; } /* scientific- GESHI_NUMBER_FLT_SCI_ZERO */ 139 | 140 | /* methods */ 141 | .me1 { color: #db7e62; font-weight: bold; } 142 | .me2 { color: #db7e62} 143 | 144 | /* misc other regexp-based constructs, differ widely by language */ 145 | .re0 { color: #fff; font-weight: bold; } /* variables, in most langs */ 146 | .re1 { color: #ccc; font-weight: bold; } 147 | .re2 { color: #fff; } 148 | .re3 { color: #fff; } 149 | .re4 { color: #fff; } 150 | .re5 { color: #fff; } 151 | .re6 { color: #fff; } 152 | .re7 { color: #fff; } 153 | .re8 { color: #fff; } 154 | .re9 { color: #fff; } 155 | 156 | /* links, for if you've got documentation linkage turned on */ 157 | a { text-decoration: none; } 158 | 159 | /* special diff colors to sort of make sense... see wp-syntax/geshi/geshi/diff.php */ 160 | .diff .kw1 { color: #aaaaaa; font-style: italic; } 161 | .diff .re0 { color: #440088; } 162 | .diff .re1 { color: #ff3333; } 163 | .diff .re2 { color: #00b000; } 164 | .diff .re3 { color: #f96; } 165 | .diff .re4 { color: #9f9; } 166 | .diff .re5 { color: #0011dd; } 167 | .diff .re6 { color: #96f; } 168 | .diff .re7 { color: #fbb; } 169 | .diff .re8 { color: #cfc; } 170 | .diff .re9 { color: #888822; } 171 | -------------------------------------------------------------------------------- /themes/OneMozilla-Nightly/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: One Mozilla - Nightly 3 | Description: Site theme for the Firefox Nightly blog. This theme is a child of the One Mozilla WordPress theme. 4 | Author: Kohei Yoshino 5 | Template: OneMozilla 6 | Version: 1.0 7 | */ 8 | 9 | @import url('../OneMozilla/style.css'); 10 | 11 | body.nightly { 12 | color: #D6D6D6; 13 | background: #000; 14 | } 15 | 16 | body.nightly h1, 17 | body.nightly h2, 18 | body.nightly h3, 19 | body.nightly h4, 20 | body.nightly h5, 21 | body.nightly h6 { 22 | color: #FFF; 23 | text-shadow: 0 2px 0 rgba(0, 0, 0, .5); 24 | } 25 | 26 | body.nightly a:link, 27 | body.nightly a:visited, 28 | body.nightly a:hover, 29 | body.nightly a:focus, 30 | body.nightly a:active { 31 | color: #79D8FF; 32 | } 33 | 34 | body.nightly input[type="email"], 35 | body.nightly input[type="url"], 36 | body.nightly input[type="search"], 37 | body.nightly input[type="password"], 38 | body.nightly input[type="text"], 39 | body.nightly textarea { 40 | border-color: rgba(255, 255, 255, .5); 41 | } 42 | 43 | body.nightly #page { 44 | background: #000 url(img/background.png) no-repeat top center; 45 | background: url(img/background.png) no-repeat top center, 46 | linear-gradient(to bottom, transparent, #000 580px), 47 | #0B3D61; 48 | } 49 | 50 | body.nightly #site-title a { 51 | color: inherit; 52 | } 53 | 54 | body.nightly #site-description { 55 | color: #BBB; 56 | } 57 | 58 | body.nightly #nav-primary, 59 | body.nightly .featured-posts { 60 | background: #17324f; 61 | background: rgba(23,50,79,.5); 62 | } 63 | 64 | body.nightly .entry-posted, 65 | body.nightly .entry-posted a:link, 66 | body.nightly .entry-posted a:visited, 67 | body.nightly .entry-posted a:hover, 68 | body.nightly .entry-posted a:focus, 69 | body.nightly .entry-posted a:active { 70 | color: #333; 71 | } 72 | 73 | body.nightly .edit a { 74 | color: #666; 75 | } 76 | 77 | body.nightly .post .entry-comments a { 78 | background-image: url('img/icn-comment.png'); 79 | } 80 | 81 | body.nightly .entry-meta { 82 | border-bottom-color: rgba(255, 255, 255, .15); 83 | } 84 | 85 | body.nightly #site-info { 86 | border: 0; 87 | background: #000; 88 | background: linear-gradient(to bottom, #000, #0D2846); 89 | } 90 | 91 | @media only screen and (max-width: 767px) { 92 | body.nightly .entry-posted, 93 | body.nightly .entry-posted a { 94 | color: inherit !important; 95 | } 96 | } 97 | 98 | /* @Comments *********/ 99 | body.nightly #comment-list .comment, 100 | body.nightly #comment-list .pingback, 101 | body.nightly #comment-list .trackback { 102 | background: #17324f; 103 | background: rgba(23,50,79,.5); 104 | border-color: #17324f; 105 | border-radius: 8px; 106 | } 107 | 108 | body.nightly #comment-list .alt { 109 | background: transparent; 110 | } 111 | 112 | body.nightly #comment-list .byuser { 113 | border-color: #3068a5; 114 | } 115 | 116 | body.nightly #comment-list .avatar { 117 | border-color: #5d83a0; 118 | } 119 | 120 | body.nightly #comment-submit button { 121 | font-size: 1em; 122 | } 123 | 124 | body.nightly #comment-form #errors { 125 | background: #39303f; 126 | border: 1px solid #473851; 127 | border-radius: 6px; 128 | } 129 | 130 | body.nightly #comment-form .err { 131 | background: #39303f; 132 | } 133 | 134 | /* @Comments *********/ 135 | body.nightly #social { 136 | background: transparent; 137 | } 138 | 139 | body.nightly #social * { 140 | font-family: inherit; 141 | } 142 | 143 | body.nightly #social #reply-title { 144 | color: #999; 145 | letter-spacing: 0; 146 | } 147 | 148 | body.nightly #social #reply-title, 149 | body.nightly #social .social-nav .social-current-tab, 150 | body.nightly #social .social-divider, 151 | body.nightly #social .social-nav { 152 | background: none; 153 | } 154 | 155 | body.nightly #social .social-divider { 156 | margin: 16px 0; 157 | } 158 | 159 | body.nightly #social .social-divider::after { 160 | display: block; 161 | overflow: hidden; 162 | margin-top: -.8em; 163 | width: 100%; 164 | height: 1px; 165 | background: #666; 166 | content: "" 167 | } 168 | 169 | body.nightly #social .social-divider span { 170 | color: #999; 171 | background: #000; 172 | } 173 | 174 | body.nightly #social .social-tab-main, 175 | body.nightly #social .social-heading .social-title, 176 | body.nightly #social .social-input-row .social-label { 177 | color: #999; 178 | } 179 | 180 | body.nightly #social #respond .social-input { 181 | border-color: #0B2746; 182 | width: 400px; 183 | color: #FFF; 184 | background: #0A203A; 185 | font-family: inherit; 186 | } 187 | 188 | body.nightly #social #respond textarea.social-input { 189 | resize: vertical; 190 | } 191 | 192 | body.nightly #social #respond .social-input:focus { 193 | border-color: #06395E; 194 | background: #052B47; 195 | } 196 | 197 | body.nightly #social .social-nav li a { 198 | background: #000; 199 | } 200 | 201 | body.nightly #social #reply-title span, 202 | body.nightly #social .social-nav .social-current-tab a { 203 | color: #999; 204 | } 205 | 206 | body.nightly #social .social-comment { 207 | margin: 12px 0; 208 | border: 1px solid #0B2746; 209 | border-radius: 0; 210 | background: #061628; 211 | } 212 | 213 | body.nightly #social .social-comment-inner, 214 | body.nightly #social .social-children .social-comment { 215 | margin: 12px; 216 | } 217 | 218 | body.nightly #social .social-children .social-comment { 219 | background: #0A203A; 220 | } 221 | 222 | body.nightly #social input#submit { 223 | border-radius: .25em; 224 | border: 0; 225 | padding: 8px 24px; 226 | height: auto; 227 | font-family: inherit; 228 | font-size: .857em; 229 | font-weight: normal; 230 | color: #FFF; 231 | background-color: #266194; 232 | background-image: linear-gradient(#3c88cc,#276195); 233 | box-shadow: 0 2px 0 0 rgba(0,0,0,0.1),inset 0 -2px 0 0 rgba(0,0,0,0.2); 234 | text-shadow: 0 1px 0 rgba(0,0,0,0.25); 235 | } 236 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/functions.php: -------------------------------------------------------------------------------- 1 | __( 'Sidebar Top', 'airmoz' ), 28 | 'description' => __( 'Appears at the top of the sidebar, before the generated content', 'airmoz' ), 29 | 'id' => 'sidebar-top', 30 | 'before_widget' => '", 32 | 'before_title' => '

    ', 33 | 'after_title' => '

    ', 34 | ) ); 35 | 36 | register_sidebar( array( 37 | 'name' => __( 'Sidebar Bottom', 'airmoz' ), 38 | 'description' => __( 'Appears at the bottom of the sidebar, after the generated content', 'airmoz' ), 39 | 'id' => 'sidebar-bottom', 40 | 'before_widget' => '", 42 | 'before_title' => '

    ', 43 | 'after_title' => '

    ', 44 | ) ); 45 | 46 | } 47 | add_action( 'widgets_init', 'airmozilla_widgets_init' ); 48 | 49 | 50 | /** 51 | * Returns a "Continue Reading" link for excerpts 52 | */ 53 | function airmozilla_continue_reading_link() { 54 | return ' ' . __( 'See more', 'airmoz' ) . ''; 55 | } 56 | 57 | /** 58 | * Replaces "[…]" (appended to automatically generated excerpts) with an ellipsis and onemozilla_continue_reading_link(). 59 | * 60 | * To override this in a child theme, remove the filter and add your own 61 | * function tied to the excerpt_more filter hook. 62 | */ 63 | function airmozilla_auto_excerpt_more( $more ) { 64 | return ' …' . airmozilla_continue_reading_link(); 65 | } 66 | add_filter( 'excerpt_more', 'airmozilla_auto_excerpt_more', 20 ); 67 | 68 | /** 69 | * Adds a pretty "Continue Reading" link to custom post excerpts. 70 | * 71 | * To override this link in a child theme, remove the filter and add your own 72 | * function tied to the get_the_excerpt filter hook. 73 | */ 74 | function airmozilla_custom_excerpt_more( $output ) { 75 | if ( has_excerpt() && ! is_attachment() ) { 76 | $output .= airmozilla_continue_reading_link(); 77 | } 78 | return $output; 79 | } 80 | add_filter( 'get_the_excerpt', 'airmozilla_custom_excerpt_more', 20 ); 81 | 82 | 83 | /** 84 | * Make a shortcode to simplify vidly multi-format video embeds 85 | * [vidly code="foo"] where 'foo' is the six character vidly string (there is no default so you must provide the vidly code). 86 | */ 87 | function airVidly($atts) { 88 | extract(shortcode_atts(array('code' => '#'), $atts)); 89 | return ' 90 | '; 96 | 97 | } 98 | add_shortcode('vidly', 'airVidly'); 99 | 100 | /** 101 | * Make a shortcode to simplify mibbit IRC embeds 102 | * [mibbit channel="foo"] where 'foo' (without the #) is the IRC channel to join (defaults to airmozilla). 103 | */ 104 | function airMibbit($atts) { 105 | extract(shortcode_atts(array('channel' => 'airmozilla'), $atts)); 106 | return ''; 107 | } 108 | add_shortcode('mibbit', 'airMibbit'); 109 | 110 | /** 111 | * Make a shortcode to simplify Edgecast JWPlayer embeds 112 | * [edgecast file="foo"] where 'foo' is the name of the Edgecast stream (there is no default, so you must provide a stream name). 113 | */ 114 | function airEdgecast($atts) { 115 | extract(shortcode_atts(array('file' => ''), $atts)); 116 | return ' 117 |
    118 | 135 | 136 | '; 137 | } 138 | add_shortcode('edgecast', 'airEdgecast'); 139 | 140 | /** 141 | * Make a shortcode to simplify Bitgravity embeds 142 | * [bitgravity feed="foo"] where 'foo' is the particular stream to embed (defaults to 'multibitrate') 143 | */ 144 | function airBitgravity($atts) { 145 | extract(shortcode_atts(array('feed' => 'multibitrate'), $atts)); 146 | return ' 147 | 148 | '; 149 | } 150 | add_shortcode('bitgravity', 'airBitgravity'); 151 | 152 | ?> 153 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/obsidian/obsidian.css: -------------------------------------------------------------------------------- 1 | /* 2 | "Obsidian" - a dark color scheme for the One Mozilla theme 3 | 4 | @@Colors - 5 | Dark blue #3c5466 6 | Darker blue #2e475a 7 | Pale gray #c5ccd2 8 | Gold #fede3f 9 | Light blue #4090c4 10 | 11 | Link #fede3f 12 | Hover #ffe400 13 | */ 14 | 15 | body { 16 | color: #c5ccd2; 17 | } 18 | #page { 19 | background-color: #3c5466; 20 | background-image: url("bg-obsidian.png"); 21 | } 22 | 23 | /* @Content *********/ 24 | h1, h2, h3, h4, h5, h6 { 25 | color: #d1d9df; 26 | text-shadow: 0 1px 0 rgba(0,0,0,0.3); 27 | } 28 | #tabzilla-panel * { 29 | text-shadow: none; 30 | } 31 | .entry-content table { 32 | border-color: #2e404e; 33 | } 34 | .entry-content th, 35 | .entry-content td { 36 | border-bottom-color: #2e404e; 37 | } 38 | .wp-caption { 39 | background-color: #2e475a; 40 | } 41 | .entry-content img, 42 | .entry-summary img { 43 | background-color: #2e475a; 44 | border-color: #2e475a; 45 | } 46 | 47 | .entry-meta { 48 | border-bottom: 1px solid rgba(197,204,201,.1); 49 | } 50 | ::-moz-selection { 51 | background: #d1d9df; 52 | color: #2a4956; 53 | } 54 | ::selection { 55 | background: #d1d9df; 56 | color: #2a4956; 57 | } 58 | 59 | #site-title, 60 | #site-title a:link, 61 | #site-title a:visited { 62 | color: #c5ccd2; 63 | } 64 | #site-title a:hover, 65 | #site-title a:focus, 66 | #site-title a:active { 67 | color: #ffe400; 68 | } 69 | #site-description { 70 | color: #93a0aa; 71 | } 72 | .featured-posts { 73 | background-color: #2e475a; 74 | -webkit-box-shadow: inset rgba(0,0,0, 0.1) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 75 | -o-box-shadow: inset rgba(0,0,0,0.1) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 76 | box-shadow: inset rgba(0,0,0,0.1) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 77 | } 78 | .featured-posts .wp-post-image { 79 | background-color: #57758c; 80 | border-color: #57758c; 81 | } 82 | 83 | legend { 84 | color: #c5ccd2; /* For IE */ 85 | } 86 | 87 | /* @Links *********/ 88 | a:link, 89 | a:visited { 90 | color: #fed325; 91 | } 92 | a:hover, 93 | a:focus, 94 | a:active { 95 | color: #ffe400; 96 | } 97 | 98 | /* @Accessible @Skip links *********/ 99 | #nav-access a:focus, 100 | #nav-access a:active { 101 | background: rgba(0,0,0,.2); 102 | border-color: #fed325; 103 | } 104 | #foot-logo .top:focus, 105 | #foot-logo .top:active { 106 | background: rgba(0,0,0,.2); 107 | border-color: #4090c4; 108 | } 109 | 110 | /* @Forms *********/ 111 | input[type=email], 112 | input[type=url], 113 | input[type=password], 114 | input[type=text], 115 | textarea { 116 | border-color: #2e404e; 117 | color: #c5ccd2; 118 | background-color: rgba(0,0,0,.1); 119 | } 120 | input[type=email]:hover, 121 | input[type=url]:hover, 122 | input[type=password]:hover, 123 | input[type=text]:hover, 124 | textarea:hover { 125 | border-color: #516e83; 126 | } 127 | input[type=email]:focus, 128 | input[type=url]:focus, 129 | input[type=password]:focus, 130 | input[type=text]:focus, 131 | textarea:focus { 132 | background-color: #516e83; 133 | color: #c5ccd2; 134 | border-color: #62869f; 135 | -moz-box-shadow: inset rgba(0,0,0,0.3) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 136 | -webkit-box-shadow: inset rgba(0,0,0,0.3) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 137 | box-shadow: inset rgba(0,0,0,0.3) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 138 | } 139 | label .note { 140 | color: #afb6bb; 141 | } 142 | 143 | /*** Date posted */ 144 | .entry-posted { 145 | opacity: .9; 146 | } 147 | .entry-posted, 148 | .entry-posted a:link, 149 | .entry-posted a:visited, 150 | .entry-posted a:hover, 151 | .entry-posted a:focus, 152 | .entry-posted a:active { 153 | color: #333; 154 | } 155 | 156 | /*** Post Author */ 157 | .entry-header .vcard img { 158 | border-color: #57758c; 159 | } 160 | 161 | /*** Comment Count */ 162 | .entry-comments a { 163 | background-image: url("icn-comment.png"); 164 | border-color: #57758c; 165 | } 166 | 167 | /*** Link buttons */ 168 | .edit a, 169 | #cancel-comment-reply a { 170 | border-color: #2e404e; 171 | background: #4d6c83; 172 | background: -moz-linear-gradient(top, #4d6c83 0, #3f596c 100%); 173 | background: -webkit-linear-gradient(top, #4d6c83 0, #3f596c 100%); 174 | background: linear-gradient(top, #4d6c83 0, #3f596c 100%); 175 | } 176 | .edit a:hover, 177 | .edit a:focus, 178 | .edit a:active, 179 | #cancel-comment-reply a:hover, 180 | #cancel-comment-reply a:focus, 181 | #cancel-comment-reply a:active { 182 | border-color: #333; 183 | } 184 | 185 | /* @Comments *********/ 186 | #comment-list .comment, 187 | #comment-list .pingback, 188 | #comment-list .trackback { 189 | background: transparent; 190 | border-color: #2e475a; 191 | -o-box-shadow: inset rgba(0,0,0,0.048) 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 192 | -ms-box-shadow: inset rgba(0,0,0,0.048) 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 193 | box-shadow: inset rgba(0,0,0,0.048) 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 194 | } 195 | #comment-list .alt { 196 | background: transparent; 197 | } 198 | #comment-list .byuser { 199 | border-color: #507189; 200 | -moz-box-shadow: inset #476379 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 201 | -webkit-box-shadow: inset #476379 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 202 | -o-box-shadow: inset #476379 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 203 | box-shadow: inset #476379 0 0 48px, rgba(0,0,0,0.1) 0 1px 0; 204 | } 205 | 206 | #comment-list .avatar { 207 | border-color: #5d83a0; 208 | } 209 | 210 | /* @Navigation ***/ 211 | #nav-primary, 212 | .nav-paging { 213 | background-color: #2e475a; 214 | -webkit-box-shadow: inset rgba(0,0,0, 0.1) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 215 | box-shadow: inset rgba(0,0,0,0.1) 0 0 4px, rgba(255,255,255, 0.1) 0 1px 0; 216 | } 217 | #nav-primary .current-menu-item a:link, 218 | #nav-primary .current-menu-item a:visited, 219 | .widget_nav_menu .current-menu-item a:link, 220 | .widget_nav_menu .current-menu-item a:visited { 221 | color: #fff; 222 | } 223 | 224 | 225 | /* @Footer ***/ 226 | #site-info { 227 | background-color: #2e475a; 228 | color: #727f8a; 229 | } 230 | #site-info a:link, 231 | #site-info a:visited { 232 | color: #4090c4; 233 | } 234 | #site-info a:hover, 235 | #site-info a:focus, 236 | #site-info a:active { 237 | color: #67a7d0; 238 | } 239 | 240 | @media only screen and (max-width: 767px) { 241 | 242 | .entry-posted, 243 | .entry-posted a:link, 244 | .entry-posted a:visited, 245 | .entry-posted a:hover, 246 | .entry-posted a:focus, 247 | .entry-posted a:active { 248 | color: #c5ccd2; 249 | } 250 | 251 | } 252 | -------------------------------------------------------------------------------- /themes/OneMozilla/sidebar.php: -------------------------------------------------------------------------------- 1 | 131 | -------------------------------------------------------------------------------- /themes/OneMozilla-PressCenter/functions.php: -------------------------------------------------------------------------------- 1 | array( 27 | 'name' => __('At a Glance'), 28 | 'singular_name' => __('At a Glance Item'), 29 | 'add_new' => __('Add New'), 30 | 'add_new_item' => __('Add New At a Glance Item'), 31 | 'edit_item' => __('Edit Item'), 32 | 'view_item' => __('View Item'), 33 | 'search_items' => __('Search At a Glance Items'), 34 | 'not_found' => __('Nothing found'), 35 | 'not_found_in_trash' => __('Nothing found in Trash'), 36 | 'parent_item_colon' => '' 37 | ), 38 | 'public' => true, 39 | 'has_archive' => true, 40 | 'rewrite' => array('slug' => 'ataglance'), 41 | 'publicly_queryable' => true, 42 | 'show_ui' => true, 43 | 'menu_position' => 5, 44 | 'show_in_nav_menus' => false, 45 | 'capability_type' => 'post', 46 | 'hierarchical' => false, 47 | 'supports' => array('title','revisions','editor','page-attributes') 48 | ) 49 | ); 50 | } 51 | add_action( 'init', 'create_type_glance' ); 52 | 53 | 54 | /********* 55 | * Set up speaker bio post type 56 | */ 57 | function create_type_bios() { 58 | register_post_type( 'bios', 59 | array( 60 | 'labels' => array( 61 | 'name' => __('Speaker Bios'), 62 | 'singular_name' => __('Bio'), 63 | 'add_new' => __('Add New'), 64 | 'add_new_item' => __('Add New Speaker Bio'), 65 | 'edit_item' => __('Edit Bio'), 66 | 'view_item' => __('View Bio'), 67 | 'search_items' => __('Search Bios'), 68 | 'not_found' => __('Nothing found'), 69 | 'not_found_in_trash' => __('Nothing found in Trash'), 70 | 'parent_item_colon' => '' 71 | ), 72 | 'public' => true, 73 | 'has_archive' => true, 74 | 'rewrite' => array('slug' => 'bios'), 75 | 'publicly_queryable' => true, 76 | 'show_ui' => true, 77 | 'menu_position' => 5, 78 | 'show_in_nav_menus' => false, 79 | 'capability_type' => 'post', 80 | 'hierarchical' => false, 81 | 'supports' => array('title','thumbnail','revisions','editor','custom-fields','page-attributes') 82 | ) 83 | ); 84 | } 85 | add_action( 'init', 'create_type_bios' ); 86 | 87 | 88 | /********* 89 | * Add custom fields to bio posts 90 | */ 91 | function bio_position(){ 92 | global $post; 93 | $custom = get_post_custom($post->ID); 94 | $bio_position = $custom["bio_position"][0]; 95 | ?> 96 |

    97 | 98 | 99 |

    100 | ID); 106 | $bio_blog_name = $custom["bio_blog_name"][0]; 107 | $bio_blog_url = $custom["bio_blog_url"][0]; 108 | $bio_twitter = $custom["bio_twitter"][0]; 109 | ?> 110 |
      111 |
    • 112 | 113 | 114 |
    • 115 |
    • 116 | 117 | 118 |
    • 119 |
    • 120 | 121 | @ 122 |
    • 123 |
    124 | ID, "bio_position", $_POST["bio_position"]); 136 | update_post_meta($post->ID, "bio_blog_name", $_POST["bio_blog_name"]); 137 | update_post_meta($post->ID, "bio_blog_url", $_POST["bio_blog_url"]); 138 | update_post_meta($post->ID, "bio_twitter", $_POST["bio_twitter"]); 139 | } 140 | add_action('save_post', 'save_bio_details'); 141 | 142 | 143 | /********* 144 | * Add position column to bio listing 145 | */ 146 | function bios_edit_columns($columns){ 147 | $columns = array( 148 | "cb" => "", 149 | "title" => "Speaker Bio", 150 | "bio_position" => "Position", 151 | ); 152 | return $columns; 153 | } 154 | function bios_custom_columns($column){ 155 | global $post; 156 | switch ($column) { 157 | case "bio_position": 158 | $custom = get_post_custom(); 159 | echo $custom["bio_position"][0]; 160 | break; 161 | } 162 | } 163 | add_action("manage_posts_custom_column", "bios_custom_columns"); 164 | add_filter("manage_edit-bio_columns", "bios_edit_columns"); 165 | 166 | 167 | /********* 168 | * Create a special role for Translators 169 | */ 170 | $trancando = array( 171 | 'read' => true, 172 | 'edit_posts' => true, 173 | 'edit_pages' => true, 174 | 'edit_published_posts' => true, 175 | 'edit_published_pages' => true, 176 | 'edit_others_posts' => true, 177 | 'edit_others_pages' => true, 178 | 'upload_files' => true 179 | ); 180 | 181 | remove_role('translator'); // remove it first to prevent duplicates, then add 182 | add_role( 'translator', 'Translator', $trancando ); 183 | 184 | 185 | /********* 186 | * Register menu locations 187 | */ 188 | if ( function_exists('register_nav_menus') ) : 189 | register_nav_menus( array( 190 | 'nav_press_center' => 'Press Center Nav', 191 | 'connect' => 'Connect With Us', 192 | 'media_tabs' => 'Media Library Tabs', 193 | 'presskit_tabs' => 'Press Kit Tabs' 194 | ) ); 195 | endif; 196 | 197 | /********* 198 | * Enable the Link Manager that existed in WordPress until version 3.5 (now hidden by default) 199 | */ 200 | add_filter( 'pre_option_link_manager_enabled', '__return_true' ); 201 | 202 | ?> 203 | -------------------------------------------------------------------------------- /themes/OneMozilla-Air/sidebar.php: -------------------------------------------------------------------------------- 1 | 5 | 188 | -------------------------------------------------------------------------------- /themes/OneMozilla-WebDev/mozweb-editor-style.css: -------------------------------------------------------------------------------- 1 | /* @Fonts *********/ 2 | /* Regular */ 3 | @font-face { 4 | font-family: "Open Sans"; 5 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 6 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 7 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 8 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | @font-face { 14 | font-family: "Open Sans"; 15 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot"); 16 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), 17 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.woff") format("woff"), 18 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.ttf") format("truetype"); 19 | font-weight: normal; 20 | font-style: italic; 21 | } 22 | 23 | @font-face { 24 | font-family: "Open Sans"; 25 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot"); 26 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), 27 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.woff") format("woff"), 28 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.ttf") format("truetype"); 29 | font-weight: bold; 30 | font-style: normal; 31 | } 32 | 33 | @font-face { 34 | font-family: "Open Sans"; 35 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot"); 36 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), 37 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), 38 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"); 39 | font-weight: bold; 40 | font-style: italic; 41 | } 42 | 43 | /* Light */ 44 | @font-face { 45 | font-family: "Open Sans Light"; 46 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 47 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 48 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 49 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 50 | font-weight: normal; 51 | font-style: normal; 52 | } 53 | 54 | @font-face { 55 | font-family: "Open Sans Light"; 56 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot"); 57 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), 58 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.woff") format("woff"), 59 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"); 60 | font-weight: normal; 61 | font-style: italic; 62 | } 63 | 64 | @font-face { 65 | font-family: "Open Sans Light"; 66 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 67 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 68 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 69 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 70 | font-weight: bold; 71 | font-style: normal; 72 | } 73 | 74 | /* @Reset defaults *********/ 75 | header, hgroup, nav, section, article, aside, footer { display: block; } 76 | html, body, form, fieldset, legend, h1, h2, h3, h4, h5, h6, dd { margin: 0; padding: 0; } 77 | p, pre, blockquote, ul, ol, dl, table { margin: 0 0 1.5em; padding: 0; } 78 | blockquote:before, blockquote:after, q:before, q:after { content: ""; } 79 | blockquote, q { quotes: "" ""; } 80 | table { border-collapse: collapse; border-spacing: 0; } 81 | fieldset { border: 0; } 82 | form ul, form ol { list-style: none; margin: 0 0 1.5em; } 83 | input, select, textarea { font-family: inherit; font-size: 100%; } 84 | .dtstart, .dtend, .published, .updated { border: 0; } 85 | img, video, object { max-width: 100%; height: auto; } 86 | 87 | html .mceContentBody { 88 | max-width: 620px; 89 | } 90 | 91 | body { 92 | font: 14px/1.5 "Open Sans", sans-serif; 93 | color: #b4b4b4; 94 | background: #252731; 95 | margin: 20px 30px; 96 | position: relative; 97 | } 98 | 99 | /* @Links */ 100 | a:link, a:visited { color: #fed325; text-decoration: none; } 101 | a:hover, a:focus, a:active { color: #ffe400; text-decoration: underline; } 102 | 103 | /* @Headings */ 104 | h1, h2, h3, h4, h5, h6 { 105 | margin: 0 0 .25em; 106 | line-height: 1.05; 107 | font-family: "Open Sans Light", sans-serif; 108 | font-weight: normal; 109 | letter-spacing: -.05em; 110 | text-shadow: 0 1px 0 rgba(255, 255, 255, .75); 111 | } 112 | 113 | h1 { 114 | font-size: 48px; 115 | font-size: 3rem; 116 | } 117 | 118 | h2 { 119 | font-size: 32px; 120 | font-size: 2rem; 121 | } 122 | 123 | h3 { 124 | font-size: 28px; 125 | font-size: 1.75rem; 126 | } 127 | 128 | h4 { 129 | font-size: 24px; 130 | font-size: 1.5rem; 131 | } 132 | 133 | h5 { 134 | font-size: 16px; 135 | font-size: 1rem; 136 | } 137 | 138 | h6 { 139 | font-size: 14px; 140 | font-size: .875rem; 141 | } 142 | 143 | /* @Content *********/ 144 | ul, ol { margin: 0 0 1.5em 24px; } 145 | li ul, li ol { margin: 0 0 0 24px; } 146 | blockquote { font-style: italic; padding: 0 24px; } 147 | blockquote em, blockquote i, blockquote cite { font-style: normal; } 148 | dt { font-style: italic; } 149 | dd { padding-left: 24px; } 150 | table { border-collapse: collapse; border-width: 1px 1px 0; border-style: solid; border-color: #373a48; } 151 | tr:nth-child(even) { background-color: rgba(200,200,200,.1); } 152 | th, td { border-bottom: 1px solid #373a48; padding: 0 6px; color: #b4b4b4; font-size: inherit; font-weight: inherit; } 153 | thead th { font-size: .857em; text-align: left; font-weight: normal; background-color: rgba(200,200,200,.2); } 154 | tbody th { text-align: left; } 155 | pre { overflow: auto; } 156 | code { font-size: .857em; } 157 | hr { 158 | clear: both; 159 | margin: 30px auto; 160 | color: transparent; 161 | background: transparent; 162 | border-top: 1px dotted rgba(0,0,0,.25); 163 | } 164 | img { background-color: #2e475a; border: 10px solid #30323f; box-shadow: 0 1px 1px rgba(0,0,0,.1); } 165 | 166 | .wp-smiley { margin: 0; border: 0; background: transparent; } 167 | .alignleft { float: left; margin: 0 24px .5em 0; } 168 | a .alignleft { margin: 0 24px .5em 0; } 169 | .alignright { float: right; margin: 0 0 .5em 24px; } 170 | a .alignright { margin: 0 0 .5em 24px; } 171 | .aligncenter { display: block; margin: 0 auto 1.5em; } 172 | 173 | .wp-caption { margin-bottom: .75em; background: #30323f; padding: 10px; } 174 | .wp-caption.aligncenter { clear: both; margin: 0 auto 1.5em; } 175 | .wp-caption img { display: block; margin: 0; max-width: 100%; border: 0; box-shadow: none; } 176 | .wp-caption.aligncenter img { margin: 0 auto; } 177 | .wp-caption .wp-caption-text { margin: .75em 5px 0; font-size: .923em; line-height: 1.2; font-style: italic; text-align: center; } 178 | 179 | ::-moz-selection { background: #fc9; color: #08090d; } 180 | ::selection { background: #fc9; color: #08090d; } 181 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sand/sand-editor-style.css: -------------------------------------------------------------------------------- 1 | /* @Fonts *********/ 2 | /* Regular */ 3 | @font-face { 4 | font-family: "Open Sans"; 5 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 6 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 7 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 8 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | @font-face { 14 | font-family: "Open Sans"; 15 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot"); 16 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), 17 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.woff") format("woff"), 18 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.ttf") format("truetype"); 19 | font-weight: normal; 20 | font-style: italic; 21 | } 22 | 23 | @font-face { 24 | font-family: "Open Sans"; 25 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot"); 26 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), 27 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.woff") format("woff"), 28 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.ttf") format("truetype"); 29 | font-weight: bold; 30 | font-style: normal; 31 | } 32 | 33 | @font-face { 34 | font-family: "Open Sans"; 35 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot"); 36 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), 37 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), 38 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"); 39 | font-weight: bold; 40 | font-style: italic; 41 | } 42 | 43 | /* Light */ 44 | @font-face { 45 | font-family: "Open Sans Light"; 46 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 47 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 48 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 49 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 50 | font-weight: normal; 51 | font-style: normal; 52 | } 53 | 54 | @font-face { 55 | font-family: "Open Sans Light"; 56 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot"); 57 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), 58 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.woff") format("woff"), 59 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"); 60 | font-weight: normal; 61 | font-style: italic; 62 | } 63 | 64 | @font-face { 65 | font-family: "Open Sans Light"; 66 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 67 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 68 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 69 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 70 | font-weight: bold; 71 | font-style: normal; 72 | } 73 | 74 | /* @Reset defaults *********/ 75 | header, hgroup, nav, section, article, aside, footer { display: block; } 76 | html, body, form, fieldset, legend, h1, h2, h3, h4, h5, h6, dd { margin: 0; padding: 0; } 77 | p, pre, blockquote, ul, ol, dl, table { margin: 0 0 1.5em; padding: 0; } 78 | blockquote:before, blockquote:after, q:before, q:after { content: ""; } 79 | blockquote, q { quotes: "" ""; } 80 | table { border-collapse: collapse; border-spacing: 0; } 81 | fieldset { border: 0; } 82 | form ul, form ol { list-style: none; margin: 0 0 1.5em; } 83 | input, select, textarea { font-family: inherit; font-size: 100%; } 84 | .dtstart, .dtend, .published, .updated { border: 0; } 85 | img, video, object { max-width: 100%; height: auto; } 86 | 87 | html .mceContentBody { 88 | max-width: 620px; 89 | } 90 | 91 | body { 92 | font: 14px/1.5 "Open Sans", sans-serif; 93 | color: #3c3c3c; 94 | background: #f2f0e9; 95 | margin: 20px 30px; 96 | position: relative; 97 | } 98 | 99 | /* @Headings */ 100 | h1, h2, h3, h4, h5, h6 { 101 | margin: 0 0 .25em; 102 | color: #484848; 103 | line-height: 1.05; 104 | font-family: "Open Sans Light", sans-serif; 105 | font-weight: normal; 106 | letter-spacing: -.05em; 107 | text-shadow: 0 1px 0 rgba(255, 255, 255, .75); 108 | } 109 | 110 | h1 { 111 | font-size: 48px; 112 | font-size: 3rem; 113 | } 114 | 115 | h2 { 116 | font-size: 32px; 117 | font-size: 2rem; 118 | } 119 | 120 | h3 { 121 | font-size: 28px; 122 | font-size: 1.75rem; 123 | } 124 | 125 | h4 { 126 | font-size: 24px; 127 | font-size: 1.5rem; 128 | } 129 | 130 | h5 { 131 | font-size: 16px; 132 | font-size: 1rem; 133 | } 134 | 135 | h6 { 136 | font-size: 14px; 137 | font-size: .875rem; 138 | } 139 | 140 | /* @Links */ 141 | a:link, a:visited { color: #af3232; text-decoration: none; } 142 | a:hover, a:focus, a:active { color: #962c2c; text-decoration: underline; } 143 | 144 | /* @Content *********/ 145 | ul, ol { margin: 0 0 1.5em 24px; } 146 | li ul, li ol { margin: 0 0 0 24px; } 147 | blockquote { font-style: italic; padding: 0 24px; } 148 | blockquote em, blockquote i, blockquote cite { font-style: normal; } 149 | dt { font-style: italic; } 150 | dd { padding-left: 24px; } 151 | table { border-collapse: collapse; border-width: 1px 1px 0; border-style: solid; border-color: #ddd; } 152 | tr:nth-child(even) { background-color: rgba(200,200,200,.1); } 153 | th, td { border-bottom: 1px solid #ddd; padding: 0 6px; color: #3c3c3c; font-size: inherit; font-weight: inherit; } 154 | thead th { font-size: .857em; text-align: left; font-weight: normal; background-color: rgba(200,200,200,.2); } 155 | tbody th { text-align: left; } 156 | pre { overflow: auto; } 157 | code { font-size: .857em; } 158 | hr { 159 | clear: both; 160 | margin: 30px auto; 161 | color: transparent; 162 | background: transparent; 163 | border-top: 1px dotted rgba(0,0,0,.25); 164 | } 165 | img { background-color: #fff; border: 10px solid #fff; box-shadow: 0 1px 1px rgba(0,0,0,.1); } 166 | 167 | .wp-smiley { margin: 0; border: 0; background: transparent; } 168 | .alignleft { float: left; margin: 0 24px .5em 0; } 169 | a .alignleft { margin: 0 24px .5em 0; } 170 | .alignright { float: right; margin: 0 0 .5em 24px; } 171 | a .alignright { margin: 0 0 .5em 24px; } 172 | .aligncenter { display: block; margin: 0 auto 1.5em; } 173 | 174 | .wp-caption { margin-bottom: .75em; background: #fff; box-shadow: 0 1px 1px rgba(0,0,0,.1); padding: 10px; } 175 | .wp-caption.aligncenter { clear: both; margin: 0 auto 1.5em; } 176 | .wp-caption img { display: block; margin: 0; border: 0; max-width: 100%; box-shadow: none; } 177 | .wp-caption.aligncenter img { margin: 0 auto; } 178 | .wp-caption .wp-caption-text, .wp-caption-dd { margin: .75em 5px 0; font-size: .923em; line-height: 1.2; font-style: italic; text-align: center; } 179 | 180 | ::-moz-selection { background: #6bd7f3; } 181 | ::selection { background: #6bd7f3; } 182 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/sky/sky-editor-style.css: -------------------------------------------------------------------------------- 1 | /* @Fonts *********/ 2 | /* Regular */ 3 | @font-face { 4 | font-family: "Open Sans"; 5 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 6 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 7 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 8 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | @font-face { 14 | font-family: "Open Sans"; 15 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot"); 16 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), 17 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.woff") format("woff"), 18 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.ttf") format("truetype"); 19 | font-weight: normal; 20 | font-style: italic; 21 | } 22 | 23 | @font-face { 24 | font-family: "Open Sans"; 25 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot"); 26 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), 27 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.woff") format("woff"), 28 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.ttf") format("truetype"); 29 | font-weight: bold; 30 | font-style: normal; 31 | } 32 | 33 | @font-face { 34 | font-family: "Open Sans"; 35 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot"); 36 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), 37 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), 38 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"); 39 | font-weight: bold; 40 | font-style: italic; 41 | } 42 | 43 | /* Light */ 44 | @font-face { 45 | font-family: "Open Sans Light"; 46 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 47 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 48 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 49 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 50 | font-weight: normal; 51 | font-style: normal; 52 | } 53 | 54 | @font-face { 55 | font-family: "Open Sans Light"; 56 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot"); 57 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), 58 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.woff") format("woff"), 59 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"); 60 | font-weight: normal; 61 | font-style: italic; 62 | } 63 | 64 | @font-face { 65 | font-family: "Open Sans Light"; 66 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 67 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 68 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 69 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 70 | font-weight: bold; 71 | font-style: normal; 72 | } 73 | 74 | /* @Reset defaults *********/ 75 | header, hgroup, nav, section, article, aside, footer { display: block; } 76 | html, body, form, fieldset, legend, h1, h2, h3, h4, h5, h6, dd { margin: 0; padding: 0; } 77 | p, pre, blockquote, ul, ol, dl, table { margin: 0 0 1.5em; padding: 0; } 78 | blockquote:before, blockquote:after, q:before, q:after { content: ""; } 79 | blockquote, q { quotes: "" ""; } 80 | table { border-collapse: collapse; border-spacing: 0; } 81 | fieldset { border: 0; } 82 | form ul, form ol { list-style: none; margin: 0 0 1.5em; } 83 | input, select, textarea { font-family: inherit; font-size: 100%; } 84 | .dtstart, .dtend, .published, .updated { border: 0; } 85 | img, video, object { max-width: 100%; height: auto; } 86 | 87 | html .mceContentBody { 88 | max-width: 620px; 89 | } 90 | 91 | body { 92 | font: 14px/1.5 "Open Sans", sans-serif; 93 | color: #3c3c3c; 94 | background: #e9eff3; 95 | margin: 20px 30px; 96 | position: relative; 97 | } 98 | 99 | /* @Headings */ 100 | h1, h2, h3, h4, h5, h6 { 101 | margin: 0 0 .25em; 102 | color: #484848; 103 | line-height: 1.05; 104 | font-family: "Open Sans Light", sans-serif; 105 | font-weight: normal; 106 | letter-spacing: -.05em; 107 | text-shadow: 0 1px 0 rgba(255, 255, 255, .75); 108 | } 109 | 110 | h1 { 111 | font-size: 48px; 112 | font-size: 3rem; 113 | } 114 | 115 | h2 { 116 | font-size: 32px; 117 | font-size: 2rem; 118 | } 119 | 120 | h3 { 121 | font-size: 28px; 122 | font-size: 1.75rem; 123 | } 124 | 125 | h4 { 126 | font-size: 24px; 127 | font-size: 1.5rem; 128 | } 129 | 130 | h5 { 131 | font-size: 16px; 132 | font-size: 1rem; 133 | } 134 | 135 | h6 { 136 | font-size: 14px; 137 | font-size: .875rem; 138 | } 139 | 140 | /* @Links */ 141 | a:link, a:visited { color: #67a7d0; text-decoration: none; } 142 | a:hover, a:focus, a:active { color: #4090c4; text-decoration: underline; } 143 | 144 | /* @Content *********/ 145 | ul, ol { margin: 0 0 1.5em 24px; } 146 | li ul, li ol { margin: 0 0 0 24px; } 147 | blockquote { font-style: italic; padding: 0 24px; } 148 | blockquote em, blockquote i, blockquote cite { font-style: normal; } 149 | dt { font-style: italic; } 150 | dd { padding-left: 24px; } 151 | table { border-collapse: collapse; border-width: 1px 1px 0; border-style: solid; border-color: #ddd; } 152 | tr:nth-child(even) { background-color: rgba(200,200,200,.1); } 153 | th, td { border-bottom: 1px solid #ddd; padding: 0 6px; color: #3c3c3c; font-size: inherit; font-weight: inherit; } 154 | thead th { font-size: .857em; text-align: left; font-weight: normal; background-color: rgba(200,200,200,.2); } 155 | tbody th { text-align: left; } 156 | pre { overflow: auto; } 157 | code { font-size: .857em; } 158 | hr { 159 | clear: both; 160 | margin: 30px auto; 161 | color: transparent; 162 | background: transparent; 163 | border-top: 1px dotted rgba(0,0,0,.25); 164 | } 165 | img { background-color: #fff; border: 10px solid #fff; box-shadow: 0 1px 1px rgba(0,0,0,.1); } 166 | 167 | .wp-smiley { margin: 0; border: 0; background: transparent; } 168 | .alignleft { float: left; margin: 0 24px .5em 0; } 169 | a .alignleft { margin: 0 24px .5em 0; } 170 | .alignright { float: right; margin: 0 0 .5em 24px; } 171 | a .alignright { margin: 0 0 .5em 24px; } 172 | .aligncenter { display: block; margin: 0 auto 1.5em; } 173 | 174 | .wp-caption { margin-bottom: .75em; background: #fff; box-shadow: 0 1px 1px rgba(0,0,0,.1); padding: 10px; } 175 | .wp-caption.aligncenter { clear: both; margin: 0 auto 1.5em; } 176 | .wp-caption img { display: block; margin: 0; border: 0; max-width: 100%; box-shadow: none; } 177 | .wp-caption.aligncenter img { margin: 0 auto; } 178 | .wp-caption .wp-caption-text, .wp-caption-dd { margin: .75em 5px 0; font-size: .923em; line-height: 1.2; font-style: italic; text-align: center; } 179 | 180 | ::-moz-selection { background: #6bd7f3; } 181 | ::selection { background: #6bd7f3; } 182 | -------------------------------------------------------------------------------- /themes/OneMozilla/colors/stone/stone-editor-style.css: -------------------------------------------------------------------------------- 1 | /* @Fonts *********/ 2 | /* Regular */ 3 | @font-face { 4 | font-family: "Open Sans"; 5 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 6 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 7 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 8 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | @font-face { 14 | font-family: "Open Sans"; 15 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot"); 16 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), 17 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.woff") format("woff"), 18 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Italic-webfont.ttf") format("truetype"); 19 | font-weight: normal; 20 | font-style: italic; 21 | } 22 | 23 | @font-face { 24 | font-family: "Open Sans"; 25 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot"); 26 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), 27 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.woff") format("woff"), 28 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Semibold-webfont.ttf") format("truetype"); 29 | font-weight: bold; 30 | font-style: normal; 31 | } 32 | 33 | @font-face { 34 | font-family: "Open Sans"; 35 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot"); 36 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), 37 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), 38 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"); 39 | font-weight: bold; 40 | font-style: italic; 41 | } 42 | 43 | /* Light */ 44 | @font-face { 45 | font-family: "Open Sans Light"; 46 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot"); 47 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), 48 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.woff") format("woff"), 49 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Light-webfont.ttf") format("truetype"); 50 | font-weight: normal; 51 | font-style: normal; 52 | } 53 | 54 | @font-face { 55 | font-family: "Open Sans Light"; 56 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot"); 57 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), 58 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.woff") format("woff"), 59 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"); 60 | font-weight: normal; 61 | font-style: italic; 62 | } 63 | 64 | @font-face { 65 | font-family: "Open Sans Light"; 66 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot"); 67 | src: url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), 68 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.woff") format("woff"), 69 | url("https://mozorg.cdn.mozilla.net/media/fonts/OpenSans-Regular-webfont.ttf") format("truetype"); 70 | font-weight: bold; 71 | font-style: normal; 72 | } 73 | 74 | 75 | /* @Reset defaults *********/ 76 | header, hgroup, nav, section, article, aside, footer { display: block; } 77 | html, body, form, fieldset, legend, h1, h2, h3, h4, h5, h6, dd { margin: 0; padding: 0; } 78 | p, pre, blockquote, ul, ol, dl, table { margin: 0 0 1.5em; padding: 0; } 79 | blockquote:before, blockquote:after, q:before, q:after { content: ""; } 80 | blockquote, q { quotes: "" ""; } 81 | table { border-collapse: collapse; border-spacing: 0; } 82 | fieldset { border: 0; } 83 | form ul, form ol { list-style: none; margin: 0 0 1.5em; } 84 | input, select, textarea { font-family: inherit; font-size: 100%; } 85 | .dtstart, .dtend, .published, .updated { border: 0; } 86 | img, video, object { max-width: 100%; height: auto; } 87 | 88 | html .mceContentBody { 89 | max-width: 620px; 90 | } 91 | 92 | body { 93 | font: 14px/1.5 "Open Sans", sans-serif; 94 | color: #3c3c3c; 95 | background: #f3f3f3; 96 | margin: 20px 30px; 97 | position: relative; 98 | } 99 | 100 | /* @Headings */ 101 | h1, h2, h3, h4, h5, h6 { 102 | margin: 0 0 .25em; 103 | color: #484848; 104 | line-height: 1.05; 105 | font-family: "Open Sans Light", sans-serif; 106 | font-weight: normal; 107 | letter-spacing: -.05em; 108 | text-shadow: 0 1px 0 rgba(255, 255, 255, .75); 109 | } 110 | 111 | h1 { 112 | font-size: 48px; 113 | font-size: 3rem; 114 | } 115 | 116 | h2 { 117 | font-size: 32px; 118 | font-size: 2rem; 119 | } 120 | 121 | h3 { 122 | font-size: 28px; 123 | font-size: 1.75rem; 124 | } 125 | 126 | h4 { 127 | font-size: 24px; 128 | font-size: 1.5rem; 129 | } 130 | 131 | h5 { 132 | font-size: 16px; 133 | font-size: 1rem; 134 | } 135 | 136 | h6 { 137 | font-size: 14px; 138 | font-size: .875rem; 139 | } 140 | 141 | /* @Links */ 142 | a:link, a:visited { color: #2983c8; text-decoration: none; } 143 | a:hover, a:focus, a:active { color: #20679e; text-decoration: underline; } 144 | 145 | /* @Content *********/ 146 | ul, ol { margin: 0 0 1.5em 24px; } 147 | li ul, li ol { margin: 0 0 0 24px; } 148 | blockquote { font-style: italic; padding: 0 24px; } 149 | blockquote em, blockquote i, blockquote cite { font-style: normal; } 150 | dt { font-style: italic; } 151 | dd { padding-left: 24px; } 152 | table { border-collapse: collapse; border-width: 1px 1px 0; border-style: solid; border-color: #ddd; } 153 | tr:nth-child(even) { background-color: rgba(200,200,200,.1); } 154 | th, td { border-bottom: 1px solid #ddd; padding: 0 6px; color: #3c3c3c; font-size: inherit; font-weight: inherit; } 155 | thead th { font-size: .857em; text-align: left; font-weight: normal; background-color: rgba(200,200,200,.2); } 156 | tbody th { text-align: left; } 157 | pre { overflow: auto; } 158 | code { font-size: .857em; } 159 | hr { 160 | clear: both; 161 | margin: 30px auto; 162 | color: transparent; 163 | background: transparent; 164 | border-top: 1px dotted rgba(0,0,0,.25); 165 | } 166 | img { background-color: #fff; border: 10px solid #fff; box-shadow: 0 1px 1px rgba(0,0,0,.1); } 167 | 168 | .wp-smiley { margin: 0; border: 0; background: transparent; } 169 | .alignleft { float: left; margin: 0 24px .5em 0; } 170 | a .alignleft { margin: 0 24px .5em 0; } 171 | .alignright { float: right; margin: 0 0 .5em 24px; } 172 | a .alignright { margin: 0 0 .5em 24px; } 173 | .aligncenter { display: block; margin: 0 auto 1.5em; } 174 | 175 | .wp-caption { margin-bottom: .75em; background: #fff; box-shadow: 0 1px 1px rgba(0,0,0,.1); padding: 10px; } 176 | .wp-caption.aligncenter { clear: both; margin: 0 auto 1.5em; } 177 | .wp-caption img { display: block; margin: 0; border: 0; max-width: 100%; box-shadow: none; } 178 | .wp-caption.aligncenter img { margin: 0 auto; } 179 | .wp-caption .wp-caption-text, .wp-caption-dd { margin: .75em 5px 0; font-size: .923em; line-height: 1.2; font-style: italic; text-align: center; } 180 | 181 | ::-moz-selection { background: #6bd7f3; } 182 | ::selection { background: #6bd7f3; } 183 | --------------------------------------------------------------------------------