This commit is contained in:
Michael Becker 2024-11-19 22:51:15 -05:00
parent 0a3e0090e7
commit e900d63106
4 changed files with 48 additions and 3 deletions

View File

@ -1,5 +1,6 @@
div.uwt-wizard
{
background-color: #fff;
ol
{
background-color: #F0F3F4;
@ -67,11 +68,29 @@ div.uwt-wizard
{
margin: 10px 0px -10px;
padding: 16px;
/*
div.uwt-wizard-page
{
border: solid 1px #E3E3E3;
border-radius: 4px;
min-height: 20px;
}
*/
}
&> div.uwt-footer
{
background-color: #f2f3f4;
padding: 25px 30px;
}
&.uwt-color-inverse
{
ol
{
background-color: #2d353c;
li
{
}
}
}
}

View File

@ -19,6 +19,7 @@
@import "uwt-header.less";
@import "uwt-htmlheading.less";
@import "uwt-linkbutton.less";
@import "uwt-listbox.less";
@import "uwt-listview.less";
@import "uwt-mainpage.less";
@import "uwt-megamenu.less";

View File

@ -19,3 +19,28 @@ div.uwt-listbox
}
}
}
ul.uwt-listbox
{
list-style-type: none;
padding: 0px;
margin: 0px;
&> li
{
cursor: pointer;
&> div.uwt-title, &> div.uwt-detail
{
padding: 8px;
}
&> div.uwt-title
{
padding-bottom: 0px;
font-size: 1.2em;
}
&> div.uwt-detail
{
color: #999999;
}
}
}