Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
config page layout to global
I have been experimenting with the looks of the inputboxes on the
config page and have decided to implement that look for the rest of
Zoph as well.

Also some small changes to the alignment.

Issue#28
  • Loading branch information
jeroenrnl committed Oct 30, 2012
1 parent 8c7ddf4 commit a589945
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions php/css.php
Expand Up @@ -556,13 +556,9 @@
width: 100%;
}

div.main#config input {
border: 1px solid <?php echo $TABLE_BORDER_COLOR ?>;
padding: 2px;
border-radius: 2px;

div.main#config input[type="checkbox"] {
margin: 7px;
}


.olControlAttribution {
bottom: 1em !important;
Expand Down Expand Up @@ -1172,6 +1168,7 @@
padding-left: 4px;
padding-right: 4px;
min-height: 1.3em;
margin: 4px 0px;
}

dl.color_scheme dd,
Expand Down Expand Up @@ -1396,6 +1393,10 @@
}


input, select {
margin: 2px;
}

input[type="checkbox"] {
float: left;
}
Expand All @@ -1412,9 +1413,20 @@
margin-left: 5px;
}

input, select {
select,
input[type="text"],
input[type="time"],
input[type="date"],
input[type="password"],
textarea {
border: 1px solid <?php echo $TABLE_BORDER_COLOR ?>;
padding: 2px;
border-radius: 2px;
margin: 2px;
}
background: white;
float: left;
}


form.geotag select,
form.import select,
Expand Down

0 comments on commit a589945

Please sign in to comment.