| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- */
- /* https://github.com/ckeditor/ckeditor5/issues/5598. */
- @media only screen and (min-width: 960px) and (max-width: 1024px ) {
- .main .main__content {
- /* Reduce content width including side navigation (340px). */
- max-width: calc( 100% - 340px );
- min-width: auto;
- }
- }
- /* https://github.com/ckeditor/ckeditor5/issues/5598. */
- @media only screen and (max-width: 1360px) {
- .main .main__content-inner {
- max-width: 960px;
- }
- }
- /* https://github.com/ckeditor/ckeditor5/issues/5598. */
- @media only screen and (min-width: 1360px) {
- .main .main__content--no-toc .main__content-inner {
- /* Because there is `width: auto`, we need to set something minimal. */
- min-width: 860px;
- }
- }
- /* https://github.com/ckeditor/ckeditor5/issues/1349 */
- .main .navigation-hint_mobile {
- display: none;
- }
- /* https://github.com/ckeditor/ckeditor5/issues/1349 */
- @media only screen and (max-width: 960px) {
- .main .navigation-hint_desktop {
- display: none;
- }
- .main .navigation-hint_mobile {
- display: inline;
- }
- }
|