Merge pull request #10387 from overleaf/jel-input-padding

[web] Decrease input padding for new CSS build

GitOrigin-RevId: 5c1513aea854d09d8dc13f1697188f6dc9696737
This commit is contained in:
Jessica Lawshe 2022-11-14 09:07:37 -06:00 committed by Copybot
parent 62cf8c9d61
commit d37344e27b
2 changed files with 2 additions and 1 deletions

View file

@ -156,7 +156,7 @@ output {
display: block; display: block;
width: 100%; width: 100%;
height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border) height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
padding: @padding-base-vertical @padding-base-horizontal; padding: @input-padding;
font-size: @font-size-base; font-size: @font-size-base;
line-height: @line-height-base; line-height: @line-height-base;
color: @input-color; color: @input-color;

View file

@ -195,6 +195,7 @@
@input-border-focus: @blue-50; @input-border-focus: @blue-50;
//** Bordersize for inputs //** Bordersize for inputs
@input-border-size: @border-size; @input-border-size: @border-size;
@input-padding: @padding-sm;
//** Placeholder text color //** Placeholder text color
@input-color-placeholder: @neutral-60; @input-color-placeholder: @neutral-60;