Skip to content

Instantly share code, notes, and snippets.

@dvdsmpsn
Last active December 23, 2015 08:19
Show Gist options
  • Save dvdsmpsn/6606555 to your computer and use it in GitHub Desktop.
Save dvdsmpsn/6606555 to your computer and use it in GitHub Desktop.
AUI Button Container - Confluence user macro
## aui-button-container (wrapper)
##
## Macro title: AUI Button Container
## Macro has a body: Y
## Output: HTML
##
## Developed by: David Simpson <[email protected]>
## Date created: 2013-09-18
## Installed by: Your Name
##
## For grouping buttons created by the aui-button user macro.
##
## @noparams
<div class="aui-buttons">$body</div>
## Note: Need to correct for the last button in the container missing rounded corners...
<style>
.aui-buttons span:last-child .aui-button {
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment