From e900d63106072d37f730f534cc26a16df060ef16 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Tue, 19 Nov 2024 22:51:15 -0500 Subject: [PATCH] updates --- .../include/Configuration.inc.php.template | 2 +- .../mocha-php/themes/avondale/uwt-wizard.less | 21 +++++++++++++++- .../src/mocha-php/themes/avondale/uwt.less | 3 ++- .../themes/common/styles/uwt-listbox.less | 25 +++++++++++++++++++ 4 files changed, 48 insertions(+), 3 deletions(-) diff --git a/mocha-php/src/mocha-php/include/Configuration.inc.php.template b/mocha-php/src/mocha-php/include/Configuration.inc.php.template index 80d99dd..103a0af 100644 --- a/mocha-php/src/mocha-php/include/Configuration.inc.php.template +++ b/mocha-php/src/mocha-php/include/Configuration.inc.php.template @@ -25,4 +25,4 @@ require_once ("BeforeLaunchEvent.inc.php"); -?> \ No newline at end of file +?> diff --git a/mocha-php/src/mocha-php/themes/avondale/uwt-wizard.less b/mocha-php/src/mocha-php/themes/avondale/uwt-wizard.less index 13cd705..b9e50a5 100644 --- a/mocha-php/src/mocha-php/themes/avondale/uwt-wizard.less +++ b/mocha-php/src/mocha-php/themes/avondale/uwt-wizard.less @@ -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; } + */ } -} \ No newline at end of file + &> div.uwt-footer + { + background-color: #f2f3f4; + padding: 25px 30px; + } + + &.uwt-color-inverse + { + ol + { + background-color: #2d353c; + li + { + } + } + } +} diff --git a/mocha-php/src/mocha-php/themes/avondale/uwt.less b/mocha-php/src/mocha-php/themes/avondale/uwt.less index 959fa35..a6e8857 100644 --- a/mocha-php/src/mocha-php/themes/avondale/uwt.less +++ b/mocha-php/src/mocha-php/themes/avondale/uwt.less @@ -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"; @@ -120,4 +121,4 @@ input.uwt-failed-validation border: solid 1px var(--uwt-color-danger) !important; box-shadow: 0px 0px 4px var(--uwt-color-danger) !important; } -//} \ No newline at end of file +//} diff --git a/mocha-php/src/mocha-php/themes/common/styles/uwt-listbox.less b/mocha-php/src/mocha-php/themes/common/styles/uwt-listbox.less index 801933e..f061c6e 100644 --- a/mocha-php/src/mocha-php/themes/common/styles/uwt-listbox.less +++ b/mocha-php/src/mocha-php/themes/common/styles/uwt-listbox.less @@ -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; + } + } +}