1234567891011121314151617181920212223 |
- /**
- * @file
- * Styles for node preview page.
- */
- .node-preview-container {
- position: fixed;
- z-index: 499;
- width: 100%;
- padding: 10px;
- box-sizing: border-box;
- }
- @media only screen and (min-width: 36em) {
- .node-preview-container .form-type-select {
- margin-left: 25%; /* LTR */
- }
- [dir="rtl"] .node-preview-container .form-type-select {
- margin-right: 25%;
- margin-left: 0;
- }
- }
|