| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- @import 'editor-overlay';
- body:not(.on-edit) {
- // hide #page-form
- #page-form {
- display: none;
- }
- }
- body.on-edit {
- %expand-by-flex {
- display: flex;
- flex-direction: column;
- flex: 1;
- }
- // calculate margin
- $header-plus-footer: 2px // .main padding-top
- + 42px // .nav height
- + 1px // .page-editor-footer border-top
- + 40px; // .page-editor-footer min-height
- $editor-margin: $header-plus-footer + 26px; // .btn-open-dropzone height
- // hide unnecessary elements
- .navbar.navbar-static-top,
- .row.row-alerts,
- .row.page-list,
- .row.page-comments-row,
- .row.page-attachments-row,
- .row.not-found-message-row,
- .users-meta,
- .user-page-content-container,
- .portal-form-button,
- .alert-info.alert-moved,
- .alert-info.alert-unlinked,
- .like-button, .bookmark-link, .btn-edit,
- .authors,
- footer {
- display: none !important;
- }
- // hide unnecessary elements for growi layout
- .revision-toc-container {
- display: none;
- }
- // hide unnecessary elements for crowi layout
- #toggle-sidebar,
- .crowi-sidebar {
- display: none;
- }
- // show only either Edit button or HackMD button
- &.hackmd .nav-tab-edit {
- display: none;
- }
- &:not(.hackmd) .nav-tab-hackmd {
- display: none;
- }
- /*****************
- * Expand Editor
- *****************/
- .container-fluid {
- padding-bottom: 0;
- }
- .main {
- width: 100%;
- height: 100vh;
- margin-top: 0px !important;
- padding-top: 2px;
- padding-left: 0;
- padding-right: 0;
- // for growi layout
- > .row {
- margin: 0;
- > .col-lg-10, > .col-md-9 {
- width: 100%;
- padding: 0;
- }
- }
- &,
- .content-main,
- .tab-content {
- @extend %expand-by-flex;
- }
- }
- .row.bg-title {
- $left-margin: $nav-main-left-tab-width * 2 + 25px; // width of .nav-main-left-tab x 2 + some margin
- $right-margin: 128px + 94px + 46px; // width of all of nav-main-right-tab
- position: absolute;
- z-index: 1;
- left: $left-margin;
- width: calc(100% - #{$left-margin} - #{$right-margin});
- // for crowi layout
- > .col-md-9, .col-xs-12 {
- padding: 0;
- width: 100%;
- }
- background: none;
- .header-wrap {
- overflow-x: hidden;
- }
- h1#revision-path {
- @include variable-font-size(20px);
- line-height: 1em;
- // nowrap even if the path is too long
- .d-flex {
- flex-wrap: nowrap;
- }
- .path-segment {
- white-space: nowrap;
- }
- }
- // hide if screen size is less than tablet
- @media (max-width: $screen-sm) {
- display: none;
- }
- }
- .page-editor-footer {
- width: 100%;
- margin: 0;
- padding: 3px;
- min-height: 40px;
- border-top: solid 1px transparent;
- .btn-submit {
- width: 100px;
- }
- }
- &.builtin-editor .tab-pane#edit {
- @extend %expand-by-flex;
- #page-editor {
- // right(preview)
- &,
- .row,
- .page-editor-preview-container,
- .page-editor-preview-body {
- min-height: calc(100vh - #{$header-plus-footer}); // for IE11
- height: calc(100vh - #{$header-plus-footer});
- }
- // left(editor)
- .page-editor-editor-container {
- min-height: calc(100vh - #{$header-plus-footer}); // for IE11
- height: calc(100vh - #{$header-plus-footer});
- .react-codemirror2, .CodeMirror, .CodeMirror-scroll,
- .textarea-editor {
- height: calc(100vh - #{$editor-margin});
- }
- }
- }
- /*****************
- * Editor styles
- *****************/
- .page-editor-editor-container {
- border-right: 1px solid transparent;
- padding-right: 0;
- // override CodeMirror styles
- .CodeMirror {
- .cm-matchhighlight {
- background-color: cyan;
- }
- .CodeMirror-selection-highlight-scrollbar {
- background-color: darkcyan;
- }
- }
- // add icon on cursor
- .autoformat-markdown-table-activated .CodeMirror-cursor {
- &:after {
- font-family: 'FontAwesome';
- content: '\f0ce';
- }
- }
- .textarea-editor {
- border: none;
- font-family: monospace;
- }
- }
- .page-editor-preview-container {
- }
- .page-editor-preview-body {
- padding-top: 18px;
- padding-right: 15px;
- overflow-y: scroll;
- }
- #page-editor-options-selector {
- label {
- margin-right: 0.5em;
- }
- // configuration dropdown
- .configuration-dropdown {
- .icon-container {
- display: inline-block;
- width: 20px;
- }
- .dropdown-menu > li > a {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .menuitem-label {
- flex: 1;
- margin-right: 10px;
- }
- }
- }
- @media (max-width: $screen-xs-max) { // {{{ less than smartphone size
- display: none;
- }
- }
- #page-grant-selector {
- .btn-group {
- min-width: 150px;
- }
- }
- } // .builtin-editor .tab-pane#edit
- &.hackmd {
- #page-editor-options-selector {
- display: none;
- }
- .tab-pane#hackmd {
- @extend %expand-by-flex;
- #hackmd-editor,
- .hackmd-nopage, #iframe-hackmd {
- width: 100vw;
- min-height: calc(100vh - #{$header-plus-footer}); // for IE11
- height: calc(100vh - #{$header-plus-footer});
- border: none;
- }
- }
- }
- }
- /*
- * for creating portal
- */
- .nav-tabs-create-portal {
- display: none;
- }
- .on-edit .nav-tabs-create-portal {
- display: block;
- }
- // overwrite .CodeMirror-hints
- .CodeMirror-hints {
- // FIXME: required because .content-main.on-edit has 'z-index:1050'
- // z-index: 1060 !important;
- max-height: 30em !important;
- .CodeMirror-hint.crowi-emoji-autocomplete {
- font-family: $font-family-monospace-not-strictly;
- line-height: 1.6em;
- .img-container {
- display: inline-block;
- width: 30px;
- }
- }
- // active line
- .CodeMirror-hint-active.crowi-emoji-autocomplete {
- .img-container {
- font-size: 15px; // adjust to .wiki
- padding-top: 0.3em;
- padding-bottom: 0.3em;
- }
- }
- }
- // overwrite .CodeMirror-placeholder
- .CodeMirror pre.CodeMirror-placeholder {
- color: $text-muted;
- }
|