Restricting input.time width

This commit is contained in:
ARNHOE 2012-07-04 18:57:07 +02:00 committed by Ingo Schommer
parent de73db9ef7
commit b6c59f2c95
2 changed files with 5 additions and 0 deletions

View File

@ -181,6 +181,7 @@ form.small .field input.text, form.small .field textarea, form.small .field sele
.field .chzn-container-single .chzn-single div { width: 24px; }
.field .chzn-container-single .chzn-single div b { background-position: 4px 0px; }
.field input.hasDatepicker { width: 50%; max-width: 96px; }
.field input.time { width: 64px; }
.field.remove-splitter { border-bottom: none; box-shadow: none; }
/** ---------------------------------------------------- Buttons ---------------------------------------------------- */

View File

@ -240,6 +240,10 @@ form.small .field, .field.small {
width: 50%;
max-width: ($grid-x * 12);
}
input.time {
width: ($grid-x * 8); // smaller time field, since input is restricted
}
/* Hides borders in settings/access. Activated from JS */
&.remove-splitter {