diff options
| author | Alon Levy <alon@pobox.com> | 2015-03-02 14:59:55 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-03-02 14:59:55 +0200 |
| commit | 48703a295bc76f777faea7a11ad0a9a459f6d26f (patch) | |
| tree | bbd5ecbd409cdbd50fdbbe166bdb87a1d2305b5b /res/client/css/partials | |
| parent | 26e2bc8baca5da03e6fad8bbdaa2af14673f3bdf (diff) | |
css: updates for upcoming change of input-bar from input to div[contentEditable=true] element
Diffstat (limited to 'res/client/css/partials')
| -rw-r--r-- | res/client/css/partials/base.scss | 2 | ||||
| -rw-r--r-- | res/client/css/partials/input-bar.scss | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/res/client/css/partials/base.scss b/res/client/css/partials/base.scss index 5fdf93b9..d50bb21d 100644 --- a/res/client/css/partials/base.scss +++ b/res/client/css/partials/base.scss @@ -41,7 +41,7 @@ a:active { } //input box stuff -input{ +input, .input { background-color: white; color: $dark-grey; border: 0; diff --git a/res/client/css/partials/input-bar.scss b/res/client/css/partials/input-bar.scss index 9a6614f6..51592e57 100644 --- a/res/client/css/partials/input-bar.scss +++ b/res/client/css/partials/input-bar.scss @@ -34,6 +34,7 @@ position: absolute; top: 130px; left: 24px; + height: 36px; &:focus { width: 80%; } @@ -44,6 +45,10 @@ color: $mid-grey; } +#textanalyser { + height: 36px; +} + #btn_add { float: right; background: url(../img/plus-button.png); @@ -80,6 +85,10 @@ outline: none; } +#input-suggestion { + width: 100%; +} + .suggestion{ position: relative; color: $dark-grey; |
