Add input-addon vars

This commit is contained in:
Cory LaViska
2017-08-23 15:15:31 -04:00
parent 8bb6145b83
commit 4136ce784a
2 changed files with 8 additions and 5 deletions

6
dist/shoelace.css vendored

File diff suppressed because one or more lines are too long

View File

@@ -23,6 +23,9 @@
--input-focus-width: 2px;
--input-speed: var(--component-speed);
--input-addon-bg-color: var(--component-bg-color);
--input-addon-color: var(--state-secondary);
--input-range-track-height: .5rem;
--input-range-track-color: var(--component-bg-color);
--input-range-track-box-shadow: var(--component-box-shadow-inner);
@@ -355,12 +358,12 @@ input[type="range"] {
/* Input addons */
.input-addon {
font-size: var(--input-font-size);
color: var(--state-secondary);
height: var(--input-height);
line-height: var(--input-height);
border-top: solid var(--input-border-width) var(--input-border-color);
border-bottom: solid var(--input-border-width) var(--input-border-color);
background: #f8f8f8;
background: var(--input-addon-bg-color);
color: var(--input-addon-color);
padding: 0 .5rem;
white-space: nowrap;