a.Rev.ContentLink { color: $primary; font-weight: bold; text-decoration: none; } .IconLink { font-size: $rev-content-base-size * 1.2; font-weight: bold; text-transform: uppercase; } .Button { background: $button-background; border: none; border-radius: $global-radius; color: $button-color; display: inline-block; font-size: $rev-content-base-size * 1.4; font-weight: bold; line-height: 1.25em; outline: 0; padding: $global-padding; box-shadow: none; text-decoration: none; text-transform: uppercase; &:hover { background: lighten($button-background, 10%); cursor: pointer; } &:active, &:focus { background: darken($button-background, 10%); cursor: pointer; } &.isDisabled { background: $alto; color: $silver; &:hover { cursor: default; } } } .Button-action { background: $button-action-background; color: $button-action-color; &:hover { background: lighten($button-action-background, 10%); cursor: pointer; } &:active, &:focus { background: darken($button-action-background, 10%); cursor: pointer; } } .Button-cancel { background: $black; color: $alto; } button.Button { padding-bottom:.8rem; } .Button-small { @extend .Button; padding: $global-padding-small; } button.Button-small { padding-bottom: .3rem; } .Button-large { @extend .Button; padding: $global-padding-large; } button.Button-large { padding-bottom: 1.8rem; } .Rollback { float: right; background: transparent; border: none; border-radius: none; color: $black; font-size: $rev-content-base-size * 1.2; font-weight: bold; margin-bottom: $global-padding; outline: 0; position: relative; box-shadow: none; text-transform: uppercase; &:hover, &:active, &:focus, &.selected { background: transparent; color: $primary; cursor: pointer; } } .ButtonBar { margin-bottom: 1rem; } .EditModeButton { @extend .Button; position: fixed; right: 1rem; bottom: 1rem; } .EditorButton { @extend .Button; &:hover { background: darken($button-background, 10%); cursor: pointer; } margin-right: 4px; } .EditorButton--bold { font-weight: bold; } .EditorButton--italic { font-style: italic; } .EditorButton--underline { text-decoration: underline; } .EditorButton--link { text-decoration: underline; color: $link; }