mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-27 09:29:23 +08:00
improved : font sizes set in relative em instead of px unit added : user font family to the wordpress editor improved : the font list is now defined in one place in init-core.php added : website font-size option in the customizer
44 lines
654 B
CSS
44 lines
654 B
CSS
/*
|
|
Theme Name: Hueman
|
|
Description: Used to style the TinyMCE editor.
|
|
*/
|
|
body{
|
|
background: #FAFAFA!important;
|
|
}
|
|
|
|
/**
|
|
* RTL
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
|
|
html .mceContentBody.rtl {
|
|
direction: rtl;
|
|
unicode-bidi: embed;
|
|
}
|
|
|
|
.rtl ol,
|
|
.rtl ul {
|
|
padding: 0 40px 0 0;
|
|
}
|
|
|
|
.rtl .wp-caption,
|
|
.rtl tr th {
|
|
text-align: right;
|
|
}
|
|
|
|
.rtl td {
|
|
padding: 6px 0 6px 10px;
|
|
text-align: right;
|
|
}
|
|
|
|
.rtl blockquote blockquote {
|
|
margin-left: 0;
|
|
margin-right: 24px;
|
|
}
|
|
|
|
.rtl.post-format-audio:before,
|
|
.rtl.post-format-status:before,
|
|
.rtl.post-format-status > p:first-child:before {
|
|
background: none;
|
|
content: none;
|
|
}
|