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.
190 lines
4.9 KiB
190 lines
4.9 KiB
/*******************************
|
|
Form
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Elements
|
|
--------------------*/
|
|
|
|
/* Form */
|
|
@gutterWidth: 1em;
|
|
@rowDistance: 1em;
|
|
|
|
/* Text */
|
|
@paragraphMargin: @rowDistance 0em;
|
|
|
|
/* Field */
|
|
@fieldMargin: 0em 0em @rowDistance;
|
|
|
|
/* Form Label */
|
|
@labelDistance: 0.2857rem;
|
|
@labelMargin: 0em 0em @labelDistance 0em;
|
|
@labelFontSize: 0.9285em;
|
|
@labelFontWeight: bold;
|
|
@labelTextTransform: none;
|
|
@labelColor: @textColor;
|
|
|
|
/* Input */
|
|
@inputFont: @pageFont;
|
|
@inputWidth: 100%;
|
|
@inputFontSize: 1em;
|
|
@inputVerticalPadding: 0.78571em;
|
|
@inputHorizontalPadding: 1em;
|
|
@inputLineHeight: @defaultInputLineHeight;
|
|
@inputPadding: (@inputVerticalPadding + ((1em - @inputLineHeight) / 2)) @inputHorizontalPadding;
|
|
@inputBackground: #FFFFFF;
|
|
@inputBorder: 1px solid @borderColor;
|
|
@inputBorderRadius: @absoluteBorderRadius;
|
|
@inputColor: @textColor;
|
|
@inputTransition:
|
|
background-color 0.2s ease,
|
|
color 0.2s ease,
|
|
box-shadow 0.2s ease,
|
|
border-color 0.2s ease
|
|
;
|
|
@inputBoxShadow: 0em 0em 0em 0em transparent inset;
|
|
|
|
/* Select */
|
|
@selectBackground: @white;
|
|
@selectBorderRadius: @inputBorderRadius;
|
|
@selectBorder: @inputBorder;
|
|
@selectPadding: 0.62em @inputHorizontalPadding;
|
|
@selectBoxShadow: @inputBoxShadow;
|
|
@selectTransition: @inputTransition;
|
|
@selectColor: @inputColor;
|
|
|
|
/* Text Area */
|
|
@textAreaPadding: @inputVerticalPadding @inputHorizontalPadding;
|
|
@textAreaHeight: 12em;
|
|
@textAreaResize: vertical;
|
|
@textAreaLineHeight: 1.2857;
|
|
@textAreaMinHeight: 8em;
|
|
@textAreaMaxHeight: 24em;
|
|
@textAreaBackground: @inputBackground;
|
|
@textAreaBorder: @inputBorder;
|
|
@textAreaFontSize: @inputFontSize;
|
|
@textAreaTransition: @inputTransition;
|
|
|
|
/* Checkbox */
|
|
@checkboxVerticalAlign: top;
|
|
@checkboxLabelFontSize: 1em;
|
|
@checkboxLabelTextTransform: @labelTextTransform;
|
|
|
|
/* Divider */
|
|
@dividerMargin: @rowDistance 0em;
|
|
|
|
/* Inline Validation Prompt */
|
|
@inlineValidationMargin: -0.5em 0em -0.5em @rowDistance;
|
|
@inlineValidationArrowOffset: -0.3em;
|
|
|
|
/*-------------------
|
|
States
|
|
--------------------*/
|
|
|
|
/* Focus */
|
|
@inputFocusPointerSize: 0px;
|
|
|
|
/* Input Focus */
|
|
@inputFocusBackground: @inputBackground;
|
|
@inputFocusBorderColor: @selectedBorderColor;
|
|
@inputFocusColor: rgba(0, 0, 0, 0.85);
|
|
@inputFocusBoxShadow: @inputFocusPointerSize 0em 0em 0em @selectedBorderColor inset;
|
|
@inputFocusBorderRadius: @inputBorderRadius;
|
|
|
|
/* Text Area Focus */
|
|
@textAreaFocusBackground: @inputFocusBackground;
|
|
@textAreaFocusBorderColor: @inputFocusBorderColor;
|
|
@textAreaFocusColor: @inputFocusColor;
|
|
@textAreaFocusBoxShadow: @inputFocusBoxShadow;
|
|
@textAreaFocusBorderRadius: @inputFocusBorderRadius;
|
|
|
|
/* Disabled */
|
|
@disabledLabelOpacity: @disabledOpacity;
|
|
|
|
/* Error */
|
|
@formErrorColor: @negativeTextColor;
|
|
@formErrorBorder: @negativeBorderColor;
|
|
@formErrorBackground: @negativeBackgroundColor;
|
|
|
|
/* Input Error */
|
|
@inputErrorBorderRadius: @inputBorderRadius;
|
|
@inputErrorBoxShadow: none;
|
|
|
|
/* Dropdown Error */
|
|
@dropdownErrorHoverBackground: #FBE7E7;
|
|
@dropdownErrorSelectedBackground: @dropdownErrorHoverBackground;
|
|
@dropdownErrorActiveBackground: #FDCFCF;
|
|
@dropdownErrorLabelBackground: #EACBCB;
|
|
@dropdownErrorLabelColor: @errorTextColor;
|
|
|
|
/* Focused Error */
|
|
@inputErrorFocusBackground: @negativeBackgroundColor;
|
|
@inputErrorFocusColor: @negativeTextColor;
|
|
@inputErrorFocusBorder: @negativeBorderColor;
|
|
@inputErrorFocusBoxShadow: none;
|
|
|
|
/* Placeholder */
|
|
@inputPlaceholderColor: lighten(@inputColor, 55);
|
|
@inputPlaceholderFocusColor: lighten(@inputColor, 35);
|
|
@inputErrorPlaceholderColor: lighten(@formErrorColor, 10);
|
|
@inputErrorPlaceholderFocusColor: lighten(@formErrorColor, 5);
|
|
|
|
|
|
/* Loading Dimmer */
|
|
@loaderDimmerColor: rgba(255, 255, 255, 0.8);
|
|
@loaderDimmerZIndex: 100;
|
|
|
|
/* Loading Spinner */
|
|
@loaderSize: 3em;
|
|
@loaderOffset: -(@loaderSize / 2);
|
|
@loaderMargin: @loaderOffset 0em 0em @loaderOffset;
|
|
@loaderLineZIndex: 101;
|
|
|
|
/*-------------------
|
|
Types
|
|
--------------------*/
|
|
|
|
/* Required */
|
|
@requiredContent: '*';
|
|
@requiredColor: @negativeColor;
|
|
@requiredVerticalOffset: -0.2em;
|
|
@requiredDistance: 0.2em;
|
|
@requiredMargin: @requiredVerticalOffset 0em 0em @requiredDistance;
|
|
|
|
/* Inverted */
|
|
@invertedLabelColor: @invertedTextColor;
|
|
|
|
/*-------------------
|
|
Variations
|
|
--------------------*/
|
|
|
|
/* Grouped Fields */
|
|
@groupedMargin: @fieldMargin;
|
|
@groupedFieldMargin: 0.5em 0em;
|
|
|
|
@groupedLabelDistance: @labelDistance;
|
|
@groupedLabelColor: @labelColor;
|
|
@groupedLabelMargin: @labelMargin;
|
|
@groupedLabelFontSize: @labelFontSize;
|
|
@groupedLabelFontWeight: @labelFontWeight;
|
|
@groupedLabelTextTransform: @labelTextTransform;
|
|
|
|
|
|
/* Inline */
|
|
@inlineLabelFontSize: @labelFontSize;
|
|
@inlineLabelVerticalAlign: middle;
|
|
@inlineGroupedFieldLabelDistance: 0.5rem;
|
|
@inlineCheckboxLabelDistance: 1.75em;
|
|
|
|
@inlineLabelMargin: 0em 1em 0em 0em;
|
|
@inlineLabelDistance: @labelDistance;
|
|
@inlineLabelColor: @labelColor;
|
|
@inlineLabelFontSize: @labelFontSize;
|
|
@inlineLabelFontWeight: @labelFontWeight;
|
|
@inlineLabelTextTransform: @labelTextTransform;
|
|
|
|
/*-------------------
|
|
Groups
|
|
--------------------*/
|
|
|
|
@inlineFieldsMargin: 0em 1em 0em 0em;
|