From c81b9fc9216724a58a597916e9b791880dcc3365 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Tue, 8 Oct 2013 13:56:11 -0700 Subject: [PATCH] Style select containers --- ui/stylesheets/_instance-wizard.scss | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/ui/stylesheets/_instance-wizard.scss b/ui/stylesheets/_instance-wizard.scss index 62a4e1d574a..25a157b1d2e 100644 --- a/ui/stylesheets/_instance-wizard.scss +++ b/ui/stylesheets/_instance-wizard.scss @@ -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; + } + } + } + } } \ No newline at end of file