Skip to content
Snippets Groups Projects
Commit 0358daf0 authored by Jared Hancock's avatar Jared Hancock
Browse files

Merge pull request #2476 from nfebuary/issue/select-style


Firefox form style fix

Reviewed-By: default avatarJared Hancock <jared@osticket.com>
parents bf80d4a0 96ada2c3
No related branches found
No related tags found
No related merge requests found
......@@ -736,6 +736,9 @@ td.multi-line {
.form_table input[type=text], .form_table input[type=password], .form_table textarea {
background:#fff;
border:1px solid #aaa;
border-radius:4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
.form_table input[type=radio], .form_table input[type=checkbox] {
......@@ -1281,6 +1284,9 @@ ul.tabs.alt li.active {
#response_options input[type=text], #response_options textarea:not(.richtext) {
border:1px solid #aaa;
background:#fff;
border-radius:4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
.attachments .uploads div {
......@@ -1883,6 +1889,8 @@ select + .button {
margin-right:0;
border: 1px solid #999;
border-right:none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input.attached .button.attached {
height: 100%;
......@@ -2826,6 +2834,9 @@ input, textarea {
padding: 3px 5px;
font-size: 0.95em;
font-family: inherit;
border-radius:4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
small {
......@@ -2883,8 +2894,11 @@ select {
max-width:350px;
border:1px solid #bbb;
display:inline-block;
padding:4px;
padding:0 4px;
font-size:13px;
border-radius:4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
a.attachment {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment