37 lines
656 B
CSS
37 lines
656 B
CSS
/**
|
|
* @file plugins/generic/tinymce/styles/content.css
|
|
*
|
|
* Copyright (c) 2014-2023 Simon Fraser University
|
|
* Copyright (c) 2003-2023 John Willinsky
|
|
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
|
*
|
|
* @brief CSS for a one-line TinyMCE content editor (FieldRichText)
|
|
*/
|
|
|
|
@import "content.css";
|
|
|
|
html {
|
|
padding: 0;
|
|
}
|
|
|
|
.mce-content-body {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
sup {
|
|
position: relative;
|
|
top: -0.75em;
|
|
vertical-align: top;
|
|
font-size: 0.6em;
|
|
}
|
|
|
|
sub {
|
|
position: relative;
|
|
bottom: -0.75em;
|
|
vertical-align: bottom;
|
|
font-size: 0.6em;
|
|
} |