Made all textbox fields have the same padding in the admin.

--HG--
branch : dev
This commit is contained in:
Jonathan Wall
2010-07-29 12:40:24 -07:00
parent da148300e0
commit cec1b3b8d6
2 changed files with 6 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ html.dyn input.hinted {
font-style:italic; font-style:italic;
} }
input#PublishLater_ScheduledPublishUtcDate { input#PublishLater_ScheduledPublishUtcDate {
width:56%; width:50%;
} }
input#PublishLater_ScheduledPublishUtcTime { input#PublishLater_ScheduledPublishUtcTime {
width:36%; width:36%;

View File

@@ -445,7 +445,7 @@ label input {
} }
/* todo: (heskew) try to get .text on stuff like .text-box */ /* todo: (heskew) try to get .text on stuff like .text-box */
select, textarea, input.text, input.textMedium, input.text-box { select, textarea, input.text, input.textMedium, input.text-box {
padding:1px; padding:3px;
border:1px solid #bdbcbc; border:1px solid #bdbcbc;
} }
input.text, input.textMedium, input.text-box { input.text, input.textMedium, input.text-box {
@@ -454,6 +454,9 @@ input.text, input.textMedium, input.text-box {
input.textMedium { input.textMedium {
width:26em; width:26em;
} }
select {
padding:1px;
}
select:focus, textarea:focus, input.text:focus, input.text-box:focus { select:focus, textarea:focus, input.text:focus, input.text-box:focus {
border-color:#666d51; border-color:#666d51;
} }
@@ -472,7 +475,6 @@ textarea {
min-height:8em; min-height:8em;
} }
#main input.large.text, #main textarea { #main input.large.text, #main textarea {
padding:4px;
width:99%; width:99%;
} }
#main .primary input.large.text, #main .primary textarea { #main .primary input.large.text, #main .primary textarea {
@@ -635,6 +637,7 @@ button.ibutton {
/* (Items) Tables /* (Items) Tables
----------------------------------------------------------*/ ----------------------------------------------------------*/
table.items { table.items {
margin:0 0 1.4em 0;
background:#fff; background:#fff;
border:1px solid #eaeaea; border:1px solid #eaeaea;
border-bottom:none; border-bottom:none;