git ssb

16+

Dominic / patchbay



Commit c34e6abec00814abf64ee003f1558a19da00f040

add dropshadow to lightbox and change 'okay' button to 'publish'

Ev Bogue committed on 9/20/2016, 7:23:21 PM
Parent: 88526ac77402dd07273ad025aa30ab6a18129b7d

Files changed

modules/message-confirm.jschanged
style.csschanged
modules/message-confirm.jsView
@@ -14,14 +14,14 @@
1414
1515 var lb = lightbox()
1616 document.body.appendChild(lb)
1717
18- var okay = h('button', 'okay', {onclick: function () {
18 + var okay = h('button', 'Publish', {onclick: function () {
1919 lb.remove()
2020 publish(content, cb)
2121 }})
2222
23- var cancel = h('button', 'cancel', {onclick: function () {
23 + var cancel = h('button', 'Cancel', {onclick: function () {
2424 lb.remove()
2525 cb(null)
2626 }})
2727
style.cssView
@@ -254,13 +254,14 @@
254254 padding: 1.5em;
255255 margin-top: 3em;
256256 margin-bottom: 3em;
257257 width: 600px;
258 + background: #f5f5f5;
258259 margin-left: auto;
259260 margin-right: auto;
260- background: #f5f5f5;
261261 border: 1px solid #eee;
262262 border-radius: .2em;
263 + box-shadow: #dadada 1px 2px 8px;
263264 }
264265
265266 /* searchprompt */
266267

Built with git-ssb-web