diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-02-25 01:29:11 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-02-25 01:30:09 +0200 |
| commit | dba964dcd130609726bf7e937feb6b281dddc8b3 (patch) | |
| tree | 2a4627f3d098ca977fe7733468b820065bffd5c9 /res | |
| parent | 5b8811074bf766970eead9f1da94453bab26135a (diff) | |
info-card: rm <hr>, use css for boarders, relax padding
Diffstat (limited to 'res')
| -rw-r--r-- | res/client/css/partials/info-card.scss | 18 | ||||
| -rw-r--r-- | res/templates/index.html | 5 |
2 files changed, 10 insertions, 13 deletions
diff --git a/res/client/css/partials/info-card.scss b/res/client/css/partials/info-card.scss index ccb687d1..a86d1760 100644 --- a/res/client/css/partials/info-card.scss +++ b/res/client/css/partials/info-card.scss @@ -6,7 +6,7 @@ top: 130px; } -.subtitle{ +.subtitle { font-style:italic; color: #bbb; font-size: 12px; @@ -19,7 +19,7 @@ @include rz-box-shadow(0px, 1px, 6px, 0px, rgba(0,0,0,0.3) ); position: relative; width:250px; - padding: 24px; + padding: 12px 15px; @include rz-box-sizing-border; border-top: 6px solid $dark-grey; } @@ -119,12 +119,8 @@ border: 1px solid $dark-grey; } -.info hr { - width: 250px; - position: relative; - left: -24px; - border: none; - background-color: $mid-light-grey; - height: 2px; - margin: $two-baselines 0px $two-baselines 0px; -} +#info-container__bottom-btn-bar { + border-top: 2px solid $mid-light-grey; + margin-top: 10px; + padding-top: 10px; +}
\ No newline at end of file diff --git a/res/templates/index.html b/res/templates/index.html index c3d703e1..97ecc47b 100644 --- a/res/templates/index.html +++ b/res/templates/index.html @@ -98,8 +98,9 @@ var rz_config = { // set as a global variable <div id="enddate"><label class="info-card-attr">End date:</label><input id="editenddate"/></div> <div id="url"><p class="info-card-attr">URL</p><p class="info-card-attr-val info-card-url"><input id="editurl"></p></div> <div id="description"><label>Description</label><textarea id="editdescription"></textarea></div> - <hr> - <button id="edit-node-dialog__delete" class="btn-regular btn-regular-outline">Delete</button> + <div id="info-container__bottom-btn-bar"> + <button id="edit-node-dialog__delete" class="btn-regular btn-regular-outline">Delete</button> + </div> </form> </div> </div> |
