mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-25 10:42:17 -05:00
[ux] unify text inputs
This commit is contained in:
parent
8adb87f0b3
commit
4175ef1ca7
@ -196,7 +196,7 @@ exports.pages.groupchat = function anonymous(locals) {
|
||||
exports.pages.main = function anonymous(locals) {
|
||||
var buf = [];
|
||||
with (locals || {}) {
|
||||
buf.push('<section class="page main"><div><h3>Current status</h3><div contenteditable="true" class="status"></div></div><div id="avatarChanger"><h3>Change Avatar</h3><div class="uploadRegion"><p>Drag and drop a new avatar here</p><img/><form><input id="uploader" type="file"/></form></div></div><div><h3>Add / Approve Contacts</h3><input id="addcontact"/><button class="addContact">Add</button><ul id="contactrequests"></ul></div><div><h3>Desktop Integration</h3><button class="enableAlerts">Enable alerts</button><button class="installFirefox">Install app</button></div></section>');
|
||||
buf.push('<section class="page main"><div><h3>Current status</h3><div contenteditable="true" class="status"></div></div><div id="avatarChanger"><h3>Change Avatar</h3><div class="uploadRegion"><p>Drag and drop a new avatar here</p><img/><form><input id="uploader" type="file"/></form></div></div><div><h3>Add / Approve Contacts</h3><input type="text" id="addcontact"/><button class="addContact">Add</button><ul id="contactrequests"></ul></div><div><h3>Desktop Integration</h3><button class="enableAlerts">Enable alerts</button><button class="installFirefox">Install app</button></div></section>');
|
||||
}
|
||||
return buf.join("");
|
||||
};
|
||||
|
@ -14,7 +14,7 @@ section.page.main
|
||||
|
||||
div
|
||||
h3 Add / Approve Contacts
|
||||
input#addcontact
|
||||
input(type="text")#addcontact
|
||||
button.addContact Add
|
||||
ul#contactrequests
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Forms and Buttons
|
||||
|
||||
input[type=text], input[type=email], input[type=search], input[type=password], textarea
|
||||
input[type=text], input[type=email], input[type=search], input[type=password], textarea, .main .status
|
||||
-webkit-appearance: none
|
||||
roundall(3px)
|
||||
padding: 0 10px
|
||||
@ -17,7 +17,7 @@ input[type=text], input[type=email], input[type=search], input[type=password], t
|
||||
-webkit-transition: border .2s ease-in 0
|
||||
-moz-transition: border .2s ease-in 0
|
||||
|
||||
input[type=text], input[type=email], input[type=search], input[type=password]
|
||||
input[type=text], input[type=email], input[type=search], input[type=password], .main .status
|
||||
height: 35px
|
||||
|
||||
textarea
|
||||
|
@ -5,15 +5,12 @@
|
||||
padding: 20px
|
||||
border-bottom: 1px solid $grayOutline
|
||||
|
||||
.status
|
||||
padding: 10px
|
||||
|
||||
&:last-of-type
|
||||
border: none
|
||||
|
||||
.status
|
||||
padding: 5px
|
||||
background: $grayBackground
|
||||
roundall(3px)
|
||||
font-size: $fontSmall
|
||||
|
||||
.uploadRegion
|
||||
padding: 15px
|
||||
font-size: $fontSmall
|
||||
|
@ -894,20 +894,12 @@ h3 {
|
||||
padding: 20px;
|
||||
border-bottom: 1px solid #e4e4e4;
|
||||
}
|
||||
.main > div .status {
|
||||
padding: 10px;
|
||||
}
|
||||
.main > div:last-of-type {
|
||||
border: none;
|
||||
}
|
||||
.main > div .status {
|
||||
padding: 5px;
|
||||
background: #f7f7f7;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
-khtml-border-radius: 3px;
|
||||
-o-border-radius: 3px;
|
||||
-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.uploadRegion {
|
||||
padding: 15px;
|
||||
font-size: 12px;
|
||||
@ -996,7 +988,8 @@ input[type=text],
|
||||
input[type=email],
|
||||
input[type=search],
|
||||
input[type=password],
|
||||
textarea {
|
||||
textarea,
|
||||
.main .status {
|
||||
-webkit-appearance: none;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
@ -1026,7 +1019,8 @@ textarea {
|
||||
input[type=text],
|
||||
input[type=email],
|
||||
input[type=search],
|
||||
input[type=password] {
|
||||
input[type=password],
|
||||
.main .status {
|
||||
height: 35px;
|
||||
}
|
||||
textarea {
|
||||
|
@ -1,5 +1,5 @@
|
||||
CACHE MANIFEST
|
||||
# 0.0.1 1382382268689
|
||||
# 0.0.1 1382530461409
|
||||
|
||||
CACHE:
|
||||
/app.js
|
||||
|
Loading…
Reference in New Issue
Block a user