Redesign - popupi pri analizah - V DELU

This commit is contained in:
pero1203 2022-02-21 12:06:56 +01:00
parent 109efddbe4
commit 18b4a6a6d2
6 changed files with 184 additions and 359 deletions

View File

@ -170,7 +170,9 @@ class SurveyMissingProfiles
$_tpes_array = array(MISSING_TYPE_DESCRIPTOR=>$lang['srv_analiza_arhiviraj_type_'.MISSING_TYPE_DESCRIPTOR],MISSING_TYPE_FREQUENCY=>$lang['srv_analiza_arhiviraj_type_'.MISSING_TYPE_FREQUENCY],MISSING_TYPE_CROSSTAB=>$lang['srv_analiza_arhiviraj_type_'.MISSING_TYPE_CROSSTAB]);
$_sys_missings = self::$smv->GetMissingValuesForSurvey();
$_sys_unset = self::$smv->GetUnsetValuesForSurvey();
echo '<div id="infoMissingProfile">' . $lang['srv_missing_profile_title1'] . '</div >';
echo '<div id="infoMissingProfile" class="profile_right_note">' . $lang['srv_missing_profile_title1'] . '</div>';
echo '<div id="missingProfileFieldsetHolder1">'.NEW_LINE;
echo '<fieldset id="missingProfileFieldset">'.NEW_LINE;

View File

