Skip to content
Snippets Groups Projects
Commit 4890d168 authored by Till Brehm's avatar Till Brehm
Browse files

Added CSS for 3 grouped input form fields.

parent 8ce5e305
No related branches found
No related tags found
No related merge requests found
...@@ -658,3 +658,25 @@ span.flag-zw {background-position:0 -5435px} ...@@ -658,3 +658,25 @@ span.flag-zw {background-position:0 -5435px}
#logo { #logo {
background-image: url("../images/logo@2x.png"); background-image: url("../images/logo@2x.png");
background-size: 200px 65px; } } background-size: 200px 65px; } }
.input-group-field {
display: table-cell;
vertical-align: middle;
border-radius:4px;
min-width:1%;
white-space: nowrap;
}
.input-group-field .form-control {
border-radius: inherit !important;
}
.input-group-field:not(:first-child):not(:last-child) {
border-radius:0;
}
.input-group-field:not(:first-child):not(:last-child) .form-control {
border-left-width: 0;
border-right-width: 0;
}
.input-group-field:last-child {
border-top-left-radius:0;
border-bottom-left-radius:0;
}
\ No newline at end of file
...@@ -291,3 +291,24 @@ thead.dark ...@@ -291,3 +291,24 @@ thead.dark
#logo #logo
background-image: url('../images/logo@2x.png') background-image: url('../images/logo@2x.png')
background-size: 200px 65px background-size: 200px 65px
.input-group-field
display: table-cell
vertical-align: middle
border-radius: 4px
min-width: 1%
white-space: nowrap
.input-group-field .form-control
border-radius: inherit !important
.input-group-field:not(:first-child):not(:last-child)
border-radius: 0
.input-group-field:not(:first-child):not(:last-child) .form-control
border-left-width: 0
border-right-width: 0
.input-group-field:last-child
border-top-left-radius: 0
border-bottom-left-radius: 0
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment