super-productivity/app-src/scripts/inline-markdown/_inline-markdown-d.scss
2018-03-16 16:31:44 +01:00

56 lines
No EOL
882 B
SCSS

inline-markdown {
display: block;
}
.markdown-wrapper {
min-height: 60px;
max-height: 600px;
margin-bottom: 20px;
display: block;
box-sizing: border-box;
border: none;
resize: both;
overflow: auto;
position: relative;
cursor: text;
transition: min-height .2s $ease-in-out-quint;
&.is-editing {
min-height: 160px;
}
.resize-to-fit {
position: absolute;
right: 14px;
top: 0;
cursor: pointer;
}
}
.markdown-unparsed,
.markdown-parsed {
padding: 10px 14px;
margin: 0;
width: 100%;
word-wrap: break-word;
display: block;
border: none;
resize: none;
overflow: auto;
height: 100%;
box-sizing: border-box;
background: #fbefdd;
@include dark-theme {
background-color: $dark-theme-bg;
color: #eeeeee;
}
}
.markdown-parsed {
p:first-child {
margin-top: 0;
}
ul {
padding-left: 18px;
}
}