42 lines
767 B
CSS
42 lines
767 B
CSS
|
|
/**
|
|
* @file
|
|
* RTL styling for the shortcut module.
|
|
*/
|
|
|
|
/**
|
|
* Add/remove links.
|
|
*/
|
|
.add-or-remove-shortcuts .icon {
|
|
margin-left: 0;
|
|
margin-right: 8px;
|
|
}
|
|
.add-shortcut a:focus .icon,
|
|
.add-shortcut a:hover .icon {
|
|
background-position: 0 -24px;
|
|
}
|
|
.remove-shortcut a:focus .icon,
|
|
.remove-shortcut a:hover .icon {
|
|
background-position: -12px -24px;
|
|
}
|
|
.add-or-remove-shortcuts .text {
|
|
padding: 0 10px 0 6px;
|
|
}
|
|
.add-or-remove-shortcuts a:focus .text,
|
|
.add-or-remove-shortcuts a:hover .text {
|
|
border-radius: 5px 0 0 5px;
|
|
}
|
|
|
|
/**
|
|
* Toolbar.
|
|
*/
|
|
.toolbar-js .horizontal #edit-shortcuts {
|
|
border-left: 0 none;
|
|
border-right: 1px solid #d9d9d9;
|
|
float: right;
|
|
margin-left: 0;
|
|
margin-right: 0.3333em;
|
|
padding-left: 0.3333em;
|
|
padding-right: 0.6667em;
|
|
}
|