Allow ourselves to have decent looking select elements in the settings

This commit is contained in:
Jérémie Astori 2016-08-17 01:43:46 -04:00
parent 7f6dfe1652
commit 34036a4b7a
3 changed files with 9 additions and 2 deletions

View File

@ -581,10 +581,13 @@ button {
outline: 0; outline: 0;
padding: 8px 10px; padding: 8px 10px;
transition: border-color .2s; transition: border-color .2s;
-webkit-appearance: none;
width: 100%; width: 100%;
} }
#windows select.input {
height: 35px;
}
#user-specified-css-input { #user-specified-css-input {
resize: vertical; resize: vertical;
} }

View File

@ -493,7 +493,7 @@ $(function() {
var highlights = []; var highlights = [];
settings.on("change", "input, textarea", function() { settings.on("change", "input, select, textarea", function() {
var self = $(this); var self = $(this);
var name = self.attr("name"); var name = self.attr("name");

View File

@ -126,6 +126,10 @@ a:hover,
font-size: 12px; font-size: 12px;
} }
#windows select.input {
height: 38px;
}
#footer .icon { #footer .icon {
color: #666; color: #666;
} }