Style select containers

This commit is contained in:
Brian Federle 2013-10-08 13:56:11 -07:00
parent 93d41b9262
commit c81b9fc921
1 changed files with 38 additions and 0 deletions

View File

@ -15,4 +15,42 @@
// specific language governing permissions and limitations
// under the License.
.multi-wizard.instance-wizard {
.select-container {
background: $csui-tab-bg;
padding: 10px;
height: 375px;
overflow: auto;
border-radius: 0 0 3px 3px;
margin: 0px 0;
.select {
@include row;
padding: 12px;
margin: 10px;
background: white;
border-radius: 3px;
input {
@include span-columns(1);
margin: 5px 0;
}
.select-desc {
@include span-columns(11);
.name {
font-weight: bold;
font-size: 14px;
}
.desc {
margin: 4px 0;
font-size: 12px;
color: gray;
}
}
}
}
}