mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
dda45e4796
* feat: support narrow theme mode * chore: rename narrow to compact * chore: height part * chore: preview compact mode * chore: to make site corrected * chore: preview site * docs: 📖 document compact theme usage * docs: tweak theme doc * docs: 📖 Add description about double css bundle size * chore: preview * chore: for preview * chore: adjust pagination * chore: compact mode done! * chore: remove useless todo * chore: fix review bug * chore: fix review bug * chore: fix card margin * chore: fix review bug * chore: fix review bug * chore: improve i18n and transition * Update site/theme/static/common.less Co-Authored-By: 偏右 <afc163@gmail.com> * chore: fix button size and description padding * chore: update snapshots * chore: add compact css bundlesize limit * chore: compact dist support Co-authored-by: afc163 <afc163@gmail.com>
173 lines
4.0 KiB
Plaintext
173 lines
4.0 KiB
Plaintext
@import './default.less';
|
|
|
|
@mode: compact;
|
|
|
|
// default paddings
|
|
@default-padding-lg: 24px; // containers
|
|
@default-padding-md: 16px; // small containers and buttons
|
|
@default-padding-sm: 12px; // Form controls and items
|
|
@default-padding-xs: 8px; // small items
|
|
@default-padding-xss: 4px; // more small
|
|
|
|
// vertical paddings
|
|
@padding-lg: 16px; // containers
|
|
@padding-md: 8px; // small containers and buttons
|
|
@padding-sm: 8px; // Form controls and items
|
|
@padding-xs: 4px; // small items
|
|
@padding-xss: 0px; // more small
|
|
|
|
// vertical padding for all form controls
|
|
@control-padding-horizontal: @padding-sm;
|
|
@control-padding-horizontal-sm: @default-padding-xs;
|
|
|
|
// vertical margins
|
|
@margin-lg: 16px; // containers
|
|
@margin-md: 8px; // small containers and buttons
|
|
@margin-sm: 8px; // Form controls and items
|
|
@margin-xs: 4px; // small items
|
|
@margin-xss: 0px; // more small
|
|
|
|
// height rules
|
|
@height-base: 28px;
|
|
@height-lg: 32px;
|
|
@height-sm: 22px;
|
|
|
|
// Button
|
|
// ---
|
|
@btn-padding-horizontal-base: @default-padding-sm - 1px;
|
|
@btn-padding-horizontal-lg: @btn-padding-horizontal-base;
|
|
@btn-padding-horizontal-sm: @default-padding-xs - 1px;
|
|
@btn-square-only-icon-size: 14px;
|
|
@btn-square-only-icon-size-sm: 14px;
|
|
@btn-square-only-icon-size-lg: 16px;
|
|
|
|
//Dropdown
|
|
@dropdown-line-height: 18px;
|
|
|
|
// Form
|
|
// ---
|
|
@form-item-margin-bottom: 16px;
|
|
|
|
// Input
|
|
// ---
|
|
@input-padding-vertical-base: max(
|
|
round((@input-height-base - @font-size-base * @line-height-base) / 2 * 10) / 10 -
|
|
@border-width-base,
|
|
2px
|
|
);
|
|
@input-padding-horizontal-lg: 11px;
|
|
|
|
// PageHeader
|
|
// ---
|
|
@page-header-padding: 16px;
|
|
@page-header-padding-vertical: 8px;
|
|
|
|
// Pagination
|
|
// ---
|
|
@pagination-mini-options-size-changer-top: 1px;
|
|
|
|
// Cascader
|
|
// ----
|
|
@cascader-dropdown-line-height: @dropdown-line-height;
|
|
|
|
// Select
|
|
// ---
|
|
@select-dropdown-height: @height-base;
|
|
@select-single-item-height-lg: 32px;
|
|
@select-multiple-item-height: @input-height-base - max(@input-padding-vertical-base, 4) * 2; // Normal 24px
|
|
@select-multiple-item-height-lg: 24px;
|
|
@select-multiple-item-spacing-half: 3px;
|
|
|
|
// Tree
|
|
// ---
|
|
@tree-title-height: 20px;
|
|
|
|
// Transfer
|
|
// ---
|
|
@transfer-item-padding-vertical: 3px;
|
|
@transfer-list-search-icon-top: 8px;
|
|
|
|
// Comment
|
|
// ---
|
|
@comment-actions-margin-bottom: 0px;
|
|
@comment-actions-margin-top: @margin-xs;
|
|
@comment-content-detail-p-margin-bottom: 0px;
|
|
|
|
// Steps
|
|
// ---
|
|
@steps-icon-size: 24px;
|
|
@steps-icon-custom-size: 20px;
|
|
@steps-icon-custom-font-size: 20px;
|
|
@steps-icon-custom-top: 2px;
|
|
@steps-icon-margin: 2px 8px 2px 0;
|
|
@steps-icon-font-size: @font-size-base;
|
|
@steps-dot-top: 4px;
|
|
@steps-icon-top: 0px;
|
|
|
|
// Collapse
|
|
// ---
|
|
@collapse-header-padding-extra: 32px;
|
|
|
|
// List
|
|
// ---
|
|
@list-item-meta-description-font-size: @font-size-sm;
|
|
@list-item-padding-sm: 4px 12px;
|
|
@list-item-padding-lg: 12px 16px;
|
|
|
|
// Drawer
|
|
// ---
|
|
@drawer-header-padding: 11px @padding-lg;
|
|
@drawer-footer-padding-vertical: @padding-sm;
|
|
@drawer-header-close-size: 44px;
|
|
|
|
// Modal
|
|
// --
|
|
@modal-header-padding: 11px @padding-lg;
|
|
@modal-footer-padding-vertical: @padding-sm;
|
|
@modal-header-close-size: 44px;
|
|
@modal-confirm-body-padding: 24px 24px 16px;
|
|
|
|
// popover
|
|
// --
|
|
@popover-min-height: 28px;
|
|
@popover-padding-horizontal: @default-padding-sm;
|
|
|
|
// Card
|
|
// ---
|
|
@card-padding-base: 16px;
|
|
@card-head-height: 36px;
|
|
@card-head-font-size: @card-head-font-size-sm;
|
|
@card-head-padding: 8px;
|
|
@card-padding-base: 12px;
|
|
@card-padding-base-sm: @card-padding-base;
|
|
@card-head-height-sm: 30px;
|
|
@card-head-padding-sm: 4px;
|
|
@card-actions-li-margin: 4px 0;
|
|
@card-head-tabs-margin-bottom: -9px;
|
|
|
|
// Table
|
|
// ---
|
|
@table-padding-vertical: 12px;
|
|
@table-padding-horizontal: 8px;
|
|
@table-padding-vertical-md: 8px;
|
|
@table-padding-horizontal-md: 8px;
|
|
@table-padding-vertical-sm: 4px;
|
|
@table-padding-horizontal-sm: 4px;
|
|
|
|
// Statistic
|
|
// ---
|
|
@statistic-content-font-size: 20px;
|
|
|
|
// Alert
|
|
// ---
|
|
@alert-with-description-no-icon-padding-vertical: 11px;
|
|
|
|
// Skeleton
|
|
// ---
|
|
@skeleton-paragraph-margin-top: 20px;
|
|
@skeleton-paragraph-li-margin-top: 12px;
|
|
|
|
// Descriptions
|
|
@descriptions-title-margin-bottom: 8px;
|
|
@descriptions-default-padding: 12px @padding-lg;
|