| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- //
- // Buttons
- // --------------------------------------------------
- // Base styles
- // --------------------------------------------------
- .btn {
- display: inline-block;
- margin-bottom: 0; // For input.btn
- font-weight: @btn-font-weight;
- text-align: center;
- vertical-align: middle;
- cursor: pointer;
- border: 0 solid transparent;
- white-space: nowrap;
- .button-size(
- @padding-base-vertical; @padding-base-horizontal; @font-size-base;
- @line-height-base; @btn-border-radius-base
- );
- .user-select(none);
- &,
- &:active,
- &.active {
- &:focus {
- .tab-focus();
- }
- }
- &:hover,
- &:focus {
- color: @btn-default-color;
- text-decoration: none;
- }
- // &:active,
- // &.active {
- // }
- &.disabled,
- &[disabled],
- fieldset[disabled] & {
- &,
- &:hover,
- &:focus,
- &:active,
- &.active {
- cursor: not-allowed;
- opacity: 1; //needed to override deprecated styling in individual classes
- .box-shadow(none);
- }
- }
- &.disabled.btn-info,
- &.disabled.btn-default,
- &[disabled].btn-info,
- &[disabled].btn-default,
- fieldset[disabled].btn-info,
- fieldset[disabled].btn-default & {
- // style only for deprecated classes
- .opacity(0.65);
- }
- }
- // Alternate buttons
- // --------------------------------------------------
- .btn-default {
- .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
- }
- .btn-default-outline {
- .button-outline-variant(@btn-default-bg);
- }
- .btn-primary {
- .btn-borderless();
- }
- .btn-primary-on-primary-bg {
- .button-variant(@white; @ol-dark-green; @ol-dark-green);
- }
- // Success appears as green
- .btn-success {
- .btn-primary;
- }
- // Info appears as blue-green
- .btn-info {
- .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
- }
- // Warning appears as orange
- .btn-warning {
- .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
- }
- // Danger and error appear as red
- .btn-danger {
- .btn-borderless(@white, @red, @red-60);
- }
- // Danger Ghost and error appear as light red with no border
- .btn-danger-ghost {
- .btn-borderless(@red-50, @btn-danger-ghost-bg, @red-10);
- }
- // Info Ghost appear as info blue with no border
- .btn-info-ghost {
- .btn-borderless(@blue-50, @btn-info-ghost-bg, @blue-10);
- }
- // Background Ghost appear as neutral-90 (matching our text colour) with no border
- // .btn-ghost is backported from bs5
- .btn-bg-ghost,
- .btn-ghost {
- .btn-borderless(@neutral-90, @btn-info-ghost-bg, @neutral-10);
- }
- // Inline button to fit text, without link styling.
- // TODO: generic class for other styles
- .btn-info-ghost-inline {
- .btn-borderless(@blue-50, @btn-info-ghost-bg, @blue-10);
- padding: 0 !important;
- font-size: inherit !important;
- vertical-align: inherit;
- }
- // btn-secondary
- .btn-secondary {
- .btn-bordered();
- }
- .btn-secondary-info {
- .btn-secondary;
- }
- // Buttons relating to premium features have a special background
- .btn-premium {
- .premium-background;
- color: @white;
- &:hover {
- background: @blue-70;
- }
- }
- .btn-premium-secondary {
- .btn-bordered();
- .button-variant(@blue-60, @white, @blue-60);
- }
- .reset-btns {
- // reset all buttons back to their original colors
- .btn-danger {
- .btn-danger;
- }
- .btn-default {
- .btn-default;
- }
- .btn-default-outline {
- .btn-default-outline;
- }
- .btn-info {
- .btn-info;
- }
- .btn-primary {
- .btn-primary;
- }
- .btn-success {
- .btn-success;
- }
- .btn-warning {
- .btn-warning;
- }
- .btn-secondary {
- .btn-secondary;
- }
- .btn-premium {
- .btn-premium;
- }
- }
- // Link buttons
- // -------------------------
- // Make a button look and behave like a link
- .btn-link {
- color: @link-color;
- font-weight: normal;
- cursor: pointer;
- border-radius: 0;
- &,
- &:active,
- &[disabled],
- fieldset[disabled] & {
- background-color: transparent;
- .box-shadow(none);
- }
- &,
- &:hover,
- &:focus,
- &:active {
- border-color: transparent;
- }
- &:hover,
- &:focus {
- color: @link-hover-color;
- text-decoration: underline;
- background-color: transparent;
- }
- &[disabled],
- fieldset[disabled] & {
- &:hover,
- &:focus {
- color: @btn-link-disabled-color;
- text-decoration: none;
- }
- }
- &.btn-danger {
- color: @ol-red;
- &:hover,
- &:focus {
- color: @ol-dark-red;
- }
- }
- }
- .btn-inline-link {
- .btn-link();
- padding: 0;
- font-size: inherit;
- vertical-align: inherit;
- }
- // Button Sizes
- // --------------------------------------------------
- .btn-xl {
- .button-size(
- @padding-large-vertical; @padding-large-horizontal; @font-size-h2;
- @line-height-large; @btn-border-radius-large
- );
- }
- .btn-lg {
- // line-height: ensure even-numbered height of button next to large input
- .button-size(
- @padding-large-vertical; @padding-large-horizontal; @font-size-large;
- @line-height-large; @btn-border-radius-large
- );
- }
- .btn-sm {
- // line-height: ensure proper height of button next to small input
- .button-size(
- @padding-small-vertical; @padding-small-horizontal; @font-size-small;
- @line-height-small; @btn-border-radius-small
- );
- }
- .btn-xs {
- .button-size(
- @padding-xs-vertical; @padding-xs-horizontal; @font-size-small;
- @line-height-small; @btn-border-radius-small
- );
- }
- // Block button
- // --------------------------------------------------
- .btn-block {
- display: block;
- width: 100%;
- padding-left: 0;
- padding-right: 0;
- }
- // Vertically space out multiple block buttons
- .btn-block + .btn-block {
- margin-top: 5px;
- }
- // Specificity overrides
- input[type='submit'],
- input[type='reset'],
- input[type='button'] {
- &.btn-block {
- width: 100%;
- }
- }
- .login-btn {
- .btn;
- .btn-secondary;
- position: relative;
- padding-left: 20px;
- padding-right: 0;
- }
- .login-btn-dynamic-text {
- white-space: normal;
- }
|