mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
123 lines
No EOL
2.4 KiB
Text
123 lines
No EOL
2.4 KiB
Text
@charset "UTF-8";
|
|
/* Content Default Styles */
|
|
.word_break(@wb) when (@wb = normal), (@wb = keep-all), (@wb = break-all) {
|
|
word-break: @wb;
|
|
word-wrap: break-word;
|
|
}
|
|
.word_break(@wb) when (@wb = none) {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.cont_font(@ft) when (@ft = none) {
|
|
}
|
|
.cont_font(@ft) when not (@ft = none) {
|
|
font-family: @content_font;
|
|
}
|
|
|
|
.cont_fontsize(@fs) when (@fs = none) {
|
|
}
|
|
.cont_fontsize(@fs) when not (@fs = none) {
|
|
font-size: @content_font_size;
|
|
}
|
|
|
|
.cont_lineheight(@lh) when (@lh = none) {
|
|
}
|
|
.cont_lineheight(@lh) when not (@lh = none) {
|
|
line-height: @content_line_height;
|
|
}
|
|
|
|
.cont_linespacing(@ls) when (@ls = none) {
|
|
}
|
|
.cont_linespacing(@ls) when not (@ls = none) {
|
|
margin: 0 0 @content_paragraph_spacing 0;
|
|
}
|
|
|
|
.light_dark(@cs) when (@cs = moono-dark) {
|
|
background-color: #494949;
|
|
color: #fff;
|
|
}
|
|
.light_dark(@cs) when not (@cs = moono-dark) {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
|
|
.light_dark_top(@cs) when (@cs = moono-dark) {
|
|
border-bottom-color: #1b1b1b;
|
|
}
|
|
.light_dark_top(@cs) when not (@cs = moono-dark) {
|
|
}
|
|
|
|
html {
|
|
&.cke_panel_container, &.cke_panel_container body {
|
|
.light_dark(default);
|
|
}
|
|
body.cke_editable {
|
|
min-height: 100vh;
|
|
padding: 10px;
|
|
.light_dark(@colorset);
|
|
}
|
|
}
|
|
|
|
p.editor_autosaved_message.autosave_message {
|
|
display:none;
|
|
background: #e0e0e0;
|
|
padding: 10px;
|
|
margin:0;
|
|
line-height:1.2;
|
|
}
|
|
.cke_reset {
|
|
span {
|
|
&.cke_top {
|
|
.light_dark_top(@colorset);
|
|
a {
|
|
&:hover, &:focus {
|
|
transition: none;
|
|
}
|
|
}
|
|
}
|
|
&.cke_combo__fontsize {
|
|
.cke_combo_button {
|
|
width: 64px;
|
|
}
|
|
.cke_combo_text {
|
|
width: 30px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.xe_content.editable, .rhymix_content.editable {
|
|
.cont_font(@content_font);
|
|
.cont_fontsize(@content_font_size);
|
|
.cont_lineheight(@content_line_height);
|
|
.word_break(@content_word_break);
|
|
p {
|
|
.cont_linespacing(@content_paragraph_spacing);
|
|
.cont_lineheight(@content_line_height);
|
|
span {
|
|
.cont_lineheight(@content_line_height);
|
|
}
|
|
}
|
|
img, video {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
blockquote {
|
|
padding: 2px 0;
|
|
border-style: solid;
|
|
border-color: #ccc;
|
|
border-width: 0;
|
|
border-left-width: 5px;
|
|
padding-left: 20px;
|
|
padding-right: 8px;
|
|
|
|
&:lang(ar), &:lang(arc), &:lang(dv), &:lang(ha), &:lang(he), &:lang(khw), &:lang(ks), &:lang(ku), &:lang(ps), &:lang(fa), &:lang(ur), &:lang(yi) {
|
|
border-left-width: 0px;
|
|
border-right-width: 5px;
|
|
padding-left: 8px;
|
|
padding-right: 20px;
|
|
|
|
}
|
|
}
|
|
} |