31 lines
365 B
CSS
31 lines
365 B
CSS
/**
|
|
* @file
|
|
* RTL styling for contextual module.
|
|
*/
|
|
|
|
/**
|
|
* Contextual links wrappers.
|
|
*/
|
|
.contextual {
|
|
left: 0;
|
|
right: auto;
|
|
}
|
|
|
|
/**
|
|
* Contextual trigger.
|
|
*/
|
|
.contextual .trigger {
|
|
float: left;
|
|
right: 0;
|
|
left: 2px;
|
|
}
|
|
|
|
/**
|
|
* Contextual links.
|
|
*/
|
|
.contextual .contextual-links {
|
|
border-radius: 0 4px 4px 4px;
|
|
float: left;
|
|
text-align: right;
|
|
}
|