@ -197,23 +197,30 @@ class SurveyStatusProfiles
#vsebino shranimo v buffer
ob_start();
if ( self::$currentProfileId != SSP_DEFAULT_PROFILE ) {
echo '<div id="not_default_setting">';
echo $lang['srv_not_default_setting'];
echo '</div><br class="clr displayNone">';
}
echo '<div class="popup_close"><a href="#" onClick="$(\'#fade\').fadeOut(\'slow\');$(\'#fullscreen\').fadeOut(\'slow\').html(\'\'); return false;">✕</a></div>';
echo ' <div id="status_profile_holder">';
if ( self::$currentProfileId != SSP_DEFAULT_PROFILE ) {
echo '<div id="not_default_setting" class="popup_note">';
echo $lang['srv_not_default_setting'];
echo '</div>';
}
echo '<div class="popup_main with_menu">';
echo ' <div id="status_profile_holder" class="popup_left">';
self :: DisplayProfileOptions($pid);
echo ' </div>';
echo ' <div id="status_profile_data_holder">';
echo ' <div id="status_profile_data_holder" class="popup_right">';
self :: DisplayProfileData($pid);
echo ' <br class="clr" />';
echo ' </div>';
echo ' </div>';
// cover Div
echo '<div id="statusProfileCoverDiv"></div>';
@ -248,13 +255,11 @@ class SurveyStatusProfiles
echo '<input id="deleteProfileId" type="hidden" value="' . $pid . '" />';
$button = new PopUpButton($lang['srv_delete_profile_yes']);
echo $button -> setFloat('right')
->setButtonColor('orange')
echo $button -> setButtonColor('orange')
-> addAction('onClick','statusProfileAction(\'deleteConfirm\'); return false;');
$button = new PopUpButton($lang['srv_cancel']);
echo $button -> setFloat('right')
-> addAction('onClick','statusProfileAction(\'deleteCancel\'); return false;');
echo $button -> addAction('onClick','statusProfileAction(\'deleteCancel\'); return false;');
echo '</div>';
@ -263,44 +268,28 @@ class SurveyStatusProfiles
#dodamo vsebino
$popUp->setContent($content);
/*
if ($pid < 0) { #Imamo sejo, lahko poženemo samo kot sejo
$run_lbl = $lang['srv_run_as_session_profile'];
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="statusProfileAction(\'runSession\'); return false;"><span>'.$run_lbl.'</span></a></span></span>';
} else {
# shrani - pozeni
$run_lbl = $lang['srv_run_profile'];
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick=""><span>'.$run_lbl.'</span></a></span></span>';
$run_lbl = $lang['srv_run_as_session_profile'];
echo '<span class="floatRight spaceLeft" ><span class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="statusProfileAction(\'runSession\'); return false;"><span>'.$run_lbl.'</span></a></span></span>';
}
*/
$button = new PopUpButton($lang['srv_choose_profile']);
$button -> setFloat('right')
->setButtonColor('orange')
-> addAction('onClick','statusProfileAction(\'choose\'); return false;');
# dodamo gumb Prekliči
$button = new PopUpCancelButton();
$popUp->addButton($button);
#dodamo gumb shrani
if (self::$profiles[$pid]['system'] != 1 && $pid != -1)
{
if (self::$profiles[$pid]['system'] != 1 && $pid != -1){
$button = new PopUpButton($lang['srv_save_profile']);
$button -> setFloat('right')
-> addAction('onClick','statusProfileAction(\'save\'); return false;');
$button -> addAction('onClick','statusProfileAction(\'save\'); return false;');
$popUp->addButton($button);
}
$button = new PopUpButton($lang['srv_new_profile_name']);
$button -> setFloat('right')
-> addAction('onClick','statusProfileAction(\'newName\'); return false;');
$button -> addAction('onClick','statusProfileAction(\'newName\'); return false;');
$popUp->addButton($button);
# dodamo gumb Prekliči
$button = new PopUpCancelButton();
$button -> setFloat('right');
$button = new PopUpButton($lang['srv_choose_profile']);
$button ->setButtonColor('orange')
-> addAction('onClick','statusProfileAction(\'choose\'); return false;');
$popUp->addButton($button);
echo $popUp;
}
@ -418,15 +407,18 @@ class SurveyStatusProfiles
$_sql_qry = sisplet_query($_sql_string);
$_sql_row = mysqli_fetch_assoc($_sql_qry);
echo '<div id="status_profile" class="select">';
echo '<div id="status_profile" class="list select">';
foreach ( self::$profiles as $key => $profile ) {
if ($key != 1 || ($key == 1 && (int)$_sql_row['collect_all_status'] > 0 )) {
echo '<div id="status_profile_'.$profile['id'].'" class="option' . ($profile['id'] == $pid ? ' active' : '') . '" value="'.$profile['id'].'" '.($profile['id'] == $pid ? '' : ' onclick="show_status_profile_data(' . $profile['id'] . '); return false;"').'>';
echo '<div id="status_profile_'.$profile['id'].'" class="list-item option' . ($profile['id'] == $pid ? ' active' : '') . '" value="'.$profile['id'].'" '.($profile['id'] == $pid ? '' : ' onclick="show_status_profile_data(' . $profile['id'] . '); return false;"').'>';
echo $profile['name'];
if($profile['id'] == $pid){
echo '<div class="profile_icons">';
#dodamo gumb izbriši
if (self::$profiles[$pid]['system'] != 1 ){
echo ' <a href="#" onclick="statusProfileAction(\'deleteAsk\'); return false;" value="'.$lang['srv_delete_profile'].'"><span class="faicon delete_circle icon-orange_link floatRight" style="margin-top:1px;"></span></a>'."\n";
@ -435,6 +427,8 @@ class SurveyStatusProfiles
if (self::$profiles[$pid]['system'] != 1 && $pid != -1){
echo ' <a href="#" onclick="statusProfileAction(\'renameAsk\'); return false;" value="'.$lang['srv_rename_profile'].'"><span class="faicon edit floatRight spaceRight"></span></a>'."\n";
}
echo '</div>';
}
echo '</div>';
@ -443,9 +437,7 @@ class SurveyStatusProfiles
echo '</div>';
echo '<script>';
echo '$(function() {';
echo 'scrollToProfile("#status_profile_'.$pid.'");';
echo '});';
echo ' $(function(){ scrollToProfile("#status_profile_'.$pid.'"); });';
echo '</script>';
}

View File

@ -386,25 +386,30 @@ class SurveyTimeProfiles {
$currentFilterProfile = $_all_profiles[$current_pid];
if ( $current_pid != STP_DEFAULT_PROFILE ) {
echo '<div id="not_default_setting">';
echo '<div id="not_default_setting" class="popup_note">';
echo $lang['srv_not_default_setting'];
echo '</div><br class="clr displayNone">';
echo '</div>';
}
echo '<div class="time_profile_left_right floatLeft">';
echo '<div class="time_profile_holder">';
# zlistamo vse profile
echo '<div id="time_profile" class="select">';
echo '<div class="popup_main with_menu">';
echo '<div class="time_profile_holder popup_left">';
# zlistamo vse profile
echo '<div id="time_profile" class="list select">';
if (count($_all_profiles)) {
foreach ($_all_profiles as $id=>$profile) {
echo '<div class="option' . ($current_pid == $id ? ' active' : '') . '" id="time_profile_' . $id . '" value="'.$id.'">';
echo '<div class="list-item option' . ($current_pid == $id ? ' active' : '') . '" id="time_profile_' . $id . '" value="'.$id.'">';
echo $profile['name'];
if($current_pid == $id){
echo '<div class="profile_icons">';
# privzetega profila ne moremo ne zbrisat ne preimenovat
if ($current_pid != 0) {
echo '<a href="#" title="'.$lang['srv_delete_profile'].'" onclick="timeProfileAction(\'show_delete\'); return false;"><span class="faicon delete_circle icon-orange_link floatRight" style="margin-top:1px;"></span></a>';
@ -412,42 +417,44 @@ class SurveyTimeProfiles {
if ($current_pid > 0) {
echo '<a href="#" title="'.$lang['srv_rename_profile'].'" onclick="timeProfileAction(\'show_rename\'); return false;"><span class="faicon edit floatRight spaceRight"></span></a>';
}
echo '</div>';
}
echo '</div>';
}
}
echo ' </div>'; // time_profile
echo '</div>'; //time_profile_holder
echo '</div>'; //time_profile_left
echo '</div>';
echo '<button class="small white-black" title="'.$lang['srv_create_new_profile'].'" onclick="timeProfileAction(\'show_create\'); return false;"><span class="faicon plus_32"></span>'.$lang['srv_create_new_profile'] . '</button>';
echo '</div>';
echo '<div class="time_profile_left_right floatRight">';
echo '<div id="time_profile_content">';
echo '<div id="time_profile_content" class="profile_right">';
self::DisplayProfileData($current_pid);
echo '</div>'; // time_profile_content
echo '</div>'; // time_profile_right
echo '<div class="time_profile_button_right_holder floatRight">';
echo '</div>';
echo '<div class="button_holder">';
if ($current_pid == 0) {
echo '<span class="floatRight" title="'.$lang['srv_run_as_session_profile'] . '"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="timeProfileAction(\'run_session_profile\'); return false;"><span>'.$lang['srv_run_as_session_profile'] . '</span></a></div></span>';
# echo '<span class="floatRight spaceRight" title="'.$lang['srv_save_run_profile'] . '"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'run_profile\'); return false;"><span>'.$lang['srv_run_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_create_new_profile'].'"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'show_create\'); return false;"><span>'.$lang['srv_create_new_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_close_profile'].'"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'cancel\'); return false;"><span>'.$lang['srv_close_profile'] . '</span></a></div></span>';
} else if ($current_pid == -1) {
echo '<span class="floatRight" title="'.$lang['srv_run_as_session_profile'] . '"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="timeProfileAction(\'run_session_profile\'); return false;"><span>'.$lang['srv_run_as_session_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_create_new_profile'].'"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'show_create\'); return false;"><span>'.$lang['srv_create_new_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_close_profile'].'"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'cancel\'); return false;"><span>'.$lang['srv_close_profile'] . '</span></a></div></span>';
} else {
echo '<span class="floatRight" title="'.$lang['srv_save_run_profile'] . '"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_orange" href="#" onclick="timeProfileAction(\'run_profile\'); return false;"><span>'.$lang['srv_run_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_run_as_session_profile'] . '"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'run_session_profile\'); return false;"><span>'.$lang['srv_run_as_session_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_create_new_profile'].'"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'show_create\'); return false;"><span>'.$lang['srv_create_new_profile'] . '</span></a></div></span>';
echo '<span class="floatRight spaceRight" title="'.$lang['srv_close_profile'].'"><div class="buttonwrapper"><a class="ovalbutton ovalbutton_gray" href="#" onclick="timeProfileAction(\'cancel\'); return false;"><span>'.$lang['srv_close_profile'] . '</span></a></div></span>';
echo '<button class="medium white-blue" title="'.$lang['srv_close_profile'].'" onclick="timeProfileAction(\'cancel\'); return false;">'.$lang['srv_close_profile'] . '</button>';
echo '<button class="medium blue" title="'.$lang['srv_run_as_session_profile'].'" onclick="timeProfileAction(\'run_session_profile\'); return false;">'.$lang['srv_run_as_session_profile'] . '</button>';
}
else if ($current_pid == -1) {
echo '<button class="medium white-blue" title="'.$lang['srv_close_profile'].'" onclick="timeProfileAction(\'cancel\'); return false;">'.$lang['srv_close_profile'] . '</button>';
echo '<button class="medium blue" title="'.$lang['srv_run_as_session_profile'].'" onclick="timeProfileAction(\'run_session_profile\'); return false;">'.$lang['srv_run_as_session_profile'] . '</button>';
}
else {
echo '<button class="medium white-blue" title="'.$lang['srv_close_profile'].'" onclick="timeProfileAction(\'cancel\'); return false;">'.$lang['srv_close_profile'] . '</button>';
echo '<button class="medium white-blue" title="'.$lang['srv_run_as_session_profile'].'" onclick="timeProfileAction(\'run_session_profile\'); return false;">'.$lang['srv_run_as_session_profile'] . '</button>';
echo '<button class="medium blue" title="'.$lang['srv_save_run_profile'].'" onclick="timeProfileAction(\'run_profile\'); return false;">'.$lang['srv_run_profile'] . '</button>';
}
echo '</div>'; // time_profile_button_right_holder
echo '</div>';
// cover Div

View File

@ -6857,6 +6857,12 @@ a.help {
.divPopUp p {
line-height: 20px;
}
.divPopUp .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
.divPopUp .popup_main {
display: flex;
flex-direction: column;
@ -6870,6 +6876,7 @@ a.help {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -7297,6 +7304,12 @@ body.waitlong #loading {
#check_pogoji p {
line-height: 20px;
}
#check_pogoji .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#check_pogoji .popup_main {
display: flex;
flex-direction: column;
@ -7310,6 +7323,7 @@ body.waitlong #loading {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -7458,6 +7472,12 @@ body.waitlong #loading {
#dropped_alert p {
line-height: 20px;
}
#dropped_alert .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#dropped_alert .popup_main {
display: flex;
flex-direction: column;
@ -7471,6 +7491,7 @@ body.waitlong #loading {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -7628,6 +7649,12 @@ body.waitlong #loading {
#popup_user_access p {
line-height: 20px;
}
#popup_user_access .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#popup_user_access .popup_main {
display: flex;
flex-direction: column;
@ -7641,6 +7668,7 @@ body.waitlong #loading {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -13637,6 +13665,12 @@ textarea#addusers, textarea#addusers_note {
#vrednost_edit p {
line-height: 20px;
}
#vrednost_edit .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#vrednost_edit .popup_main {
display: flex;
flex-direction: column;
@ -13650,6 +13684,7 @@ textarea#addusers, textarea#addusers_note {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -13813,6 +13848,12 @@ textarea#addusers, textarea#addusers_note {
#calculation p {
line-height: 20px;
}
#calculation .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#calculation .popup_main {
display: flex;
flex-direction: column;
@ -13826,6 +13867,7 @@ textarea#addusers, textarea#addusers_note {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -14036,6 +14078,12 @@ and open the template in the editor.
#preview_spremenljivka p {
line-height: 20px;
}
#preview_spremenljivka .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#preview_spremenljivka .popup_main {
display: flex;
flex-direction: column;
@ -14049,6 +14097,7 @@ and open the template in the editor.
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -14980,6 +15029,12 @@ dl.arch_email dd {
#inv_view_arch_recipients p {
line-height: 20px;
}
#inv_view_arch_recipients .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#inv_view_arch_recipients .popup_main {
display: flex;
flex-direction: column;
@ -14993,6 +15048,7 @@ dl.arch_email dd {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -15599,6 +15655,12 @@ and open the template in the editor.
#div_export_setting_show p {
line-height: 20px;
}
#div_export_setting_show .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#div_export_setting_show .popup_main {
display: flex;
flex-direction: column;
@ -15612,6 +15674,7 @@ and open the template in the editor.
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -18093,6 +18156,12 @@ and open the template in the editor.
#dsp_inspect_cover p {
line-height: 20px;
}
#dsp_inspect_cover .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#dsp_inspect_cover .popup_main {
display: flex;
flex-direction: column;
@ -18106,6 +18175,7 @@ and open the template in the editor.
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -18322,45 +18392,8 @@ and open the template in the editor.
opacity: 0.4;
}
fieldset.statusProfileFieldset {
width: 460px;
margin: 0px;
padding: 5px;
border: 0;
border-top: 1px solid #1E88E5;
}
fieldset.statusProfileFieldset legend {
background-color: #FFFFFF;
}
fieldset#missingProfileFieldset {
width: 470px;
margin: 0px;
padding: 5px;
border: 0;
border-top: 1px solid #1E88E5;
}
#missingProfileFieldsetHolder1 {
width: 481px;
padding: 4px;
margin-top: 4px;
margin-bottom: 5px;
font-size: 11px;
}
#div_missing_profiles {
display: none;
position: relative;
z-index: 90;
width: 730px;
}
#div_missing_profiles fieldset {
border: 0;
border-top: 1px solid #1E88E5;
}
#div_missing_profiles legend {
background-color: #FFFFFF;
}
.fs_container {
@ -18502,79 +18535,6 @@ fieldset#missingProfileFieldset {
background: #cfc;
}
.statistic_profile_left_right {
width: auto;
height: 190px;
padding: 5px;
}
.time_profile_left_right {
width: auto;
height: 200px;
padding: 5px;
}
.time_profile_left_right.floatRight {
height: 140px;
border: 1px solid #1E88E5;
background-color: #FFFFFF;
float: right;
padding: 10px;
width: 380px;
}
.statistic_profile_holder {
float: left;
width: 190px;
height: 150px;
color: #1E88E5;
}
#statistic_profile {
height: 150px;
overflow: auto;
cursor: pointer;
width: 190px;
}
#statistic_profile .option {
padding: 2px 5px;
margin-bottom: 5px;
}
#statistic_profile .active {
padding: 2px 5px;
border: 1px solid #1E88E5;
background-color: #FFFFFF;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
#time_profile {
height: 150px;
overflow: auto;
cursor: pointer;
width: 190px;
}
#time_profile .option {
padding: 2px 5px;
margin-bottom: 5px;
}
#time_profile .active {
padding: 2px 5px;
border: 1px solid #1E88E5;
background-color: #FFFFFF;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
#status_casi {
height: 150px;
overflow: auto;
cursor: pointer;
width: 190px;
}
#tbl_color_ersidual {
font-size: 11px;
line-height: 12px;
@ -18583,44 +18543,6 @@ fieldset#missingProfileFieldset {
margin-left: 5px;
}
#variableTypeNote {
margin-bottom: 16px;
padding: 8px;
font-size: 14px;
border: 1px #C4C4C4 solid;
}
#variableProfileNote {
margin-bottom: 16px;
padding: 8px;
font-size: 14px;
border: 1px #C4C4C4 solid;
}
#variableProfileNote div.if_content {
display: inline-block;
}
#timeProfileDafaultNote {
margin-bottom: 16px;
padding: 8px;
font-size: 14px;
border: 1px #C4C4C4 solid;
}
#dashboardEmailFilter {
margin-bottom: 16px;
padding: 8px;
font-size: 14px;
border: 1px #C4C4C4 solid;
}
#not_default_setting {
margin-bottom: 16px;
padding: 8px;
font-size: 14px;
border: 1px #C4C4C4 solid;
}
input#startDate {
width: 80px;
}
@ -18748,6 +18670,12 @@ input#endDate {
.mc_table_settings p {
line-height: 20px;
}
.mc_table_settings .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
.mc_table_settings .popup_main {
display: flex;
flex-direction: column;
@ -18761,6 +18689,7 @@ input#endDate {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -18938,6 +18867,12 @@ input#endDate {
#newMCTable p {
line-height: 20px;
}
#newMCTable .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#newMCTable .popup_main {
display: flex;
flex-direction: column;
@ -18951,6 +18886,7 @@ input#endDate {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -19104,6 +19040,12 @@ input#endDate {
#renameMCTable p {
line-height: 20px;
}
#renameMCTable .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#renameMCTable .popup_main {
display: flex;
flex-direction: column;
@ -19117,6 +19059,7 @@ input#endDate {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}
@ -19270,6 +19213,12 @@ input#endDate {
#deleteMCTable p {
line-height: 20px;
}
#deleteMCTable .popup_note {
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px #C4C4C4 solid;
}
#deleteMCTable .popup_main {
display: flex;
flex-direction: column;
@ -19283,6 +19232,7 @@ input#endDate {
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px #C4C4C4 solid;
}

