skypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
3.1 KiB
50 lines
3.1 KiB
/** @class Ext.button.Button */ |
|
// |
|
|
|
$button-small-font-size: ceil($font-size * .9) !default; //11px |
|
$button-medium-font-size: ceil($font-size * .9) !default; //11px |
|
$button-large-font-size: ceil($font-size * .9) !default; //11px |
|
|
|
$button-default-base-color: adjust-color($neutral-color, $hue: 0deg, $saturation: -55.556%, $lightness: 12.745%) !default; //F7F7F7 |
|
$button-default-base-color-over: adjust-color($base-color, $hue: -6.667deg, $saturation: 44.444%, $lightness: 10.588%) !default; //E4F3FF |
|
$button-default-base-color-focus: $button-default-base-color !default; |
|
$button-default-base-color-pressed: adjust-color($base-color, $hue: -0.725deg, $saturation: -9.556%, $lightness: -3.725%) !default; //B6CBE4 |
|
$button-default-base-color-disabled: adjust-color($base-color, $hue: 0deg, $saturation: -55.556%, $lightness: 12.745%) !default; //F7F7F7 |
|
|
|
$button-default-border-color: adjust-color($button-default-base-color, $hue: 0deg, $saturation: 0%, $lightness: -18.039%) !default; |
|
$button-default-border-color-over: adjust-color($button-default-base-color-over, $hue: 8.177deg, $saturation: -28.283%, $lightness: -12.745%) !default; |
|
$button-default-border-color-focus: $button-default-border-color-over !default; |
|
$button-default-border-color-pressed: adjust-color($button-default-base-color-pressed, $hue: 2.317deg, $saturation: 6.756%, $lightness: -5.294%) !default; |
|
$button-default-border-color-disabled: adjust-color($button-default-base-color-disabled, $hue: 0deg, $saturation: 0%, $lightness: -8.627%) !default; |
|
|
|
$button-default-body-outline-width-focus: 1px !default; |
|
|
|
$button-default-color: #333 !default; |
|
$button-default-background-color-disabled: $button-default-base-color-disabled !default; |
|
|
|
$button-toolbar-border-color: transparent !default; |
|
$button-toolbar-border-color-over: adjust-color($base-color, $hue: 0.084deg, $saturation: -9.891%, $lightness: -18.039%) !default; |
|
$button-toolbar-border-color-focus: transparent !default; |
|
$button-toolbar-border-color-pressed: adjust-color($base-color, $hue: 0.721deg, $saturation: -17.014%, $lightness: -21.765%) !default; |
|
$button-toolbar-border-color-disabled: $button-default-border-color-disabled !default; |
|
|
|
$button-toolbar-background-color: transparent !default; |
|
$button-toolbar-background-color-over: adjust-color($base-color, $hue: -5deg, $saturation: 44.444%, $lightness: 8.824%) !default; |
|
$button-toolbar-background-color-focus: $button-toolbar-background-color !default; |
|
$button-toolbar-background-color-pressed: adjust-color($base-color, $hue: -1.138deg, $saturation: -11.47%, $lightness: -2.353%) !default; |
|
$button-toolbar-background-color-disabled: transparent !default; |
|
|
|
$button-toolbar-background-gradient: 'none' !default; |
|
$button-toolbar-background-gradient-disabled: 'none' !default; |
|
|
|
$button-toolbar-color: #333 !default; |
|
$button-toolbar-color-disabled: lighten($button-toolbar-color, 35) !default; |
|
|
|
$button-opacity-disabled: 1 !default; |
|
$button-inner-opacity-disabled: .5 !default; |
|
|
|
$button-include-split-over-arrows: true !default; |
|
$button-toolbar-include-split-noline-arrows: true !default; |
|
|
|
$button-grid-cell-icon-size: 12px !default; |
|
$button-grid-cell-line-height: 12px !default;
|
|
|