diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-03-01 15:55:58 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-03-01 16:03:38 +0200 |
| commit | 258dd8018dab09d2e0985e79bcfeeb7d500cd88a (patch) | |
| tree | 186cc11e965dc951cc74ce7c612c4f2687426bff /res/client/css/partials | |
| parent | 1228457cdb3ea0b7c0c4283ac3f36dad277c1518 (diff) | |
input-bubble:
- rm silly <table>
- add 'type_selection__' prefix
- style keyboard shortcut
- rm unused position directives
Diffstat (limited to 'res/client/css/partials')
| -rw-r--r-- | res/client/css/partials/input-bubble.scss | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/res/client/css/partials/input-bubble.scss b/res/client/css/partials/input-bubble.scss index 657e95de..da600921 100644 --- a/res/client/css/partials/input-bubble.scss +++ b/res/client/css/partials/input-bubble.scss @@ -1,15 +1,22 @@ -.typeselection{ - color: $dark-grey; - font-size: $h2-size; - position:fixed; - left:0; - top:-300px; - pointer-events:none; +.type_selection { + color: $dark-grey; + font-size: $h3-size; + position: fixed; // no need for positioning, set via code + pointer-events: none; } -.typeselection td{ +.type_selection__row { + margin-top: 3px; + margin-bottom: 3px; +} + +#type_selection__chosen_type_name { + background-color: #D3D3D3; + border-radius: 3px; + padding: 0 7px; + margin-left: 3px; } #keys{ - opacity: 0.5; + opacity: 0.5; } |
