minimal form style adjustments

This commit is contained in:
Benedikt Rötsch
2017-10-04 17:19:23 +02:00
committed by Benedikt Rötsch
parent 6430a2c849
commit 5e72fd9c6f
3 changed files with 10 additions and 6 deletions

View File

@@ -7,19 +7,19 @@
/* Font */
--fh-font-family: 'Raleway', sans-serif;
--fh-font-size: 16px;
--fh-font-color: rgb(40, 40, 40);
--fh-font-color: var(--color-input-text);
/* Borders */
--fh-border-radius: 5px;
--fh-border-width: 1px;
--fh-border-style: solid;
--fh-border-color: rgb(200, 200, 200);
--fh-border-color: var(--color-input-border);
/* Inputs, Textareas, Select, Option */
--fh-input-height: 40px;
--fh-input-width: 100%;
--fh-input-max-width: 100%;
--fh-input-bg-color: #fff;
--fh-input-bg-color: var(--color-input-bg);
--fh-focus-bg-color: var(--fh-input-bg-color);
--fh-focus-border-color: var(--color-palette-blue);
--fh-focus-font-color: var(--fh-font-color);

View File

@@ -39,6 +39,10 @@
--color-status-block-bg-error: #fbe3e2;
--color-status-block-message: #536171;
--color-input-text: #536171;
--color-input-bg: #fff;
--color-input-border: #d3dce0;
--layout-sidebar-sidebar-width: 228px;
--layout-sidebar-content-width: 732px;