few improvements for some <select> elements

This commit is contained in:
mrliptontea
2015-02-26 14:45:21 +01:00
parent 6c0f4dbf91
commit 83c8c9be9b
4 changed files with 21 additions and 3 deletions

View File

@@ -142,6 +142,10 @@ form[action*="repository/diff"] {
*/
.query-columns {
select {
width: auto !important;
}
.buttons {
vertical-align: middle;

View File

@@ -101,8 +101,13 @@ select {
height: auto;
}
option[disabled] {
color: $gray-lighter;
option {
padding-right: $input-padding-horizontal;
padding-left: $input-padding-horizontal;
&[disabled] {
color: $gray-lighter;
}
}
}

View File

@@ -103,6 +103,15 @@
}
}
option {
background-color: $input-bg;
color: $input-color;
&[disabled] {
color: $gray-lighter;
}
}
input {
width: 200px;
}

File diff suppressed because one or more lines are too long