diff options
| author | Ofer Lehr <ofer@oferlehr.com> | 2014-12-07 08:36:22 +0200 |
|---|---|---|
| committer | Ofer Lehr <ofer@oferlehr.com> | 2014-12-07 08:36:22 +0200 |
| commit | f87c20efb39b9a713891b572a2f45c9a078902c9 (patch) | |
| tree | 0606d8140767381a423f555081f2f39b26e793e8 | |
| parent | 253f29b739b2a25e2cb730e27816108f76688f1f (diff) | |
fixes some info card styling
- the input field now doesn't clip the text before the end of the row -
tough i think we will need to change it to a <p> element because of
text overflow issues
- some styling to the drop down. aparently we will need to implement it
in javascript to get full styling control
| -rw-r--r-- | index.html | 4 | ||||
| -rw-r--r-- | res/css/partials/info-card.scss | 26 | ||||
| -rw-r--r-- | res/css/style.css | 22 |
3 files changed, 50 insertions, 2 deletions
@@ -55,10 +55,10 @@ <button id="deleteedge">Delete</button> </div> <div class="info" style="display:none"> - <p>Node info</p> <form id="editbox"> <p class="info-card-attr">Name</p><p class="info-card-attr-val"><input id="editformname"></p> - <label class="info-card-attr">Type</label><select id="edittype"> + <label class="info-card-attr">Type</label> + <select id="edittype" class="select-dropdown"> <option value="person">Person</option><option value="club">Club</option><option value="skill">Skill</option><option value="interest">Interest</option><option value="third-internship-proposal">Third-internship-proposal</option><option value="internship">Internship</option> </select><br/> <div id="status"> diff --git a/res/css/partials/info-card.scss b/res/css/partials/info-card.scss index d3907679..bf3e9f69 100644 --- a/res/css/partials/info-card.scss +++ b/res/css/partials/info-card.scss @@ -77,6 +77,32 @@ margin: 12px 0px 24px 0px; } +#editbox .info-card-attr-val input{ + width: 100%; + font-size: $h2-size; +} + +.select-dropdown { + border: none; + font-family: $base-font-family; + background-color: white; + font-size: $h3-size; + color: $dark-grey; + width: 100%; + padding: 0; + margin: 12px 0px 24px 0px; +} + +.select-dropdown:focus { + outline: none; +} + +.select-dropdown option{ + font-size: $h3-size; + color: $dark-grey; + border: 1px solid $dark-grey; +} + .info hr { width: 250px; position: relative; diff --git a/res/css/style.css b/res/css/style.css index 65dddef6..ac929313 100644 --- a/res/css/style.css +++ b/res/css/style.css @@ -500,6 +500,28 @@ body.debug .debug-ui-right { font-size: 24px; margin: 12px 0px 24px 0px; } +#editbox .info-card-attr-val input { + width: 100%; + font-size: 24px; } + +.select-dropdown { + border: none; + font-family: "Source_Regular", sans-serif; + background-color: white; + font-size: 18px; + color: #363636; + width: 100%; + padding: 0; + margin: 12px 0px 24px 0px; } + +.select-dropdown:focus { + outline: none; } + +.select-dropdown option { + font-size: 18px; + color: #363636; + border: 1px solid #363636; } + .info hr { width: 250px; position: relative; |
