Skip to content

Commit

Permalink
select element css fixes for dark skin
Browse files Browse the repository at this point in the history
  • Loading branch information
pichalite committed Aug 10, 2016
1 parent bd29307 commit 860a6bb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
10 changes: 7 additions & 3 deletions less/composer.less
Expand Up @@ -85,10 +85,14 @@

.composer-container .btn.btn-info {
box-shadow: none !important;
color: #00bcd4;
background-color: #fff;
color: @body-color;
background-color: @composer-bg-color;
&:hover, &:active, &:focus, &:visited {
background-color: #eee;
background-color: @composer-bg-color;
}

.caret {
color: @body-color;
}
}

Expand Down
5 changes: 5 additions & 0 deletions less/input.less
Expand Up @@ -591,4 +591,9 @@ html:not(.ie9) .select.fg-line:before {
left: -1px;
top: 1px;
}
}

select.form-control option {
color: @body-color;
background-color: @body-bg-color;
}
2 changes: 1 addition & 1 deletion templates/account/edit.tpl
Expand Up @@ -88,7 +88,7 @@
<div class="form-group fg-line">
<div class="select">
<label for="grouptitle">[[user:grouptitle]]</label>
<select class="form-control" id="grouptitle" data-property="groupTitle">
<select class="form-control" id="groupTitle" data-property="groupTitle">
<option value="">[[user:no-group-title]]</option>
<!-- BEGIN groups -->
<!-- IF groups.userTitleEnabled -->
Expand Down

0 comments on commit 860a6bb

Please sign in to comment.