first shot on improving edit article form

(see also foodcoops#209)
This commit is contained in:
wvengen 2013-11-20 23:40:38 +01:00
parent 5adb25caf5
commit 84191ddcd0
2 changed files with 50 additions and 8 deletions

View file

@ -242,3 +242,23 @@ tr.unavailable {
.input-append button.add-on {
height: inherit;
}
// inputs that are "in the background" - less visible
.less-visible {
color: #ddd;
input {
color: #ddd;
border-color: #eee;
-webkit-box-shadow: rgba(0, 0, 0, 0.05);
-moz-box-shadow: rgba(0, 0, 0, 0.05);
box-shadow: rgba(0, 0, 0, 0.05);
}
}
.less-visible:hover {
color: @textColor;
input {
color: @textColor;
border-color: @inputBorder;
}
}