Added support of print and unselectable styles, updated vimeo and youtube parsing method for this

This commit is contained in:
Wu Cheng-Han
2015-09-25 18:55:56 +08:00
parent 2493c8f986
commit bb8a0da71f
6 changed files with 58 additions and 26 deletions

View File

@@ -209,13 +209,6 @@ div[contenteditable]:empty:not(:focus):before{
.CodeMirror-scrollbar-filler {
background: inherit;
}
.unselectable {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
}
.btn-file {
position: relative;
@@ -295,4 +288,12 @@ div[contenteditable]:empty:not(:focus):before{
overflow: hidden;
text-overflow: ellipsis;
}
@media print {
body {
padding-top: 0 !important;
}
.CodeMirror {
height: auto !important;
}
}