23 lines
405 B
CSS
23 lines
405 B
CSS
|
/**
|
||
|
* @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;
|
||
|
}
|
||
|
}
|