23 lines
386 B
CSS
23 lines
386 B
CSS
/**
|
|
* @file
|
|
* Generic base styles for shortcut module.
|
|
*/
|
|
|
|
/**
|
|
* Add/remove links.
|
|
*/
|
|
.add-or-remove-shortcuts .icon {
|
|
display: block;
|
|
float: left; /* LTR */
|
|
margin-top: 5px;
|
|
}
|
|
.add-or-remove-shortcuts .text {
|
|
display: none;
|
|
float: left; /* LTR */
|
|
padding-top: 2px;
|
|
}
|
|
.add-or-remove-shortcuts a:focus .text,
|
|
.add-or-remove-shortcuts a:hover .text {
|
|
display: block;
|
|
}
|