diff --git a/livesupport/modules/htmlUI/var/formmask/general.inc.php b/livesupport/modules/htmlUI/var/formmask/general.inc.php index 5f010eef8..2a838ead6 100755 --- a/livesupport/modules/htmlUI/var/formmask/general.inc.php +++ b/livesupport/modules/htmlUI/var/formmask/general.inc.php @@ -214,17 +214,22 @@ $ui_fmask = array( 'label' => 'Password', 'required' => TRUE ), - array( - 'element' => 'Submit', - 'type' => 'submit', - 'label' => 'Submit' - ), array( 'element' => 'cancel', 'type' => 'button', 'label' => 'Cancel', - 'attributes'=> array('onClick' => 'window.close()') - ) + 'attributes'=> array('onClick' => 'window.close()'), + 'groupit' => TRUE + ), + array( + 'element' => 'Submit', + 'type' => 'submit', + 'label' => 'Submit', + 'groupit' => TRUE + ), + array( + 'group' => array('cancel', 'Submit') + ), ), 'uploadFileM' => array( diff --git a/livesupport/modules/htmlUI/var/html/styles_livesupport.css b/livesupport/modules/htmlUI/var/html/styles_livesupport.css index 4dcbdf3bc..1fe8d735c 100755 --- a/livesupport/modules/htmlUI/var/html/styles_livesupport.css +++ b/livesupport/modules/htmlUI/var/html/styles_livesupport.css @@ -651,14 +651,32 @@ table.scheduler_day td { font-size: 12px; padding-top: 2px; } + +/*############# SCHEDULER WEEK #######*/ + table.scheduler_week_time { + background: #ddd; + padding: 0; + border: 0; + margin: 0; +} + +table.scheduler_week_time tr { width: 20px; - border: 1px solid #7392A6; + border-bottom: 1px solid #7392A6; +} + +table.scheduler_week_time td { + height: 20px; + text-align: center; } table.scheduler_week { width: 790px; border: 1px solid #7392A6; + padding: 0; + border: 0; + margin: 0; } table.scheduler_week a { @@ -679,7 +697,8 @@ table.scheduler_week th.date { } table.scheduler_week th.day { - width: 186px; + width: 286px; + text-align: left; } table.scheduler_week td.firstrow_secondcol { @@ -695,9 +714,10 @@ table.scheduler_week td.date_secondcol { border: none; border-left: 1px solid #7392A6; border-bottom: 1px solid #757575; - padding: 0px; font-weight: bold; } +table.scheduler_week td.date_secondcol a {color: #000; +} table.scheduler_week td.day_secondcol { background-color: #CFDEE7; diff --git a/livesupport/modules/htmlUI/var/html/styles_popup.css b/livesupport/modules/htmlUI/var/html/styles_popup.css index 68127b984..ac30e9d47 100755 --- a/livesupport/modules/htmlUI/var/html/styles_popup.css +++ b/livesupport/modules/htmlUI/var/html/styles_popup.css @@ -1,10 +1,8 @@ -body { - font-size: 12px; - font-family: Arial, Verdana, Helvetica, sans-serif; - font-size: 12px; - color: #2C2C2C; - margin: 0px; - vertical-align : middle; +body { font-size: 12px; + font-family: Arial, Verdana, Helvetica, sans-serif; + font-size: 12px; + color: #2C2C2C; + margin: 10px; } img { font-size: 12px; @@ -74,10 +72,11 @@ input, select { font-size: 12px; } + /* #################################### CONTENTAREA ############################### */ -.content { font-size: 12px; +.content { margin: 19px; margin-top: 0; float: left; @@ -126,6 +125,115 @@ table { font-size: 12px; table td { font-size: 12px; padding: 0 6px 0 12px; + border-right: 1px solid #333; height: 19px; + vertical-align: top; } +table tr.blue_head td { font-size: 12px; + background-color: #8baed1; + color: #FFF; + font-weight: bold; + +} + +A#blue_head { font-size: 12px; + color:#fff; +} + +table tr.blue1 td { font-size: 12px; + color: #000; + background-color: #d5e2ee; +} + +table tr.blue2 td { font-size: 12px; + color: #000; + background-color: #f5f5f5; +} + +table tr.red td { font-size: 12px; + background-color: #FBAAAA; +} + +.footer { font-size: 12px; + padding: 4px 5px 5px 0; + background-color: #8baed1; + text-align: right; + margin-bottom: 8px; +} + +.container_button { font-size: 12px; + margin-top: 4px; +} + +.container_search { + margin-bottom: 4px; +} + +.comment { font-size: 12px; + float: left; + font-size: 10px; + margin: 5px 0 0 10px; +} + +.select_width_comment { font-size: 12px; + float:left; + margin-left: 3px; +} + +.select_width_comment[class] { font-size: 12px; + margin-left: 0; +} + + +.tablebottom { font-size: 12px; + float: left; + margin-left: 0px; + background-color: #8baed1; +} + +.counter { font-size: 12px; + float: left; + margin-left: 7px; + font-weight: bold; + background-color: #8baed1; +} + +.counter[class] { font-size: 12px; + margin-left: 15px; +} + +.container_browse { + width: 170px; + float: left; + margin: 0px 0px 10px 0px; +} + +.area_browse { + width: 174px; + height: 100px; +} + +.area_browse[class] { + width: 180px; +} + +.comment_browse { + font-size: 10px; +} + +.container_button_upload { font-size: 12px; + margin: 20px 0 0 204px; +} + +.container_button_upload[class] { font-size: 12px; + margin-left: 200px; +} + +label { font-size: 12px; + display: block; + float: left; + width: 200px; +} + + diff --git a/livesupport/modules/htmlUI/var/html/ui_browser.php b/livesupport/modules/htmlUI/var/html/ui_browser.php index bc0fbd0a6..d0e51fab3 100644 --- a/livesupport/modules/htmlUI/var/html/ui_browser.php +++ b/livesupport/modules/htmlUI/var/html/ui_browser.php @@ -16,8 +16,13 @@ if (is_array($_REQUEST['popup'])){ $Smarty->display('popup/_clear_parent.tpl'); break; + case "_2PL.simpleManagement": + $Smarty->assign('target', 'PL.simpleManagement'); + $Smarty->display('popup/_redirector.tpl'); + break; + case "login": - $Smarty->assign('login', $uiBrowser->login($Smarty, $ui_fmask)); + $Smarty->assign('dynform', $uiBrowser->login($ui_fmask)); $Smarty->display('popup/login.tpl'); break; @@ -41,11 +46,6 @@ if (is_array($_REQUEST['popup'])){ $Smarty->display('popup/deleteItem.tpl'); break; - case "_2PL.simpleManagement": - $Smarty->assign('target', 'PL.simpleManagement'); - $Smarty->display('popup/_redirector.tpl'); - break; - case "PL.changeTransition"; $Smarty->assign('dynform', $uiBrowser->PLAYLIST->changeTransitionForm($_REQUEST['id'], $_REQUEST['type'], $ui_fmask['PL.changeTransition'])); $Smarty->display('popup/PLAYLIST.changeTransition.tpl'); diff --git a/livesupport/modules/htmlUI/var/templates/popup/login.tpl b/livesupport/modules/htmlUI/var/templates/popup/login.tpl index 001c7bad8..6172345a6 100755 --- a/livesupport/modules/htmlUI/var/templates/popup/login.tpl +++ b/livesupport/modules/htmlUI/var/templates/popup/login.tpl @@ -1,23 +1,9 @@ {include file="popup/header.tpl"} -{$login.javascript} -
- |
-