mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-12 16:46:35 +00:00
Dashboard-Styles changed
git-svn-id: https://svn.fhem.de/fhem/trunk@5754 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
0323db98a6
commit
094a8fc68b
File diff suppressed because it is too large
Load Diff
@ -25,6 +25,7 @@
|
||||
var dashboard_name = "unknown";
|
||||
var dashboard_fullsize = false;
|
||||
var dashboard_buttonbar = "top";
|
||||
var dashboard_lockstate = "lock";
|
||||
|
||||
//Only use for debugging
|
||||
function showdebugMessage(msg){
|
||||
@ -33,7 +34,7 @@ function showdebugMessage(msg){
|
||||
|
||||
function saveOrder() {
|
||||
var EndSaveResult = "";
|
||||
var ActiveTab = $("#tabs .ui-tabs-panel:visible").attr("id").substring(14,13);
|
||||
var ActiveTab = $("#dashboardtabs .ui-tabs-panel:visible").attr("id").substring(14,13);
|
||||
//------------------- Build new Position string ----------------------
|
||||
$(".dashboard_column").each(function(index, value){
|
||||
var colid = value.id;
|
||||
@ -63,14 +64,14 @@ function saveOrder() {
|
||||
});
|
||||
//------------------------------------------------------------------------
|
||||
//--------------------- Store new Positions ------------------------
|
||||
if (EndSaveResult != "") { $("#tabs .ui-tabs-panel:visible").data("tabwidgets",EndSaveResult); } //store widgetposition in active tab Widget
|
||||
if (EndSaveResult != "") { $("#dashboardtabs .ui-tabs-panel:visible").data("tabwidgets",EndSaveResult); } //store widgetposition in active tab Widget
|
||||
$("#setPosition").button({disabled: false}); //Mark that the Changes are not saved
|
||||
//------------------------------------------------------------------------
|
||||
}
|
||||
|
||||
function restoreOrder() {
|
||||
var params = (document.getElementById("dashboard_attr").value).split(","); //get current Configuration
|
||||
var ActiveTab = $("#tabs .ui-tabs-panel:visible");
|
||||
var ActiveTab = $("#dashboardtabs .ui-tabs-panel:visible");
|
||||
var ActiveTabId = ActiveTab.attr("id").substring(14,13);
|
||||
var aColWidth = GetColWidth(params[7],params[12]);
|
||||
|
||||
@ -149,7 +150,7 @@ function GetColWidth(ColCount, ColWidth){
|
||||
}
|
||||
|
||||
function dashboard_setlock(){
|
||||
$("#dashboard_button_lock").prepend('<span class="dashboard_button_icon dashboard_button_iconlock"></span>');
|
||||
//$("#dashboard_button_lock").prepend('<span class="dashboard_button_icon dashboard_button_iconlock"></span>');
|
||||
//############################################################
|
||||
$( ".dashboard_column" ).sortable( "option", "disabled", true );
|
||||
$( ".dashboard_widget" ).removeClass("dashboard_widgethelper");
|
||||
@ -161,7 +162,7 @@ function dashboard_setlock(){
|
||||
function dashboard_unsetlock(){
|
||||
var params = (document.getElementById("dashboard_attr").value).split(","); //get current Configuration
|
||||
|
||||
$("#dashboard_button_lock").prepend('<span class="dashboard_button_icon dashboard_button_iconunlock"></span>');
|
||||
//$("#dashboard_button_lock").prepend('<span class="dashboard_button_icon dashboard_button_iconunlock"></span>');
|
||||
//############################################################
|
||||
$( ".dashboard_column" ).sortable( "option", "disabled", false );
|
||||
if (params[2] == 1) { $( ".dashboard_widget" ).addClass("dashboard_widgethelper"); } else { $( ".dashboard_widget" ).removeClass("dashboard_widgethelper"); }//Show Widget-Helper Frame
|
||||
@ -183,7 +184,7 @@ function dashboard_setposition(){
|
||||
$("#setPosition").button({disabled: true});
|
||||
//---------------------------------------------------------------------
|
||||
//--------------------- store active Tab ------------------------------
|
||||
var activeTab = ($( "#tabs" ).tabs( "option", "active" ))+1;
|
||||
var activeTab = ($( "#dashboardtabs" ).tabs( "option", "active" ))+1;
|
||||
if (params[11] != activeTab){
|
||||
FW_cmd(document.location.pathname+'?XHR=1&cmd.'+dashboard_name+'=attr '+dashboard_name+' dashboard_activetab '+activeTab);
|
||||
}
|
||||
@ -218,9 +219,31 @@ function dashboard_modifyWidget(){
|
||||
});
|
||||
}
|
||||
|
||||
function dashboard_openModal(tabid) {
|
||||
$("#dashboard-dialog-tabs").tabs();
|
||||
$("#tabID").html("TabID: "+tabid);
|
||||
$("#tabTitle").val( $($("#dashboardtabs li")[tabid]).text() );
|
||||
|
||||
$("#tabEdit").dialog( {
|
||||
modal: true,
|
||||
title: "Dashboard-Tab Details",
|
||||
resizable: false,
|
||||
width:350,
|
||||
buttons: {
|
||||
"Ok": function() {
|
||||
/*$($("#dashboardtabs li")[tabid]).text($("#tabTitle").val());*/
|
||||
$(this).dialog("close");
|
||||
}
|
||||
},
|
||||
create: function( event, ui ) {
|
||||
$(this).parent().removeClass().addClass( "dashboard dashboard-dialog ui-dialog ui-widget ui-widget-content ui-corner-all ui-front ui-dialog-buttons ui-draggable" );
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function adddashboardButton(position, text, id, hint) {
|
||||
$("#" + id).button();
|
||||
var my_button = '<span id="' + id + '" title="'+hint+'" class="dashboard-button dashboard-button-custom dashboard-button-'+id+' dashboard-state-default" style="">'+text+'</span>';
|
||||
var my_button = '<span id="' + id + '" title="'+hint+'" class="dashboard dashboard-button dashboard-button-custom dashboard-button-'+id+' dashboard-state-default" style="">'+text+'</span>';
|
||||
$("#dashboard_tabnav").prepend(my_button);
|
||||
}
|
||||
|
||||
@ -228,13 +251,14 @@ function dashboard_buildButtons() {
|
||||
adddashboardButton("top", "", "defineDetails", "Show Details");
|
||||
$("#defineDetails").click(function () {location.href=document.location.pathname+'?detail='+dashboard_name;});
|
||||
|
||||
adddashboardButton("top", "", "setPosition", "Set Position");
|
||||
$("#setPosition").button({disabled: true});
|
||||
$("#setPosition").click(function () {dashboard_setposition()});
|
||||
|
||||
//adddashboardButton("top", "XX", "editTab", "Edit Tab");
|
||||
//$("#editTab").click(function () {alert("comming soon")});
|
||||
|
||||
if (dashboard_lockstate != "lock"){
|
||||
adddashboardButton("top", "", "setPosition", "Set Position");
|
||||
$("#setPosition").button({disabled: true});
|
||||
$("#setPosition").click(function () {dashboard_setposition()});
|
||||
|
||||
// adddashboardButton("top", "XX", "editTab", "Edit Tab");
|
||||
// $("#editTab").click(function () {dashboard_openModal($( "#dashboardtabs" ).tabs( "option", "active" ))});
|
||||
}
|
||||
if (dashboard_fullsize == true) {
|
||||
adddashboardButton("top", "", "goBack", "Back");
|
||||
$("#goBack").click(function () {location.href=document.location.pathname;});
|
||||
@ -247,6 +271,7 @@ $(document).ready( function () {
|
||||
//--------------------------------- Attribute des Dashboards ------------------------------------------------------------------
|
||||
var params = (document.getElementById("dashboard_attr").value).split(","); //get current Configuration
|
||||
dashboard_name = params[0];
|
||||
dashboard_lockstate = params[3];
|
||||
dashboard_buttonbar = params[4];
|
||||
dashboard_fullsize = (params[13] == 1) ? true : false;
|
||||
//-------------------------------------------------------------------------------------------------------------------------------------
|
||||
@ -308,10 +333,11 @@ $(document).ready( function () {
|
||||
}
|
||||
|
||||
//--------------------------------- Dashboard Tabs ------------------------------------------------------------------------------
|
||||
$("#tabs").tabs({
|
||||
$("#dashboardtabs").tabs({
|
||||
active: 0,
|
||||
create: function(event, ui) {
|
||||
$( "#tabs" ).tabs( "option", "active", params[11]-1 ); //set active Tab
|
||||
$(this).find('li').addClass("ui-corner-bottom");
|
||||
$( "#dashboardtabs" ).tabs( "option", "active", params[11]-1 ); //set active Tab
|
||||
restoreOrder();
|
||||
},
|
||||
activate: function (event, ui) {
|
||||
@ -324,7 +350,7 @@ $(document).ready( function () {
|
||||
|
||||
dashboard_modifyWidget();
|
||||
if (dashboard_buttonbar != "hidden") dashboard_buildButtons();
|
||||
if ((params[3] == "lock") || (dashboard_buttonbar == "hidden")) {dashboard_setlock();} else {dashboard_unsetlock();}
|
||||
if ((dashboard_lockstate == "lock") || (dashboard_buttonbar == "hidden")) {dashboard_setlock();} else {dashboard_unsetlock();}
|
||||
if (params[14] != "none" ) {$('<style type="text/css">'+params[14]+'</style>').appendTo($('head')); }
|
||||
}
|
||||
});
|
@ -1,17 +1,12 @@
|
||||
/* Author: svenson08*/
|
||||
|
||||
.dashboard_column { float: left; }
|
||||
.dashboard_columnhelper { border: 1px dotted #CCCCCC; }
|
||||
|
||||
.dashboard_widget { border-radius: 8px; float: left; padding: 0.2em;}
|
||||
.dashboard_widgethelper { background-color: #111111; }
|
||||
.dashboard_widgetheader { background: none repeat scroll 0 0 #333333; border: 1px solid #FFFFFF;
|
||||
box-shadow: 5px 5px 5px #000000; border-radius: 8px 8px 8px 8px; margin: 0.2em;
|
||||
padding-bottom: 4px; padding-top: 3px; padding-left: 0.7em; }
|
||||
.dashboard_columnhelper { border: 1px dotted #CCCCCC;}
|
||||
|
||||
.dashboard_content { padding: 0.2em; }
|
||||
|
||||
.dashboard_content.table { box-shadow: none !important; border-radius: 0 0 8px 8px !important; border: 1px none #FFFFFF!important;
|
||||
border-left: 1px solid #FFFFFF !important; border-right: 1px solid #FFFFFF !important; border-bottom: 1px solid #FFFFFF !important;}
|
||||
|
||||
border-left: 1px solid #FFFFFF !important; border-right: 1px solid #FFFFFF !important; border-bottom: 1px solid #FFFFFF !important;}
|
||||
|
||||
.dashboard_button_icon { width: 13px; height: 14px; background-repeat: no-repeat;
|
||||
float: left; background-image: url(../images/default/dashboardicons.png); }
|
||||
.dashboard_button_iconplus { margin: 0.1em 0.4em; float: right; background-position: -65px 0px; }
|
||||
@ -23,37 +18,102 @@
|
||||
.dashboard-button-setPosition{right: 45px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAYUlEQVR4XtWRUQrAMAhDneyg9mT2ptugHRaCY/FnLJAveWKifCW7AS3Avlj2AmzrFUrDIYhgJNwvN4VcBDwiYC5/CyclBpDDoe2poATGEuegs3AswCUIk/8+pl2K8uE/6ATG4BstrVLVgQAAAABJRU5ErkJggg==') !important;}
|
||||
.dashboard-button-goBack{right: 80px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAZ0lEQVQ4jd3RMQqDQBBA0YekV0wj3v8QNqZTJBEtPY42K9l2p0s+TDHF/zAMf8kTE4aovOPEp1TucGRyE5XXUhnmJJfMCFUKVMp55EuLzfeENhBUY0mRA30kkr/xHQnckQWvaODHuADAUSEXjMLoMwAAAABJRU5ErkJggg==') !important;}
|
||||
.dashboard-button-editTab{right: 115px;}
|
||||
.ui-state-disabled {cursor: default; opacity: 0.35;}
|
||||
.dashboard .ui-button {display: inline-block;line-height: normal;margin-right: .1em;cursor: pointer;vertical-align: middle;text-align: center;overflow: visible;}
|
||||
.dashboard .ui-button,
|
||||
.dashboard .ui-button:link,
|
||||
.dashboard .ui-button:visited,
|
||||
.dashboard .ui-button:hover,
|
||||
.dashboard .ui-button:active {text-decoration: none;}
|
||||
.dashboard .ui-button .ui-button-text {display: block;line-height: normal;}
|
||||
.dashboard .ui-button-text-only .ui-button-text {padding: .4em 1em;}
|
||||
|
||||
.dashboard .ui-resizable { position: relative; }
|
||||
.dashboard .ui-resizable-handle { position: absolute; font-size: 0.1px; }
|
||||
.dashboard .ui-resizable-se { cursor: se-resize;width: 12px; height: 12px; right: 1px;bottom: 1px; background-image: url('data:image/gif;base64,R0lGODlhEAAQAIABAJOnY////yH5BAEAAAEALAAAAAAQABAAAAIZjI+py+0IwDtx2ktlqI1zDCae9mXGGKZgAQA7');}
|
||||
|
||||
.ui-resizable { position: relative; }
|
||||
.ui-resizable-handle { position: absolute; font-size: 0.1px; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px;
|
||||
bottom: 1px; background-image: url(../images/default/dashboardicons.png);
|
||||
background-position: -78px 0px; background-repeat: no-repeat; }
|
||||
.ui-sortable-placeholder { border: 1px dotted #FFFFFF; visibility: visible !important;
|
||||
height: 25px !important; width: 150px; }
|
||||
|
||||
.dashboard { padding: 0; margin: 0; }
|
||||
.dashboard_tabnav { list-style: none; margin: 0; padding: 0 .5em 0; }
|
||||
.dashboard_tabnav:before,
|
||||
.dashboard_tabnav:after { content: ""; display: table; border-collapse: collapse; clear: both; }
|
||||
.dashboard_tabpanel { border: 1px solid #cccccc; background-color: #333333; border: 1px solid #dddddd;
|
||||
border-radius: 8px 8px 8px 8px; box-shadow: 5px 5px 5px #000000; }
|
||||
.dashboard_tab_top { border: 1px solid #cccccc; border-bottom-width: 0; border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px; margin: 0 .5em -1px 0; float: left; padding: .5em 1em;}
|
||||
.dashboard_tab_top.ui-tabs-active { background-color: #333333; font-weight: bold; }
|
||||
.dashboard_tab_bottom { border: 1px solid #cccccc; border-top-width: 0; border-bottom-left-radius: 8px;
|
||||
border-bottom-right-radius: 8px; margin: 0 .5em -1px 0; float: left; padding: .5em 1em; }
|
||||
.dashboard_tab_bottom.ui-tabs-active { background-color: #333333; font-weight: bold; }
|
||||
.dashboard_tabicon {width: 16px; height: 16px; vertical-align: top; margin-left: -0.5em; margin-top: 0.1em; }
|
||||
.dashboard_tabcontent { width: 100%; padding: 0; margin: 0; }
|
||||
.dashboard .ui-sortable-placeholder {border: 1px dotted #FFFFFF; visibility: visible !important; height: 25px !important; width: 150px;}
|
||||
|
||||
.dashboard .block.wide {border-radius: 5px;}
|
||||
.dashboard_tabcontent {width: 100%; padding: 0; margin: 0; }
|
||||
.dashboard .dashboard_row {width: 100%; height: inherit; padding: 0;}
|
||||
.dashboard .dashboard_columncenter {height: inherit;}
|
||||
|
||||
.dashboard_row { width: 100%; height: inherit; }
|
||||
.dashboard_columncenter { height: inherit;}
|
||||
.dashboard .ui-corner-bottom,
|
||||
.dashboard .ui-corner-top,
|
||||
.dashboard .ui-corner-left,
|
||||
.dashboard .ui-corner-right,
|
||||
.dashboard .ui-corner-all {border-radius: 5px;}
|
||||
|
||||
.dashboard_widget {border-radius: 8px; float: left;}
|
||||
.dashboard_widgethelper {background-color: #111111; }
|
||||
.dashboard_widgetheader {background: none repeat scroll 0 0 #333333; border: 1px solid #FFFFFF;
|
||||
box-shadow: 5px 5px 5px #000000; border-radius: 8px 8px 8px 8px; margin: 0.2em;
|
||||
padding-bottom: 4px; padding-top: 3px; padding-left: 0.7em;}
|
||||
.dashboard .ui-widget .ui-widget {font-size: 1em;}
|
||||
.dashboard .ui-widget-content {background-color: #333333;color: #eeeeee;}
|
||||
.dashboard .ui-widget-content a {color: #eeeeee;}
|
||||
.dashboard .ui-widget-header {background-color: #222222;color: #ffffff;}
|
||||
.dashboard .ui-widget-header a {color: #ffffff;}
|
||||
.dashboard .ui-state-default,
|
||||
.dashboard .ui-widget-content .ui-state-default,
|
||||
.dashboard .ui-widget-header .ui-state-default {border: 1px solid #FFFFFF;background-color: #adadad;font-weight: normal;color: #333333;}
|
||||
|
||||
.dashboard .ui-helper-clearfix:before,
|
||||
.dashboard .ui-helper-clearfix:after {content: "";display: table;border-collapse: collapse;}
|
||||
.dashboard .ui-helper-clearfix:after {clear: both;}
|
||||
.dashboard .ui-helper-clearfix {min-height: 0;}
|
||||
.dashboard .ui-helper-reset {margin: 0;padding: 0;border: 0;outline: 0;line-height: 1.3;text-decoration: none;font-size: 100%;list-style: none;}
|
||||
|
||||
.dashboard .ui-tabs {position: relative;padding: .2em;}
|
||||
.dashboard .ui-tabs .ui-tabs-panel {display: block;border-width: 0;background: none;box-shadow: 0 0 0 0;border-radius: 0;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav {margin: 0;padding: 0.2em 0.2em 0.4em;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav li {list-style: none;float: left;position: relative;top: 0;margin: 1px .2em 0 0;padding: 0;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav .ui-tabs-anchor {float: left;padding: .5em 1em;text-decoration: none;}
|
||||
.dashboard .ui-tabs-icon {width: 18px;height: 18px;float: left;vertical-align: top;margin-left: 0.3em;margin-top: 0.5em;}
|
||||
.dashboard .dashboard_tabnav_hidden{background-color: #333333;}
|
||||
|
||||
.dashboard .ui-state-default a,
|
||||
.dashboard .ui-state-default a:link,
|
||||
.dashboard .ui-state-default a:visited {color: #333333;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-active,
|
||||
.dashboard .ui-widget-content .ui-state-active,
|
||||
.dashboard .ui-widget-header .ui-state-active{border: 1px solid #FFFFFF;background: #333333;font-weight: normal;color: #ffffff;}
|
||||
.dashboard .ui-state-active a,
|
||||
.dashboard .ui-state-active a:link,
|
||||
.dashboard .ui-state-active a:visited {color: #ffffff;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-hover,
|
||||
.dashboard .ui-widget-content .ui-state-hover,
|
||||
.dashboard .ui-widget-header .ui-state-hover,
|
||||
.dashboard .ui-state-focus,
|
||||
.dashboard .ui-widget-content .ui-state-focus,
|
||||
.dashboard .ui-widget-header .ui-state-focus {border: 1px solid #FFFFFF;font-weight: normal;color: #ffffff;}
|
||||
|
||||
.dashboard .ui-state-hover a,
|
||||
.dashboard .ui-state-hover a:hover,
|
||||
.dashboard .ui-state-hover a:link,
|
||||
.dashboard .ui-state-hover a:visited,
|
||||
.dashboard .ui-state-focus a,
|
||||
.dashboard .ui-state-focus a:hover,
|
||||
.dashboard .ui-state-focus a:link,
|
||||
.dashboard .ui-state-focus a:visited {color: #ffffff;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-disabled,
|
||||
.dashboard .ui-widget-content .ui-state-disabled,
|
||||
.dashboard .ui-widget-header .ui-state-disabled {opacity: .35;filter:Alpha(Opacity=35);}
|
||||
|
||||
.dashboard.dashboard-dialog {overflow: hidden;position: absolute;top: 0;left: 0;padding: .2em;outline: 0;}
|
||||
.dashboard.dashboard-dialog .ui-dialog-titlebar {padding: .4em 1em;position: relative;border: 1px solid #FFFFFF;cursor: move;}
|
||||
.dashboard.dashboard-dialog .ui-dialog-title {float: left;margin: .1em 0;white-space: nowrap;width: 90%;overflow: hidden;text-overflow: ellipsis;}
|
||||
.dashboard.dashboard-dialog .ui-widget-header .ui-dialog-titlebar-close{position: absolute;right: .3em;width: 20px;height: 20px;}
|
||||
.dashboard.dashboard-dialog .ui-icon-closethick {position: absolute;top: 50%;margin-top: -8px;width: 16px;height: 16px;left: 50%;margin-left: -8px;
|
||||
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAENJREFUOMtjYBhs4D+pahhxSDASoZkRm0J8hmCVYyTGFnwGM5IYFowEBfAYglUtE6XRRhMvUBSIFEUjWQmJ4qQ88AAA+v0TCMo7QXMAAAAASUVORK5CYII=');
|
||||
}
|
||||
.dashboard-dialog .ui-button-icon-only .ui-button-text,
|
||||
.dashboard-dialog .ui-button-icons-only .ui-button-text {padding: .4em;text-indent: -9999999px;}
|
||||
.dashboard-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {float: right;}
|
||||
.dashboard-dialog .ui-dialog-buttonpane button {margin: .5em .4em .5em 0;cursor: pointer;}
|
||||
.dashboard.ui-front {z-index: 100;}
|
||||
|
||||
.ui-widget-overlay {background: #000000;opacity: .7;filter: Alpha(Opacity=30);position: fixed;top: 0;left: 0;width: 100%;height: 100%;}
|
||||
|
@ -1,53 +1,98 @@
|
||||
/* Author: svenson08 edit by fhainz */
|
||||
a,li { outline: none; }
|
||||
|
||||
a,li { outline: none; }
|
||||
.dashboard_column { float: left; }
|
||||
.dashboard_columnhelper { border: 1px dotted #808080; }
|
||||
|
||||
.dashboard_widget { float: left; }
|
||||
.dashboard_widgethelper { background-color: #a6a6a6; }
|
||||
.dashboard_widgetheader { background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #d9d9d9;
|
||||
margin: 0.2em;
|
||||
padding-bottom: 2px; padding-top: 3px; padding-left: 0.5em; }
|
||||
.dashboard_content { padding: 0.2em; }
|
||||
|
||||
.dashboard_content { padding: 0.1em; }
|
||||
.dashboard_content.table { box-shadow: none !important; border-radius: 0 0 8px 8px !important; border: 1px none #FFFFFF!important;
|
||||
border-left: 1px solid #FFFFFF !important; border-right: 1px solid #FFFFFF !important; border-bottom: 1px solid #FFFFFF !important;}
|
||||
|
||||
.dashboard_button_icon { width: 13px; height: 14px; background-repeat: no-repeat;
|
||||
float: left; background-image: url(../images/default/dashboardicons.png); }
|
||||
float: left; background-image: url(../images/default/dashboardicons.png); }
|
||||
.dashboard_button_iconplus { margin: 0.1em 0.4em; float: right; background-position: -65px -16px; }
|
||||
.dashboard_button_iconminus { margin: 0.1em 0.4em; float: right; background-position: -52px -16px; }
|
||||
.dashboard-button { display: inline-block; padding: 0 .6em; height: 1.9em; cursor: pointer; background-color: #FFFFFF;
|
||||
background-repeat:no-repeat !important; background-position: 9px; border: 1px solid #d9d9d9;
|
||||
margin-top: 2px; width: 14px; position: absolute;}
|
||||
background-repeat:no-repeat !important; background-position: 9px; border: 1px solid #d9d9d9;margin-top: 2px; width: 14px; position: absolute;}
|
||||
|
||||
.dashboard-button-defineDetails{right: 10px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY4NjYwOTg0NEJFQzExRTI4MjI3OTFCOEEyNzY2MzE2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY4NjYwOTg1NEJFQzExRTI4MjI3OTFCOEEyNzY2MzE2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Rjg2NjA5ODI0QkVDMTFFMjgyMjc5MUI4QTI3NjYzMTYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Rjg2NjA5ODM0QkVDMTFFMjgyMjc5MUI4QTI3NjYzMTYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7i4cyWAAAAsElEQVR42mJgoCEwA+IPUGxGrKZkIE6AsjOB+D8UZyKJReHTDNOwGoifIPEfAvFGJH4gIQMIYZyuWI3mCm8oRhZfhCvA0pCcvRGLmnVI3klDD9gPaE50gopvRDLMG00NSA8DCw6vcELpX0hifwnFeRrUef+hzsXlhSfYvMCA5GTkQPSAYvTAxQoyyYlGJiQDviOxFwPxCyQ+iL0eh1oUEA7EfniSciySPG0yE8kAIMAAicRYTX3YPyoAAAAASUVORK5CYII=') !important;}
|
||||
.dashboard-button-setPosition{right: 45px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAYUlEQVR4XtWRUQrAMAhDneyg9mT2ptugHRaCY/FnLJAveWKifCW7AS3Avlj2AmzrFUrDIYhgJNwvN4VcBDwiYC5/CyclBpDDoe2poATGEuegs3AswCUIk/8+pl2K8uE/6ATG4BstrVLVgQAAAABJRU5ErkJggg==') !important;}
|
||||
.dashboard-button-goBack{right: 80px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAZ0lEQVQ4jd3RMQqDQBBA0YekV0wj3v8QNqZTJBEtPY42K9l2p0s+TDHF/zAMf8kTE4aovOPEp1TucGRyE5XXUhnmJJfMCFUKVMp55EuLzfeENhBUY0mRA30kkr/xHQnckQWvaODHuADAUSEXjMLoMwAAAABJRU5ErkJggg==') !important;}
|
||||
.ui-state-disabled {cursor: default; opacity: 0.35;}
|
||||
.dashboard-button-editTab{right: 115px;}
|
||||
.dashboard .ui-button {display: inline-block;line-height: normal;margin-right: .1em;cursor: pointer;vertical-align: middle;text-align: center;overflow: visible;}
|
||||
.dashboard .ui-button,
|
||||
.dashboard .ui-button:link,
|
||||
.dashboard .ui-button:visited,
|
||||
.dashboard .ui-button:hover,
|
||||
.dashboard .ui-button:active {text-decoration: none;}
|
||||
.dashboard .ui-button .ui-button-text {display: block;line-height: normal;}
|
||||
.dashboard .ui-button-text-only .ui-button-text {padding: .4em 1em;}
|
||||
|
||||
.dashboard .ui-resizable { position: relative; }
|
||||
.dashboard .ui-resizable-handle { position: absolute; font-size: 0.1px; }
|
||||
.dashboard .ui-resizable-se { cursor: se-resize;width: 12px; height: 12px; right: 1px;bottom: 1px; background-image: url('data:image/gif;base64,R0lGODlhEAAQAIABAJOnY////yH5BAEAAAEALAAAAAAQABAAAAIZjI+py+0IwDtx2ktlqI1zDCae9mXGGKZgAQA7');}
|
||||
.dashboard .ui-sortable-placeholder { border: 1px dotted #d9d9d9; visibility: visible !important; height: 25px !important; width: 150px; }
|
||||
|
||||
.dashboard_tabcontent {width: 100%; padding: 0; margin: 0; }
|
||||
.dashboard .dashboard_row {width: 100%; height: inherit; padding: 0;}
|
||||
.dashboard .dashboard_columncenter {height: inherit;}
|
||||
|
||||
.dashboard_widget { float: left; }
|
||||
.dashboard_widgethelper { background-color: #a6a6a6; }
|
||||
.dashboard_widgetheader { background: none repeat scroll 0 0 #FFFFFF; margin: 0.1em; padding-bottom: 2px; padding-top: 3px; padding-left: 0.5em;}
|
||||
.dashboard .ui-widget .ui-widget {font-size: 1em;}
|
||||
.dashboard .ui-widget-content {background-color: #E5E5E5;/*color: #eeeeee;*/}
|
||||
.dashboard .ui-widget-content a {/*color: #eeeeee;*/}
|
||||
.dashboard .ui-widget-header {background-color: #FFFFFF;/*color: #ffffff;*/}
|
||||
.dashboard .ui-widget-header a {/*color: #ffffff;*/}
|
||||
.dashboard .ui-state-default,
|
||||
.dashboard .ui-widget-content .ui-state-default,
|
||||
.dashboard .ui-widget-header .ui-state-default {border: 1px solid #FFFFFF;background-color: #adadad;font-weight: normal;color: #E5E5E5;}
|
||||
|
||||
.dashboard .ui-helper-clearfix:before,
|
||||
.dashboard .ui-helper-clearfix:after {content: "";display: table;border-collapse: collapse;}
|
||||
.dashboard .ui-helper-clearfix:after {clear: both;}
|
||||
.dashboard .ui-helper-clearfix {min-height: 0;}
|
||||
.dashboard .ui-helper-reset {margin: 0;padding: 0;border: 0;outline: 0;line-height: 1.3;text-decoration: none;font-size: 100%;list-style: none;}
|
||||
|
||||
.dashboard .ui-tabs {position: relative;padding: .2em;}
|
||||
.dashboard .ui-tabs .ui-tabs-panel {display: block;border-width: 0;background: none;box-shadow: 0 0 0 0;border-radius: 0;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav {margin: 0;padding: 0.2em 0.2em 0.2em;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav li {list-style: none;float: left;position: relative;top: 0;margin: 1px .2em 0 0;padding: 0;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav .ui-tabs-anchor {float: left;padding: .5em .5em;text-decoration: none;}
|
||||
.dashboard .ui-tabs-icon {width: 18px;height: 18px;float: left;vertical-align: top;margin-left: 0.3em;margin-top: 0.5em;}
|
||||
.dashboard .dashboard_tabnav_hidden{background-color: #E5E5E5;}
|
||||
|
||||
.dashboard .ui-state-default a,
|
||||
.dashboard .ui-state-default a:link,
|
||||
.dashboard .ui-state-default a:visited {color: #E5E5E5;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-active,
|
||||
.dashboard .ui-widget-content .ui-state-active,
|
||||
.dashboard .ui-widget-header .ui-state-active{border: 1px solid #FFFFFF;background: #E5E5E5;font-weight: normal;color: #ffffff;}
|
||||
.dashboard .ui-state-active a,
|
||||
.dashboard .ui-state-active a:link,
|
||||
.dashboard .ui-state-active a:visited {color: #ffffff;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-hover,
|
||||
.dashboard .ui-widget-content .ui-state-hover,
|
||||
.dashboard .ui-widget-header .ui-state-hover,
|
||||
.dashboard .ui-state-focus,
|
||||
.dashboard .ui-widget-content .ui-state-focus,
|
||||
.dashboard .ui-widget-header .ui-state-focus {border: 1px solid #FFFFFF;font-weight: normal;color: #ffffff;}
|
||||
|
||||
.dashboard .ui-state-hover a,
|
||||
.dashboard .ui-state-hover a:hover,
|
||||
.dashboard .ui-state-hover a:link,
|
||||
.dashboard .ui-state-hover a:visited,
|
||||
.dashboard .ui-state-focus a,
|
||||
.dashboard .ui-state-focus a:hover,
|
||||
.dashboard .ui-state-focus a:link,
|
||||
.dashboard .ui-state-focus a:visited {color: #ffffff;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-disabled,
|
||||
.dashboard .ui-widget-content .ui-state-disabled,
|
||||
.dashboard .ui-widget-header .ui-state-disabled {opacity: .35;filter:Alpha(Opacity=35);}
|
||||
|
||||
.ui-resizable { position: relative; }
|
||||
.ui-resizable-handle { position: absolute; font-size: 0.1px; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px;
|
||||
bottom: 1px; background-image: url(../images/default/dashboardicons.png);
|
||||
background-position: -78px -16px; background-repeat: no-repeat; }
|
||||
.ui-sortable-placeholder { border: 1px dotted #d9d9d9; visibility: visible !important;
|
||||
height: 25px !important; width: 150px; }
|
||||
|
||||
.dashboard { padding: 0; margin: 0; }
|
||||
.dashboard_tabnav { list-style: none; margin: 0; padding: 0 .5em 0; }
|
||||
.dashboard_tabnav:before,
|
||||
.dashboard_tabnav:after { content: ""; display: table; border-collapse: collapse; clear: both; }
|
||||
.dashboard_tabpanel { }
|
||||
.dashboard_tab_top { border: 1px solid #cccccc; text-align:center; min-width:9%; margin: 0 .5em -1px 0; float: left; padding: .5em 1em; }
|
||||
.dashboard_tab_top a { color:#929292; }
|
||||
.dashboard_tab_top.ui-tabs-active { }
|
||||
.dashboard_tab_top.ui-tabs-active a { color:#147bff; }
|
||||
.dashboard_tab_bottom { border: 1px solid #cccccc; text-align:center; min-width:9%; margin: 0 .5em -1px 0; float: left; padding: .5em 1em; }
|
||||
.dashboard_tab_bottom a { color:#929292; }
|
||||
.dashboard_tab_bottom.ui-tabs-active { }
|
||||
.dashboard_tab_bottom.ui-tabs-active a { color:#147bff; }
|
||||
.dashboard_tabicon {width: 16px; height: 16px; vertical-align: top; margin-left: -0.5em; margin-top: 0.1em; }
|
||||
svg.dashboard_tabicon { fill:#929292; }
|
||||
.ui-tabs-active svg { fill:#147bff; }
|
||||
.dashboard_tabcontent { width: 100%; padding: 0; margin: 0; }
|
||||
|
||||
.dashboard_row { width: 100%; height: inherit; }
|
||||
.dashboard_columncenter { height: inherit;}
|
||||
svg.dashboard_tabicon { fill:#929292; }
|
@ -1,48 +1,102 @@
|
||||
/* Author: svenson08*/
|
||||
.dashboard_column { float: left; }
|
||||
.dashboard_columnhelper { border: 1px dotted #808080; }
|
||||
|
||||
.dashboard_widget { border-radius: 8px; float: left; padding: 0.2em;}
|
||||
.dashboard_widgethelper { background-color: #A0FFFF; }
|
||||
.dashboard_widgetheader { background: none repeat scroll 0 0 #F0F0D8; border: 1px solid #808080;
|
||||
border-radius: 8px; margin: 0.2em;
|
||||
padding-bottom: 4px; padding-top: 3px; padding-left: 0.7em; }
|
||||
.dashboard_content { padding: 0.2em; }
|
||||
|
||||
|
||||
.dashboard_content { padding: 0.1em; }
|
||||
.dashboard_content.table { box-shadow: none !important; border-radius: 0 0 8px 8px !important; border: 1px none #278727!important;
|
||||
border-left: 1px solid #278727 !important; border-right: 1px solid #278727 !important; border-bottom: 1px solid #278727 !important;}
|
||||
|
||||
.dashboard_button_icon { width: 13px; height: 14px; background-repeat: no-repeat;
|
||||
float: left; background-image: url(../images/default/dashboardicons.png); }
|
||||
.dashboard_button_iconplus { margin: 0.1em 0.4em; float: right; background-position: -65px -16px; }
|
||||
.dashboard_button_iconminus { margin: 0.1em 0.4em; float: right; background-position: -52px -16px; }
|
||||
.dashboard-button { display: inline-block; padding: 0 .6em; height: 1.9em; cursor: pointer; background-color: #F0F0D8;
|
||||
background-repeat:no-repeat !important; background-position: 9px; border: 1px solid #DDDDDD; border-radius: 4px;
|
||||
margin-top: 2px; width: 14px; position: absolute;}
|
||||
.dashboard-button-defineDetails{right: 5px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY4NjYwOTg0NEJFQzExRTI4MjI3OTFCOEEyNzY2MzE2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY4NjYwOTg1NEJFQzExRTI4MjI3OTFCOEEyNzY2MzE2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Rjg2NjA5ODI0QkVDMTFFMjgyMjc5MUI4QTI3NjYzMTYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Rjg2NjA5ODM0QkVDMTFFMjgyMjc5MUI4QTI3NjYzMTYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7i4cyWAAAAsElEQVR42mJgoCEwA+IPUGxGrKZkIE6AsjOB+D8UZyKJReHTDNOwGoifIPEfAvFGJH4gIQMIYZyuWI3mCm8oRhZfhCvA0pCcvRGLmnVI3klDD9gPaE50gopvRDLMG00NSA8DCw6vcELpX0hifwnFeRrUef+hzsXlhSfYvMCA5GTkQPSAYvTAxQoyyYlGJiQDviOxFwPxCyQ+iL0eh1oUEA7EfniSciySPG0yE8kAIMAAicRYTX3YPyoAAAAASUVORK5CYII=') !important;}
|
||||
.dashboard-button-setPosition{right: 40px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAYUlEQVR4XtWRUQrAMAhDneyg9mT2ptugHRaCY/FnLJAveWKifCW7AS3Avlj2AmzrFUrDIYhgJNwvN4VcBDwiYC5/CyclBpDDoe2poATGEuegs3AswCUIk/8+pl2K8uE/6ATG4BstrVLVgQAAAABJRU5ErkJggg==') !important;}
|
||||
.dashboard-button-goBack{right: 75px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAZ0lEQVQ4jd3RMQqDQBBA0YekV0wj3v8QNqZTJBEtPY42K9l2p0s+TDHF/zAMf8kTE4aovOPEp1TucGRyE5XXUhnmJJfMCFUKVMp55EuLzfeENhBUY0mRA30kkr/xHQnckQWvaODHuADAUSEXjMLoMwAAAABJRU5ErkJggg==') !important;}
|
||||
.ui-state-disabled {cursor: default;opacity: 0.35;}
|
||||
.dashboard-button { display: inline-block; padding: 0 .6em; height: 1.9em; cursor: pointer;
|
||||
background-color: #f5f5f5; background-repeat:no-repeat !important; background-position: 7px;
|
||||
border: 1px solid #278727; border-radius: 4px; margin-top: 2px; width: 14px; position: absolute;}
|
||||
.dashboard-button-defineDetails{right: 10px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY4NjYwOTg0NEJFQzExRTI4MjI3OTFCOEEyNzY2MzE2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY4NjYwOTg1NEJFQzExRTI4MjI3OTFCOEEyNzY2MzE2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Rjg2NjA5ODI0QkVDMTFFMjgyMjc5MUI4QTI3NjYzMTYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Rjg2NjA5ODM0QkVDMTFFMjgyMjc5MUI4QTI3NjYzMTYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7i4cyWAAAAsElEQVR42mJgoCEwA+IPUGxGrKZkIE6AsjOB+D8UZyKJReHTDNOwGoifIPEfAvFGJH4gIQMIYZyuWI3mCm8oRhZfhCvA0pCcvRGLmnVI3klDD9gPaE50gopvRDLMG00NSA8DCw6vcELpX0hifwnFeRrUef+hzsXlhSfYvMCA5GTkQPSAYvTAxQoyyYlGJiQDviOxFwPxCyQ+iL0eh1oUEA7EfniSciySPG0yE8kAIMAAicRYTX3YPyoAAAAASUVORK5CYII=') !important;}
|
||||
.dashboard-button-setPosition{right: 45px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAYUlEQVR4XtWRUQrAMAhDneyg9mT2ptugHRaCY/FnLJAveWKifCW7AS3Avlj2AmzrFUrDIYhgJNwvN4VcBDwiYC5/CyclBpDDoe2poATGEuegs3AswCUIk/8+pl2K8uE/6ATG4BstrVLVgQAAAABJRU5ErkJggg==') !important;}
|
||||
.dashboard-button-goBack{right: 80px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAAZ0lEQVQ4jd3RMQqDQBBA0YekV0wj3v8QNqZTJBEtPY42K9l2p0s+TDHF/zAMf8kTE4aovOPEp1TucGRyE5XXUhnmJJfMCFUKVMp55EuLzfeENhBUY0mRA30kkr/xHQnckQWvaODHuADAUSEXjMLoMwAAAABJRU5ErkJggg==') !important;}
|
||||
.dashboard-button-editTab{right: 115px;}
|
||||
.dashboard .ui-button {display: inline-block;line-height: normal;margin-right: .1em;cursor: pointer;vertical-align: middle;text-align: center;overflow: visible;}
|
||||
.dashboard .ui-button,
|
||||
.dashboard .ui-button:link,
|
||||
.dashboard .ui-button:visited,
|
||||
.dashboard .ui-button:hover,
|
||||
.dashboard .ui-button:active {text-decoration: none;}
|
||||
.dashboard .ui-button .ui-button-text {display: block;line-height: normal;}
|
||||
.dashboard .ui-button-text-only .ui-button-text {padding: .4em 1em;}
|
||||
|
||||
.ui-resizable { position: relative; }
|
||||
.ui-resizable-handle { position: absolute; font-size: 0.1px; }
|
||||
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px;
|
||||
bottom: 1px; background-image: url(../images/default/dashboardicons.png);
|
||||
background-position: -78px -16px; background-repeat: no-repeat; }
|
||||
.ui-sortable-placeholder { border: 1px dotted #808080; visibility: visible !important;
|
||||
height: 25px !important; width: 150px; }
|
||||
|
||||
.dashboard { padding: 0; margin: 0; }
|
||||
.dashboard_tabnav { list-style: none; margin: 0; padding: 0 .5em 0; }
|
||||
.dashboard_tabnav:before,
|
||||
.dashboard_tabnav:after { content: ""; display: table; border-collapse: collapse; clear: both; }
|
||||
.dashboard_tabpanel { border: 1px solid #cccccc; background-color: #F0F0D8; border: 1px solid #dddddd;
|
||||
border-radius: 8px 8px 8px 8px; }
|
||||
.dashboard_tab_top { border: 1px solid #cccccc; border-bottom-width: 0; border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px; margin: 0 .5em -1px 0; float: left; padding: .5em 1em; }
|
||||
.dashboard_tab_top.ui-tabs-active { background-color: #F0F0D8; font-weight: bold; }
|
||||
.dashboard_tab_bottom { border: 1px solid #cccccc; border-top-width: 0; border-bottom-left-radius: 8px;
|
||||
border-bottom-right-radius: 8px; margin: 0 .5em -1px 0; float: left; padding: .5em 1em; }
|
||||
.dashboard_tab_bottom.ui-tabs-active { background-color: #F0F0D8; font-weight: bold; }
|
||||
.dashboard_tabicon {width: 16px; height: 16px; vertical-align: top; margin-left: -0.5em; margin-top: 0.1em;}
|
||||
.dashboard_tabcontent { width: 100%; padding: 0; margin: 0; }
|
||||
.dashboard .ui-resizable { position: relative; }
|
||||
.dashboard .ui-resizable-handle { position: absolute; font-size: 0.1px; }
|
||||
.dashboard .ui-resizable-se { cursor: se-resize;width: 12px; height: 12px; right: 1px;bottom: 1px; background-image: url('data:image/gif;base64,R0lGODlhEAAQAIABAJOnY////yH5BAEAAAEALAAAAAAQABAAAAIZjI+py+0IwDtx2ktlqI1zDCae9mXGGKZgAQA7');}
|
||||
|
||||
.dashboard_row { width: 100%; height: inherit; }
|
||||
.dashboard_columncenter { height: inherit;}
|
||||
.dashboard .ui-sortable-placeholder {border: 1px dotted #278727; visibility: visible !important; height: 25px !important; width: 150px;}
|
||||
|
||||
.dashboard .block.wide {border-radius: 5px;}
|
||||
.dashboard_tabcontent {width: 100%; padding: 0; margin: 0; }
|
||||
.dashboard .dashboard_row {width: 100%; height: inherit; padding: 0;}
|
||||
.dashboard .dashboard_columncenter {height: inherit;}
|
||||
|
||||
.dashboard .ui-corner-bottom,
|
||||
.dashboard .ui-corner-top,
|
||||
.dashboard .ui-corner-left,
|
||||
.dashboard .ui-corner-right,
|
||||
.dashboard .ui-corner-all {border-radius: 5px;}
|
||||
|
||||
.dashboard_widget {border-radius: 8px; float: left;}
|
||||
.dashboard_widgethelper { background-color: #D7FFFF;}
|
||||
.dashboard_widgetheader { background: none repeat scroll 0 0 #F0F0D8; border: 1px solid #808080;
|
||||
border-radius: 8px; margin: 0.1em;padding-bottom: 4px; padding-top: 3px; padding-left: 0.7em;}
|
||||
.dashboard .ui-widget .ui-widget {font-size: 1em;}
|
||||
.dashboard .ui-widget-content {background-color: #F8F8d5;color: #278727;}
|
||||
.dashboard .ui-widget-content a {color: #278727;}
|
||||
.dashboard .ui-widget-header {background-color: #e9e9c8;color: #278727;}
|
||||
.dashboard .ui-widget-header a {color: #278727;}
|
||||
.dashboard .ui-state-default,
|
||||
.dashboard .ui-widget-content .ui-state-default,
|
||||
.dashboard .ui-widget-header .ui-state-default {border: 1px solid #278727;background-color: #d5d5b7;font-weight: normal;color: #F0F0dd;}
|
||||
|
||||
.dashboard .ui-helper-clearfix:before,
|
||||
.dashboard .ui-helper-clearfix:after {content: "";display: table;border-collapse: collapse;}
|
||||
.dashboard .ui-helper-clearfix:after {clear: both;}
|
||||
.dashboard .ui-helper-clearfix {min-height: 0;}
|
||||
.dashboard .ui-helper-reset {margin: 0;padding: 0;border: 0;outline: 0;line-height: 1.3;text-decoration: none;font-size: 100%;list-style: none;}
|
||||
|
||||
.dashboard .ui-tabs {position: relative;padding: .2em;}
|
||||
.dashboard .ui-tabs .ui-tabs-panel {display: block;border-width: 0;background: none;box-shadow: 0 0 0 0;border-radius: 0;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav {margin: 0;padding: 0.2em 0.2em 0.4em;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav li {list-style: none;float: left;position: relative;top: 0;margin: 1px .2em 0 0;padding: 0;}
|
||||
.dashboard .ui-tabs .ui-tabs-nav .ui-tabs-anchor {float: left;padding: .5em 1em;text-decoration: none;}
|
||||
.dashboard .ui-tabs-icon {width: 18px;height: 18px;float: left;vertical-align: top;margin-left: 0.3em;margin-top: 0.5em;}
|
||||
.dashboard .dashboard_tabnav_hidden{background-color: #F8F8d5;}
|
||||
|
||||
.dashboard .ui-state-default a,
|
||||
.dashboard .ui-state-default a:link,
|
||||
.dashboard .ui-state-default a:visited {color: #F8F8d5;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-active,
|
||||
.dashboard .ui-widget-content .ui-state-active,
|
||||
.dashboard .ui-widget-header .ui-state-active{border: 1px solid #278727;background: #F8F8d5;font-weight: normal;color: #278727;}
|
||||
.dashboard .ui-state-active a,
|
||||
.dashboard .ui-state-active a:link,
|
||||
.dashboard .ui-state-active a:visited {color: #278727;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-hover,
|
||||
.dashboard .ui-widget-content .ui-state-hover,
|
||||
.dashboard .ui-widget-header .ui-state-hover,
|
||||
.dashboard .ui-state-focus,
|
||||
.dashboard .ui-widget-content .ui-state-focus,
|
||||
.dashboard .ui-widget-header .ui-state-focus {border: 1px solid #278727;font-weight: normal;color: #278727;}
|
||||
|
||||
.dashboard .ui-state-hover a,
|
||||
.dashboard .ui-state-hover a:hover,
|
||||
.dashboard .ui-state-hover a:link,
|
||||
.dashboard .ui-state-hover a:visited,
|
||||
.dashboard .ui-state-focus a,
|
||||
.dashboard .ui-state-focus a:hover,
|
||||
.dashboard .ui-state-focus a:link,
|
||||
.dashboard .ui-state-focus a:visited {color: #278727;text-decoration: none;}
|
||||
|
||||
.dashboard .ui-state-disabled,
|
||||
.dashboard .ui-widget-content .ui-state-disabled,
|
||||
.dashboard .ui-widget-header .ui-state-disabled {opacity: .35;filter:Alpha(Opacity=35);}
|
||||
|
Loading…
x
Reference in New Issue
Block a user