44 lines
707 B
CSS
44 lines
707 B
CSS
|
|
/**
|
|
* @file
|
|
* RTL styling for Overlay child pages.
|
|
*/
|
|
|
|
html {
|
|
direction: rtl;
|
|
}
|
|
|
|
#overlay-title {
|
|
float: right;
|
|
left: auto;
|
|
}
|
|
#overlay {
|
|
padding: 0.2em;
|
|
padding-left: 26px;
|
|
}
|
|
#overlay-close-wrapper {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
#overlay-close,
|
|
#overlay-close:hover {
|
|
background: transparent url(images/close.png) no-repeat;
|
|
border-top-right-radius: 0;
|
|
|
|
-webkit-border-top-left-radius: 12px;
|
|
-webkit-border-bottom-left-radius: 12px;
|
|
-moz-border-radius-topleft: 12px;
|
|
-moz-border-radius-bottomleft: 12px;
|
|
border-top-left-radius: 12px;
|
|
border-bottom-left-radius: 12px;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
/**
|
|
* Tabs on the overlay.
|
|
*/
|
|
#overlay-tabs {
|
|
left: 20px;
|
|
right: auto;
|
|
}
|