| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- // import crowi variable
- @import 'utilities';
- .crowi.main-container .main .content-main.on-edit { // {{{ Edit Form of Page
- padding: 0;
- position: fixed;
- z-index: 1050;
- background: #fff;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- .nav {
- margin-top: 8px;
- height: 40px;
- .dropdown-menu {
- z-index: 1060;
- }
- }
- .tab-content {
- top: 48px;
- bottom: 58px;
- position: absolute;
- z-index: 1051;
- left: 0;
- right: 0;
- margin-top: 4px;
- .alert-info {
- display: none;
- }
- // layout (height: 100%)
- .edit-form {
- height: 100%;
- > form {
- height: 100%;
- > #page-editor {
- height: 100%;
- .row, .col-md-6, .col-sm-12,
- .react-codemirror2, .CodeMirror, .CodeMirror-scroll,
- .page-editor-preview-body
- {
- height: 100%;
- }
- }
- }
- }
- }
- .page-form-setting {
- .extended-setting {
- label {
- margin-bottom: 0;
- }
- }
- }
- .page-editor-editor-container {
- padding-right: 0;
- border-right: 1px solid #ccc;
- // override CodeMirror styles
- .CodeMirror pre {
- font-family: $font-family-monospace-not-strictly;
- }
- }
- .page-editor-preview-container {
- }
- .page-editor-preview-body {
- padding-top: 18px;
- padding-right: 15px;
- overflow-y: scroll;
- }
- .form-group.form-submit-group {
- position: fixed;
- z-index: 1054;
- bottom: 0;
- width: 100%;
- left: 0;
- padding: 8px;
- min-height: 50px;
- background: rgba(255,255,255,.8);
- border-top: solid 1px #ccc;
- margin-bottom: 0;
- }
- } // }}}
- .crowi.main-container .main .page-list.content-main { // {{{ Edit Form of Page List
- .close-button {
- display: none;
- }
- }
- .crowi.main-container .main .page-list.content-main.on-edit { // {{{ Edit Form of Page List
- .close-button {
- display: block;
- }
- .page-list-container {
- display: none;
- }
- .portal-form-header {
- height: 16px;
- padding: 8px;
- border-bottom: solid 1px #ccc;
- }
- } // }}}
- @media (max-width: $screen-sm-max) { // {{{ less than tablet size
- .content-main.on-edit {
- .form-group.form-submit-group {
- select.form-control {
- display: inline-block;
- max-width: 50%;
- }
- }
- }
- } // }}}
- @media (max-width: $screen-xs-max) { // {{{ less than smartphone size
- #edit-form-submit {
- float: right;
- }
- } // }}}
|