2012-03-27 06:33:36 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Styling for the shortcut module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toolbar.
|
|
|
|
*/
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
.icon-shortcut:before {
|
|
|
|
background-image: url("images/shortcut.png");
|
2012-03-27 06:33:36 +00:00
|
|
|
}
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
.icon-shortcut:active:before,
|
|
|
|
.icon-shortcut.active:before {
|
|
|
|
background-image: url("images/shortcut-active.png");
|
2012-03-27 06:33:36 +00:00
|
|
|
}
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
.toolbar .tray.horizontal.shortcuts .menu {
|
|
|
|
float: left;
|
2012-03-27 06:33:36 +00:00
|
|
|
}
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
.edit-shortcuts {
|
|
|
|
display: block;
|
2012-03-27 06:33:36 +00:00
|
|
|
}
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
.toolbar .vertical .edit-shortcuts {
|
|
|
|
text-align: right;
|
|
|
|
padding: 1em;
|
2012-03-27 06:33:36 +00:00
|
|
|
}
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
.toolbar .horizontal .edit-shortcuts {
|
|
|
|
float: left; /* LTR */
|
2012-03-27 06:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add/remove links.
|
|
|
|
*/
|
|
|
|
.add-or-remove-shortcuts .icon {
|
|
|
|
background: transparent url(shortcut.png) no-repeat;
|
|
|
|
height: 12px;
|
|
|
|
margin-left: 8px; /* LTR */
|
|
|
|
overflow: hidden;
|
|
|
|
text-indent: 12px;
|
|
|
|
width: 12px;
|
|
|
|
}
|
|
|
|
.add-shortcut a:focus .icon,
|
|
|
|
.add-shortcut a:hover .icon {
|
|
|
|
background-position: 0 -12px; /* LTR */
|
|
|
|
}
|
|
|
|
.remove-shortcut .icon {
|
2013-03-09 22:40:09 +00:00
|
|
|
margin-top: 4px;
|
2012-03-27 06:33:36 +00:00
|
|
|
background-position: -12px 0;
|
|
|
|
}
|
|
|
|
.remove-shortcut a:focus .icon,
|
|
|
|
.remove-shortcut a:hover .icon {
|
|
|
|
background-position: -12px -12px; /* LTR */
|
|
|
|
}
|