Skip to content

Commit

Permalink
[#3754] Fix input field shown on filters modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandar Jovanov committed Aug 27, 2017
1 parent 00e8dc5 commit 92c01e2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions ckan/public/base/css/fuchsia.css
Expand Up @@ -10221,10 +10221,10 @@ h4 small {
color: #843534;
}
.input-group .form-control {
z-index: 1;
z-index: 0;
}
.input-group-btn:last-child > .btn {
z-index: 1;
z-index: 0;
}
body {
background: #E73892 url("../../../base/images/bg.png");
Expand Down
4 changes: 2 additions & 2 deletions ckan/public/base/css/green.css
Expand Up @@ -10221,10 +10221,10 @@ h4 small {
color: #843534;
}
.input-group .form-control {
z-index: 1;
z-index: 0;
}
.input-group-btn:last-child > .btn {
z-index: 1;
z-index: 0;
}
body {
background: #2F9B45 url("../../../base/images/bg.png");
Expand Down
4 changes: 2 additions & 2 deletions ckan/public/base/css/main.css
Expand Up @@ -10221,10 +10221,10 @@ h4 small {
color: #843534;
}
.input-group .form-control {
z-index: 1;
z-index: 0;
}
.input-group-btn:last-child > .btn {
z-index: 1;
z-index: 0;
}
body {
background: #005d7a url("../../../base/images/bg.png");
Expand Down
4 changes: 2 additions & 2 deletions ckan/public/base/css/maroon.css
Expand Up @@ -10221,10 +10221,10 @@ h4 small {
color: #843534;
}
.input-group .form-control {
z-index: 1;
z-index: 0;
}
.input-group-btn:last-child > .btn {
z-index: 1;
z-index: 0;
}
body {
background: #810606 url("../../../base/images/bg.png");
Expand Down
4 changes: 2 additions & 2 deletions ckan/public/base/css/red.css
Expand Up @@ -10221,10 +10221,10 @@ h4 small {
color: #843534;
}
.input-group .form-control {
z-index: 1;
z-index: 0;
}
.input-group-btn:last-child > .btn {
z-index: 1;
z-index: 0;
}
body {
background: #C14531 url("../../../base/images/bg.png");
Expand Down
4 changes: 2 additions & 2 deletions ckan/public/base/less/input-groups.less
@@ -1,13 +1,13 @@
.input-group {
.form-control {
z-index: 1;
z-index: 0;
}
}

.input-group-btn {
&:last-child {
> .btn {
z-index: 1;
z-index: 0;
}
}
}

0 comments on commit 92c01e2

Please sign in to comment.