View File

@ -111,6 +111,15 @@
line-height: 20px;
}
.popup_note{
margin-bottom: 16px;
padding: 8px;
font-size: 16px;
border: 1px $dark-gray solid;
}
.popup_main{
display: flex;
flex-direction: column;
@ -127,6 +136,7 @@
width: 216px;
min-width: 216px;
padding-right: 16px;
padding-bottom: 16px;
margin-right: 16px;
border-right: 1px $dark-gray solid;

View File

@ -135,45 +135,10 @@ and open the template in the editor.
background: $white;
opacity: .40;
}
fieldset.statusProfileFieldset {
width: 460px;
margin: 0px;
padding: 5px;
border: 0;
border-top: 1px solid $blue;
legend {
background-color: $white;
}
}
fieldset#missingProfileFieldset {
width: 470px;
margin: 0px;
padding: 5px;
border: 0;
border-top: 1px solid $blue;
}
#missingProfileFieldsetHolder1 {
width: 481px;
padding: 4px;
margin-top: 4px;
margin-bottom: 5px;
font-size: 11px;
}
#div_missing_profiles {
display: none;
position: relative;
z-index: 90;
width: 730px;
fieldset {
border: 0;
border-top: 1px solid $blue;
}
legend {
background-color: $white;
}
}
.fs_container {
@ -311,80 +276,6 @@ fieldset#missingProfileFieldset {
}
}
.statistic_profile_left_right {
width: auto;
height: 190px;
padding: 5px;
}
.time_profile_left_right {
width: auto;
height: 200px;
padding: 5px;
}
.time_profile_left_right.floatRight {
height: 140px;
border: 1px solid $blue;
background-color: $white;
float: right;
padding: 10px;
width: 380px;
}
.statistic_profile_holder {
float: left;
width: 190px;
height: 150px;
color: $blue;
}
#statistic_profile {
height: 150px;
overflow: auto;
cursor: pointer;
width: 190px;
.option {
padding: 2px 5px;
margin-bottom: 5px;
}
.active {
padding: 2px 5px;
border: 1px solid $blue;
background-color: $white;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
}
#time_profile {
height: 150px;
overflow: auto;
cursor: pointer;
width: 190px;
.option {
padding: 2px 5px;
margin-bottom: 5px;
}
.active {
padding: 2px 5px;
border: 1px solid $blue;
background-color: $white;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
}
#status_casi {
height: 150px;
overflow: auto;
cursor: pointer;
width: 190px;
}
#tbl_color_ersidual {
font-size: 11px;
@ -394,33 +285,6 @@ fieldset#missingProfileFieldset {
margin-left: 5px;
}
@mixin profile_note() {
margin-bottom: 16px;
padding: 8px;
font-size: 14px;
border: 1px $dark-gray solid;
}
#variableTypeNote {
@include profile_note();
}
#variableProfileNote {
@include profile_note();
div.if_content {
display: inline-block;
}
}
#timeProfileDafaultNote {
@include profile_note();
}
#dashboardEmailFilter {
@include profile_note();
}
#not_default_setting {
@include profile_note();
}
input#startDate {
width: 80px;
}