diff options
| author | Ofer Lehr <ofer@oferlehr.com> | 2014-12-01 00:44:10 +0200 |
|---|---|---|
| committer | Ofer Lehr <ofer@oferlehr.com> | 2014-12-01 00:44:10 +0200 |
| commit | f92ea38fff179613edb543b6435750c0ed64e573 (patch) | |
| tree | c8f27e48fc12cd6442878fb91f79864f50d6094f /res/css/partials/input-bar.scss | |
| parent | b12f2c868cb71d6b23158ef86f5b16977df941a9 (diff) | |
fixed sass variable colors and polished top bar css
Diffstat (limited to 'res/css/partials/input-bar.scss')
| -rw-r--r-- | res/css/partials/input-bar.scss | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/res/css/partials/input-bar.scss b/res/css/partials/input-bar.scss index 07df842e..9fb47d64 100644 --- a/res/css/partials/input-bar.scss +++ b/res/css/partials/input-bar.scss @@ -1,22 +1,30 @@ .input-bar { + font-family: $base-font-family; + color: $mid-grey; position: fixed; display: block; height: $input-bar-height; width: 420px; top: $top-bar-height+$search-bar-height+$task-alert-height+20px; - left: $left-margin; + left: $doc-margin; padding-left:8px; border-radius: 4px; - border: 1px solid #919095;//$mid-grey + border: 1px solid $mid-grey; background: white; &:focus { border-radius: 4px; - border: 1px solid #919095;//$mid-grey + border: 1px solid $mid-grey; -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.3); } } +#textanalyser.ui-autocomplete-input { + font-family: $base-font-family; + color: $mid-grey; +} + + .add-button { position:fixed; top: $top-bar-height+$search-bar-height+$task-alert-height+22px; @@ -37,7 +45,7 @@ .ui-helper-hidden-accessible{ position:fixed; top: $top-bar-height+$search-bar-height+$task-alert-height+35px+$input-bar-height; - left:$left-margin+8px; + left:$doc-margin+8px; text-shadow: -1px 1px 8px #E DE275, 1px -1px 8px #EDE275; font-size:16px; }
\ No newline at end of file |
