openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 7a81b508fda442c8537fd25e5ba02e1f6e27fc51
parent 80a7acf4b072317888f7731b82e46cb116fc7ae4
Author: Jan Dankert <devnull@localhost>
Date:   Tue,  3 Jul 2018 00:53:05 +0200

Das Anmelden eines Benutzers funktioniert jetzt nicht mehr über Ajax, sondern direkt. Das Kopfmenü ist jetzt aufklappbar, funktioniert aber noch nicht. Der Baum erscheint bereits.

Diffstat:
modules/cms-ui/themes/default/html/views/login/login.php | 4++--
modules/cms-ui/themes/default/html/views/login/login.tpl.src.xml | 2+-
modules/cms-ui/themes/default/layout/index.php | 10+++++-----
modules/cms-ui/themes/default/layout/perspective/normal.ini.php | 29-----------------------------
modules/cms-ui/themes/default/layout/perspective/window.php | 93-------------------------------------------------------------------------------
modules/cms-ui/themes/default/script/openrat.js | 362+++++++++++++++++++------------------------------------------------------------
modules/cms-ui/themes/default/script/openrat.min.js | 31+++++++++++++------------------
modules/cms-ui/themes/default/style/openrat-header.css | 75+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
modules/cms-ui/themes/default/style/openrat-header.less | 86+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
modules/cms-ui/themes/default/style/openrat-header.min.css | 2++
modules/cms-ui/themes/default/style/openrat-theme.css | 26+++++++++++++-------------
modules/cms-ui/themes/default/style/openrat-theme.less | 10+++++-----
modules/cms-ui/themes/default/style/openrat-theme.min.css | 4++--
modules/cms-ui/themes/default/style/openrat-ui.css | 94++-----------------------------------------------------------------------------
modules/cms-ui/themes/default/style/openrat-ui.less | 117-------------------------------------------------------------------------------
modules/cms-ui/themes/default/style/openrat-ui.min.css | 4++--
modules/template-engine/components/html/form/Form.class.php | 4++--
modules/template-engine/components/html/link/link.js | 2+-
modules/template-engine/components/html/link/link.min.js | 4++--
19 files changed, 300 insertions(+), 659 deletions(-)

diff --git a/modules/cms-ui/themes/default/html/views/login/login.php b/modules/cms-ui/themes/default/html/views/login/login.php @@ -2,7 +2,7 @@ <div class="headermenu"><div class="toolbar-icon clickable"><a href="javascript:void(0);" title="<?php echo lang('MENU_PASSWORD') ?>" data-type="dialog" data-name="<?php echo lang('MENU_PASSWORD') ?>" data-method="password"><img src="./themes/default/images/icon/action/password.svg" title="<?php echo lang('MENU_password_DESC') ?>" /><?php echo lang('MENU_password') ?></a></div><div class="toolbar-icon clickable"><a href="javascript:void(0);" title="<?php echo lang('MENU_REGISTER') ?>" data-type="dialog" data-name="<?php echo lang('MENU_REGISTER') ?>" data-method="register"><img src="./themes/default/images/icon/action/register.svg" title="<?php echo lang('MENU_register_DESC') ?>" /><?php echo lang('MENU_register') ?></a></div><div class="toolbar-icon clickable"><a href="javascript:void(0);" title="<?php echo lang('MENU_LICENSE') ?>" data-type="dialog" data-name="<?php echo lang('MENU_LICENSE') ?>" data-method="license"><img src="./themes/default/images/icon/action/license.svg" title="<?php echo lang('MENU_license_DESC') ?>" /><?php echo lang('MENU_license') ?></a></div></div> - <form name="" target="_self" action="<?php echo OR_ACTION ?>" data-method="<?php echo OR_METHOD ?>" data-action="<?php echo OR_ACTION ?>" data-id="<?php echo OR_ID ?>" method="POST" enctype="application/x-www-form-urlencoded" class="<?php echo OR_ACTION ?>" data-async="" data-autosave=""><input type="submit" class="invisible" /><input type="hidden" name="<?php echo REQ_PARAM_TOKEN ?>" value="<?php echo token() ?>" /><input type="hidden" name="<?php echo REQ_PARAM_ACTION ?>" value="<?php echo OR_ACTION ?>" /><input type="hidden" name="<?php echo REQ_PARAM_SUBACTION ?>" value="<?php echo OR_METHOD ?>" /><input type="hidden" name="<?php echo REQ_PARAM_ID ?>" value="<?php echo OR_ID ?>" /> + <form name="" target="_self" action="./" data-method="login" data-action="login" data-id="<?php echo OR_ID ?>" method="POST" enctype="application/x-www-form-urlencoded" class="login" data-async="" data-autosave=""><input type="submit" class="invisible" /><input type="hidden" name="<?php echo REQ_PARAM_TOKEN ?>" value="<?php echo token() ?>" /><input type="hidden" name="<?php echo REQ_PARAM_ACTION ?>" value="login" /><input type="hidden" name="<?php echo REQ_PARAM_SUBACTION ?>" value="login" /><input type="hidden" name="<?php echo REQ_PARAM_ID ?>" value="<?php echo OR_ID ?>" /> <?php $if3=(config('login','logo','enabled')); if($if3){?> <?php $if4=(!empty(config('login','logo','url'))); if($if4){?> <a target="_self" data-url="<?php echo config('login','logo','url') ?>" data-action="" data-method="<?php echo OR_METHOD ?>" data-id="<?php echo OR_ID ?>" href="javascript:void(0);"> @@ -160,5 +160,5 @@ <input type="hidden" name="languageid" value="<?php echo $languageid ?>"/> - <div class="bottom"><div class="command 1"><input type="button" class="submit ok" value="<?php echo lang('menu_login') ?>" /></div></div></form> + <div class="bottom"><div class="command 1"><input type="submit" class="submit ok" value="<?php echo lang('menu_login') ?>" /></div></div></form> \ No newline at end of file diff --git a/modules/cms-ui/themes/default/html/views/login/login.tpl.src.xml b/modules/cms-ui/themes/default/html/views/login/login.tpl.src.xml @@ -1,7 +1,7 @@ <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openrat.de/template ../template.xsd"> <header views="password,register,license"></header> - <form cancel="false" label="message:menu_login" visible="true"> + <form cancel="false" label="message:menu_login" visible="true" action="login" subaction="login"> <if true="config:login/logo/enabled"> <if present="config:login/logo/url"> <link url="config:login/logo/url" target="_top"> diff --git a/modules/cms-ui/themes/default/layout/index.php b/modules/cms-ui/themes/default/layout/index.php @@ -34,7 +34,7 @@ <div id="workbench" class="initial-hidden"> - <header class="view" data-action="title" data-method="show"> + <header id="title" class="view view-static" data-action="title" data-method="show"> <?php echo embedView('title','show'); ?> </header> @@ -45,8 +45,8 @@ <header> <a href=""></a> </header> - <div class="view-static" data-action="tree" data-method="show"> - <?php embedView('tree','show'); ?> + <div id="navigation" class="view view-static" data-action="tree" data-method="show"> + <?php embedView('tree','tree'); ?> </div> </nav> @@ -55,7 +55,7 @@ <header> <span class="title"></span> </header> - <div class="view" data-method="edit"> + <div id="editor" class="view view-loader" data-method="edit"> <?php embedView('login','login'); ?> </div> @@ -65,7 +65,7 @@ <header> <a href=""></a> </header> - <div class="view" data-method="info"> + <div id="info" class="view view-loader" data-method="info"> <?php embedView('login','login'); ?> </div> diff --git a/modules/cms-ui/themes/default/layout/perspective/normal.ini.php b/modules/cms-ui/themes/default/layout/perspective/normal.ini.php @@ -1,29 +0,0 @@ - -icons=templatelist,languagelist - - -[tree] - -title=navigator -views=tree:tree,tree:settings,start:projectmenu,start:userprojecttimeline -default=tree - - -[content] - -views=login:login,login:openid,login:register -default=edit -modal=true - -[side] - -title= -default=prop -views=prop,pub - -[bottom] - -title= -default=structure -views=structure,info,preview,progress,console,search,history,rights - diff --git a/modules/cms-ui/themes/default/layout/perspective/window.php b/modules/cms-ui/themes/default/layout/perspective/window.php @@ -1,92 +0,0 @@ -<?php - -function view_header( $name ) -{ - global $preselectobject; - - global $viewconfig; - global $conf; - $v = $viewconfig[$name]; - -?> - -<div class="header"> - -<ul class="views"> -<?php - - $viewlist = explode(',',$v['views']); - if ( empty($viewlist[0])) $viewlist = array(); - - - // Tabreiter pro View erzeugen - foreach( $viewlist as $vn ) - { - $actionAndMethod = explode(':',$vn); - if ( count($actionAndMethod) > 1 ) - list($action,$vn) = $actionAndMethod; - else $action = ''; - - - $tmp_text = langHtml('menu_'.$vn); - $liClass = 'action'.($vn==$v['default']?' active':'').(empty($action)?' dependent':' static'); - $icon_url = OR_THEMES_DIR.'default/images/icon/'.$vn.'.png'; - - ?><li data-action="<?php echo $action ?>" data-id="0" data-method="<?php echo $vn ?>" class="<?php echo $liClass?>" title="<?php echo langHtml('menu_'.$vn.'_desc'); ?>"><?php - ?><img class="icon" src="<?php echo $icon_url ?>" /><div class="tabname"><?php echo $tmp_text ?></div><?php - ?></li><?php - } - - global $preselectobject; - if ( false && $name=='content' && is_object($preselectobject) ) - { - $tmp_text = $preselectobject->name; - $liClass = 'action active'; - $icon_url = OR_THEMES_DIR.'default/images/icon_'.$preselectobject->getType().'.png'; - - ?><li data-id="<?php echo $preselectobject->objectid ?>" data-method="edit" data-u="<?php echo $preselectobject->getType() ?>" class="<?php echo $liClass?>" title="<?php echo $preselectobject->description ?>"><?php - ?><img class="icon" src="<?php echo $icon_url ?>" /><div class="tabname"><?php echo $tmp_text ?></div><?php - ?></li><?php - } - - if ( /* Deaktiviert */ false && @$conf['help']['enabled'] ) - { - ?><a class="help" data-url="<?php echo $conf['help']['url'] ?>" data-suffix="<?php echo @$conf['help']['suffix'] ?>" title="<?php echo langHtml('MENU_HELP_DESC') ?>"><img src="<?php echo $image_dir.'icon/help.png' ?>" /><?php echo @$conf['help']['only_question_mark']?'?':langHtml('MENU_HELP') ?></a><?php - } - ?><?php - - - - ?> -</ul> - -<div class="panel-icon"> - -<?php if (!empty($viewlist) || $name=='content') { /* Fenster-Menü anzeigen (sofern Views vorhanden) */ ?> -<div class="arrow-down"></div> -<div class="dropdown dropdownalignright"> -<div class="entry clickable"><a href="javascript:void(0);" class="fullscreen" data-type="fullscreen"><img src="<?php echo OR_THEMES_DIR.'default/images/icon/window/maximize.gif' ?>" title="<?php echo langHtml('window_fullscreen') ?>" /><?php echo langHtml('window_fullscreen') ?></a></div> -<?php - if ( @$conf['help']['enabled'] ) - { - ?><div class="entry clickable"><a href="javascript:void(0);" data-type="help" data-url="<?php echo $conf['help']['url'] ?>" data-suffix="<?php echo @$conf['help']['suffix'] ?>" title="<?php echo langHtml('MENU_HELP_DESC') ?>"><img src="<?php echo OR_THEMES_DIR.'default/images/icon/help.png' ?>" /><?php echo langHtml('MENU_HELP') ?></a></div><?php - } - ?> -</div> -<?php } ?> -</div> - - -<?php /*echo langHtml( $v['title'] )*/ ?> - - -<!-- Hinweis-Meldungen --> - -</div> - -<div class="content"> - <div class="empty"></div> -</div> - - -<?php } ?>- \ No newline at end of file diff --git a/modules/cms-ui/themes/default/script/openrat.js b/modules/cms-ui/themes/default/script/openrat.js @@ -15,10 +15,55 @@ $( function() $('.initial-hidden').removeClass('initial-hidden'); refreshAll(); + registerHeaderEvents(); + + $('#workbench .view').each( function(index) { + registerViewEvents(this); + }); + + // Listening to the "popstate" event: + window.onpopstate = function(ev) { + History.fromHistory(ev.state); + }; + + initActualHistoryState(); Workbench.initialize(); + + loadTree(); // Initial Loading of the navigationtree + }); +function initActualHistoryState() { + var state = new Object(); + state.name = window.document.title; + state.action = $('#editor').data('action'); + state.id = $('#editor').data('id' ); + History.toActualHistory( state ); +} + + + + +/** + * History-API. + */ +var History = new function () { + 'use strict'; + + this.fromHistory = function(ev) { + var state = ev.state; + Workbench.loadNewAction(state.action,state.id); + } + + this.toHistory = function(obj) { + window.history.pushState(obj,obj.name,'./?action='+obj.action+'&id='+obj.subaction); + } + + this.toActualHistory = function(obj) { + window.history.replaceState(obj,obj.name,'./?action='+obj.action+'&id='+obj.subaction); + } +} var Workbench = new function() @@ -74,53 +119,38 @@ var Workbench = new function() /** * */ - this.openNewTab = function(contentEl,action,method,id,params ) { + this.loadNewAction = function(action, method, id, params ) { - // Schauen, ob der Inhalt schon geladen ist... - var targetEl = $(contentEl).children('div.sheet.action-'+action+'.method-'+method+'.id-'+id); + var state = {action:action,method:method,id:id,data:params}; + History.toHistory(state); - if ( targetEl.length == 0 ) - { - // Noch nicht vorhanden, neues Element erstellen. - $(contentEl).children('div.sheet').hide(); - targetEl = $('<div class="sheet action-'+action+' method-'+method+' id-'+id + '" />' ); - $(contentEl).append(targetEl); - } - else - { - if ( targetEl.is(':visible') ) - { - return; - } - else - { - $(contentEl).children('div.sheet').hide(); - targetEl.show(); - return; - } - } + $('#workbench .view-loader').each( function(idx) { + var targetDOMElement = $(this); + var method = targetDOMElement.data('method'); - var url = createUrl(action,method,id,params); // URL für das Laden erzeugen. + var url = createUrl(action,method,id,params); // URL für das Laden erzeugen. - $(targetEl).empty().fadeTo(1,0.7).addClass('loader').html('').load(url,function(response, status, xhr) { - $(targetEl).fadeTo(350,1); + targetDOMElement.empty().fadeTo(1,0.7).addClass('loader').html('').load(url,function(response, status, xhr) { + targetDOMElement.fadeTo(350,1); - if ( status == "error" ) - { - // Seite nicht gefunden. - $(targetEl).html(""); - $(targetEl).removeClass("loader"); + if ( status == "error" ) + { + // Seite nicht gefunden. + $(targetDOMElement).html(""); + $(targetDOMElement).removeClass("loader"); - notify('error',response); - // OK-button Ausblenden. - //$(targetEl).closest('div.panel').find('div.bottom > div.command > input').addClass('invisible'); - // var msg = "Sorry but there was an error: "; - //$(this).html(msg + xhr.status + " " + xhr.statusText); - return; - } + notify('error',response); + // OK-button Ausblenden. + //$(targetEl).closest('div.panel').find('div.bottom > div.command > input').addClass('invisible'); + // var msg = "Sorry but there was an error: "; + //$(this).html(msg + xhr.status + " " + xhr.statusText); + return; + } - $(targetEl).removeClass("loader"); - registerViewEvents( targetEl ); + $(targetDOMElement).removeClass("loader"); + + registerViewEvents( targetDOMElement ); + }); }); } @@ -467,7 +497,6 @@ function registerWorkbenchEvents() fullscreen( this ); } ); - loadTree(); // Initial Loading of the navigationtree } @@ -477,13 +506,6 @@ function registerWorkbenchEvents() */ function refreshTitleBar() { - $('#header').load( createUrl('title','show',0 ),function() { - $(this).fadeIn('slow'); - - registerHeaderEvents(); - }); - - // Modale Dialoge //$('form.login, form.profile').dialog( { modal:true, resizable:false, width:760, height:600, draggable: false } ); } @@ -509,7 +531,7 @@ function loadViewByName(viewName, url ) */ function loadView(contentEl,action,method,id,params ) { - Workbench.openNewTab(contentEl,action,method,id,params ); + Workbench.loadNewAction(action,method,id,params ); } @@ -602,19 +624,19 @@ function registerHeaderEvents() $('.toolbar-icon.menu').parent().removeClass('open'); }); // Mit der Maus geklicktes Menü aktivieren. - $('#header .toolbar-icon.menu').click( function(event) { + $('#title .toolbar-icon.menu').click( function(event) { event.stopPropagation(); $(this).parent().toggleClass('open'); }); // Mit der Maus überstrichenes Menü aktivieren. - $('#header .toolbar-icon.menu').mouseover( function() { + $('#title .toolbar-icon.menu').mouseover( function() { $(this).parent().find('.toolbar-icon.menu').removeClass('open'); $(this).addClass('open'); }); - $('#header').trigger('orHeaderLoaded'); + $('#title').trigger('orHeaderLoaded'); // S u c h e @@ -628,51 +650,6 @@ function registerHeaderEvents() $('div.search input').orSearch( { dropdown:'div.search div.dropdown' } ); - /* - * - // V e r l a u f - $('#header div.history').hover( function(){ - $('#header div.history div.dropdown').html(''); - $.ajax( { 'type':'GET', url:'./dispatcher.php?action=title&subaction=history', data:null, success:function(data, textStatus, jqXHR) - { - for( id in data.history ) - { - var result = data.history[id]; - - // Suchergebnis-Zeile in das Ergebnis schreiben. - $('#header div.history div.dropdown').append('<div title="'+result.desc+'" onclick="loadViewByName(\'content\',\''+result.url+'\');"><img src="'+OR_THEMES_EXT_DIR+'default/images/icon_'+result.type+'.png" />'+result.name+'</div>'); - } - } } ); - $('#header div.history div.dropdown').fadeIn(); - }); - */ - - - /* - $base = defined('OR_BASE_URL')?slashify(OR_BASE_URL).'editor/editor/':'./editor/editor/'; - $editor->basePath = $base; - $editor->config['skin' ] = 'v2'; - $editor->config['language' ] = config('language','language_code'); - $editor->config['toolbar' ] = 'Openrat'; - $editor->config['toolbar_Openrat' ] = array( -array('Save','Preview','-','Templates'), -array('Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'), -array('Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'), -array('Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'), -'/', -array('Bold','Italic','Underline','Strike','-','Subscript','Superscript'), -array('NumberedList','BulletedList','-','Outdent','Indent','Blockquote'), -array('JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'), -array('Link','Unlink','Anchor'), -array('Image','Flash','Table','HorizontalRule','SpecialChar','PageBreak'), -'/', -array('Styles','Format','Font','FontSize'), -array('TextColor','BGColor'), -array('Source','-', 'ShowBlocks','Maximize') ); - - $editor->config['filebrowserUploadUrl' ] = str_replace('&amp;','&',Html::url('filebrowser','directupload','-',array(REQ_PARAM_TOKEN=>token(),'name'=>'upload'))); - $editor->config['filebrowserBrowseUrl' ] = str_replace('&amp;','&',Html::url('filebrowser','browse','-')); - */ } @@ -690,22 +667,18 @@ function fullscreen( element ) { function loadTree() { - // Nur, wenn ein Baum auch angezeigt werden soll. - if ( $('div#panel-tree li.action').data('action')=='tree' ) - { // Oberstes Tree-Element erzeugen - $('div#panel-tree div.content > div.sheet.action-tree.method-tree').html("&nbsp;"); + $('#navigation').html("&nbsp;"); // Wurzel des Baums laden //loadBranch( $('div#tree ul.tree > li'),'root',0); - $('div#panel-tree div.content > div.sheet.action-tree.method-tree').orTree( { type:'root',id:0,onSelect:function(name,type,id,extraId) { + $('#navigation').orTree( { type:'root',id:0,onSelect:function(name,type,id,extraId) { openNewAction( name,type,id, extraId ); } }); // Die ersten 2 Hierarchien öffnen: - $('div#panel-tree div.content > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click(); - $('div#panel-tree div.content > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click(); - } + $('#navigation > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click(); + $('#navigation > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click(); } @@ -763,7 +736,6 @@ function getActiveView() */ function startView( element,method ) { - var active = getActiveView(); loadView( $(element).closest('div.panel').find('div.content'), active.action,method,active.id,active.extraid ); // Alle refresh-fähigen Views mit dem neuen Objekt laden. @@ -781,13 +753,6 @@ function startView( element,method ) */ function startDialog( name,action,method,id,params ) { - if ( action== null || action.length ==0 ) - action = $('#panel-content').find('li.active').data('action'); - if (id==null || id.length ==0) - id = $('#panel-content').find('li.active').data('id' ); - if (typeof params === "undefined") - params = $('#panel-content').find('li.active').data('extra'); - $('div#filler').fadeTo(500,0.5); $('div#dialog').html('<div class="header"><ul class="views"><li class="action active"><img class="icon" title="" src="./themes/default/images/icon/'+method+'.png" /><div class="tabname" style="width:100px;">'+name+'</div></li></ul></div><div class="content" />'); $('div#dialog').data('id',id); @@ -841,130 +806,7 @@ function openNewAction( name,action,id,extraId ) { setTitle( name ); // Title setzen. - // Andere Tabs auf inaktiv setzen - $('ul#history li.active').removeClass('active'); - - // Tab schon vorhanden? - if ( $('ul#history li.'+action+'.id'+id).length > 0 ) - { - // Ja, Tab schon vorhanden - // Gewünschtes Tab aktiv setzen - $('ul#history li.'+action+'.id'+id).addClass('active'); - } - else - { - // Tab noch nicht vorhanden, also jetzt hier ergänzen. - $('ul#history').append('<li class="action active '+action+' id'+id+'"><img src="'+OR_THEMES_EXT_DIR+'default/images/icon_'+action+'.png" title="" />'+name+'</li>'); - $('ul#history li.active').click( function() - { - // Action-Tab wurde angeklickt - $('ul#history li.active').removeClass('active'); // Andere Tabs auf inaktiv setzen - $(this).addClass('active'); // Angeklicktes Tab auf aktiv setzen - - setNewAction(action,id,extraId); - } ); - } - - // Andere Tabs auf inaktiv setzen - $('div#panel-content > div.header > ul.views li.active').removeClass('active'); - - // Tab schon vorhanden? - if ( $('div#panel-content > div.header > ul.views > li.'+action+'.id'+id).length > 0 ) - { - // Ja, Tab schon vorhanden - // Gewünschtes Tab aktiv setzen - $('div#panel-content > div.header > ul.views > li.'+action+'.id'+id).addClass('active'); - } - else - { - // Neuen Tab in Hauptfenster anlegen - $('div#panel-content > div.header > ul.views > li.active').removeClass('active'); - - // Wenn max. Anzahl überschritten, dann den ersten entfernen. - var maxTabs = 7; - if ( $('div#panel-content > div.header > ul.views > li.action').length >= maxTabs ) - $('div#panel-content > div.header > ul.views > li.action').first().remove(); - - var newLi = $('<li class="action active '+action+' id'+id+'" title="'+name+'"><img class="icon" src="'+OR_THEMES_EXT_DIR+'default/images/icon_'+action+'.png" title="" /><div class="tabname">'+name+'</div><img class="close icon" src="'+OR_THEMES_EXT_DIR+'default/images/icon/close.gif" title="" /></li>'); - $('div#panel-content > div.header > ul.views').append(newLi); - - newLi.data('action',action); - newLi.data('id',id); - newLi.data('extra',extraId); - newLi.data('method',DEFAULT_CONTENT_ACTION); - - resizeTabs( $('div#contentbar'),true); - $('div#panel-content > div.header > ul.views').scrollLeft(9999); - - // Klick auf den "Schließen"-Knopf - $('div#panel-content > div.header > ul.views img.close').click( function() - { - setTitle( '' ); // Title entfernen. - - // Zuerst die dazugehörigen, geladenen Inhalte von Views löschen, um kein - // Memory-Leak zu erzeugen ;) - var action = $(this).closest('li.action').data('action'); - var id = $(this).closest('li.action').data('id' ); - $('#workbench div.content > div.sheet.action-'+action+'.id-'+id).remove(); - - // Schließen - // Wenn aktiver Tab, dann den Inhalt loeschen - if ( $(this).closest('li.action').hasClass('active') ) - { - //$(this).closest('div.panel').find('div.content').html(''); // Inhalt entfernen - $('#workbench div.refreshable div.content').html(''); - - var views = $(this).closest('ul.views'); - - // Und jetzt den Tab entfernen - $(this).parent().remove(); // Tab entfernen - - // Letzten Tab aktivieren (sofern vorhanden) - $(views).find('li.action').last().click(); - } - else - { - // Inaktive Tabs nur löschen. - $(this).parent().remove(); // Tab entfernen - } - - resizeTabs( $('div#panel-content'),true); - } ); - - // Klick auf den Reiter - $('div#panel-content > div.header > ul.views > li.active').click( function() - { - // Action-Tab wurde angeklickt - $('div#panel-content > div.header > ul.views li.active').removeClass('active'); // Andere Tabs auf inaktiv setzen - $(this).addClass('active'); // Angeklicktes Tab auf aktiv setzen - - setTitle( $(this).children('div.tabname').text() ); - - // Zum angeklickten Tab scrollen - //$('div#content > div.panel > div.menu > div.views > ul.views').scrollTo(this); - - setNewAction(action,id,extraId); - } ); - - // Nach dem Hinzufügen eines neue Tabs die Größe aller Tabs in diesem Panel anpassen. - resizeTabs( $('div#panel-content ') ); - - /* - * Eventhandler hängt schon auf div.menu - $('div#content > div.panel > div.menu > div.views > ul.views li.active').dblclick( function() - { - fullscreen( this ); - } ); - */ - - } - - // Zum angeklickten Tab scrollen - - //$('div#content > div.panel > div.menu > div.views > ul.views').scrollTo(this); setNewAction( action,id,extraId ); - - } @@ -986,10 +828,10 @@ function filterMenus(action) function setNewAction( action,id,extraId ) { filterMenus(action); - $('#workbench ul.views > li.action.dependent').data('action',action).data('id',id).data('extra',extraId); - + + Workbench.loadNewAction(action,'edit',id,extraId); // Alle refresh-fähigen Views mit dem neuen Objekt laden. - refreshAllRefreshables(); + //refreshAllRefreshables(); } @@ -1129,38 +971,6 @@ else -function loadSubaction( el, actionName, subactionName,id ) -{ - alert('nobody should call loadSubaction()'); - // E d i t o r - var editorConfig = { - skin : 'v2', - baseHref: OR_THEMES_EXT_DIR+'../editor/editor/', - customConfig : 'config-openrat.js', - filebrowserUploadUrl:'./dispatcher.php?action=filebrowser&subaction=directupload&name=upload', - filebrowserBrowseUrl:'./dispatcher.php?action=filebrowser&subaction=browse' - }; - - var main = $(el).parent().parent().parent('div.panel').children('div.content').first(); - $(main).load(createUrl(actionName,subactionName,id)+' div.content',null, function() { - var o=CKEDITOR.instances[ $('textarea.editor').attr('name') ]; - if (o) o.destroy(); - - //alert("o ist "+o); - //$('textarea.editor').ckeditor( function() { /*alert("editor ready");*/ /* callback code */ }, editorConfig ); - CKEDITOR.replace('text',{ - customConfig : 'config-openrat.js' - }); - }); - - $(el).parent().parent().find('.active').removeClass('active'); - $(el).parent().addClass('active'); - - -} - - - /** * Erzeugt eine URL, um die gewünschte Action vom Server zu laden. @@ -1174,25 +984,27 @@ function loadSubaction( el, actionName, subactionName,id ) function createUrl(action,subaction,id,extraid) { var url = './'; + url += '?action=' + action + ';'; + if (subaction != null) + url += '&subaction='+subaction+';' + + url += '&id='+id; + if ( typeof extraid === 'string') { - url += '?action='+action+'&subaction='+subaction+'&id='+id; jQuery.each(jQuery.parseJSON(extraid), function(name, value) { url = url + '&' + name + '=' + value; }); } else if ( typeof extraid === 'object') { - url += '?action='+action+'&subaction='+subaction+'&id='+id; jQuery.each(extraid, function(name, field) { url = url + '&' + name + '=' + field; }); } else { - url += '?action='+action+'&subaction='+subaction+'&id='+id; } - console.log("URL="+url); return url; } diff --git a/modules/cms-ui/themes/default/script/openrat.min.js b/modules/cms-ui/themes/default/script/openrat.min.js @@ -1,18 +1,13 @@ -;var DEFAULT_CONTENT_ACTION='edit',OR_THEMES_EXT_DIR='modules/cms-ui/themes/';$(function(){$('html').removeClass('nojs');$('.initial-hidden').removeClass('initial-hidden');refreshAll();Workbench.initialize()});var Workbench=new function(){'use strict';this.initialize=function(){this.initializePingTimer();this.loadInitialViews()};this.loadInitialViews=function(){};this.initializePingTimer=function(){var e=function(){$.ajax(createUrl('title','ping',0))},i=5;window.setInterval(e,i*60*1000)};this.openNewTab=function(e,i,t,n,s){var a=$(e).children('div.sheet.action-'+i+'.method-'+t+'.id-'+n);if(a.length==0){$(e).children('div.sheet').hide();a=$('<div class="sheet action-'+i+' method-'+t+' id-'+n+'" />');$(e).append(a)} -else{if(a.is(':visible')){return} -else{$(e).children('div.sheet').hide();a.show();return}};var l=createUrl(i,t,n,s);$(a).empty().fadeTo(1,0.7).addClass('loader').html('').load(l,function(e,i,t){$(a).fadeTo(350,1);if(i=='error'){$(a).html('');$(a).removeClass('loader');notify('error',e);return};$(a).removeClass('loader');registerViewEvents(a)})}};function refreshAll(){refreshTitleBar();refreshWorkbench();$('div#filler').click(function(){if($('div#dialog').hasClass('modal')){} -else{$('div#dialog').html('').hide();$('div#filler').fadeOut(500)}})};function refreshAllRefreshables(){$('#workbench div.panel > div.header > ul.views > li.active').each(function(){if($(this).hasClass('static'))return;var e=$(this).data('method'),i=$(this).data('action'),t=$(this).data('id'),a=$(this).data('extra');loadView($(this).closest('div.panel').find('div.content'),i,e,t,a)})};function refreshActualView(e){$(e).closest('div.panel').find('li.active').each(function(){var e=$(this).attr('data-method'),i=$(this).attr('data-action'),t=$(this).attr('data-id');loadView($(this).closest('div.panel').find('div.content'),i,e,t)})};function refreshWorkbench(){$('ul#history').empty();resizeWorkbench();$('div.modaldialog').fadeOut(500);$('#workbench').removeClass('modal');$('div#filler').fadeOut(500);$('#workbench').fadeIn(750).find('li.active').each(function(){var i=$(this).attr('data-method'),e=$(this).attr('data-action');if(e)loadView($(this).closest('div.panel').find('div.content'),e,i,0)});$('div.backward_link').click(function(){var e=$(this).closest('div.header').find('ul.views'),i=e.find('li.action.active').prev();e.scrollTo(i,500,{'axis':'x'});i.click()});$('div.forward_link').click(function(){var e=$(this).closest('div.header').find('ul.views'),i=e.find('li.action.active').next();e.scrollTo(i,500,{'axis':'x'});i.click()});registerWorkbenchEvents();$(window).resize(function(){resizeWorkbench()})};function registerWorkbenchEvents(){$('ul.views > li.action').draggable({cursor:'move',revert:'invalid'});$('ul.views').droppable({accept:'li.action',hoverClass:'drophover',activeClass:'dropactive',drop:function(e,i){var a=i.draggable,s=$(this),n=a.parent();if($(a).closest('div.panel').attr('id')==$(s).closest('div.panel').attr('id'))$(a).css({top:0,left:0});else $(a).detach().css({top:0,left:0}).appendTo(s).click();if(n.find('li').size()==0){var t=n.closest('div.container');n.closest('div.panel').remove();if(t.hasClass('autosize'))t.children('div.panel').addClass('autosize').removeClass('resizable');else t.children('div.panel').addClass('resizable').removeClass('autosize');t.replaceWith(t.children('div.panel'));resizeWorkbench()}}});$('div.content').droppable({accept:'li.action',hoverClass:'drophover',activeClass:'dropactive',drop:function(e,i){var n=i.draggable,s=$(this),o=n.parent(),l=n.offset(),d=s.offset(),h=l.left-d.left,v=d.left+s.width()-l.left,r=l.top-d.top,c=d.top+s.height()-l.top,t=$('<div class="container"><div class="first" /><div class="divider" /><div class="second"></div>');if(h<Math.min(v,Math.min(r,c))){t.addClass('axle-x');t.children('div.divider').addClass('to-right');t.children('div.first').removeClass('first').addClass('resizable');t.children('div.second').removeClass('first').addClass('autosize')} -else if(v<Math.min(r,c)){t.addClass('axle-x');t.children('div.divider').addClass('to-left');t.children('div.first').removeClass('first').addClass('autosize');t.children('div.second').removeClass('first').addClass('resizable')} -else if(r<c){t.addClass('axle-y');t.children('div.divider').addClass('to-bottom');t.children('div.first').removeClass('first').addClass('resizable');t.children('div.second').removeClass('first').addClass('autosize')} -else{t.addClass('axle-y');t.children('div.divider').addClass('to-top');t.children('div.first').removeClass('first').addClass('autosize');t.children('div.second').removeClass('first').addClass('resizable')};t.children('div.resizable').addClass('bar').data('size-factor',0.4);$(n).closest('div.panel').clone().addClass('resizable').removeClass('autosize').replaceAll(t.children('div.resizable'));t.find('ul.views > li').remove();$(n).detach().css({top:0,left:0}).appendTo(t.find('ul.views')).click();var a=$(s).closest('div.panel').replaceWith(t);t.children('div.autosize').replaceWith(a);if(a.hasClass('autosize')){t.addClass('autosize').removeClass('resizable')};if(a.hasClass('resizable')){t.addClass('resizable').removeClass('autosize')};a.addClass('autosize').removeClass('resizable');if(o.find('li').length==0){var a=o.closest('div.container');o.closest('div.panel').remove();if(a.hasClass('autosize'))a.children('div.panel').addClass('autosize').removeClass('resizable');else a.children('div.panel').addClass('resizable').removeClass('autosize');a.replaceWith(a.children('div.panel'));resizeWorkbench()};resizeWorkbench();registerWorkbenchEvents()}});if($('#workbench div.panel.modal').length>0){$('#workbench div.panel.modal').parent().addClass('modal');$('div#filler').fadeTo(500,0.5);$('#workbench').addClass('modal')};$('div.container.axle-x > div.divider').draggable({stop:function(e,i){var t=i.position.left,a=$(this).hasClass('to-right')?1:-1;$(this).parent().children('div.resizable').each(function(){var e=((a*t)+$(this).width())/($(this).parent().width());e=Math.min(0.5,Math.max(0.1,e));$(this).data('size-factor',e)});resizeWorkbenchContainer($(this).parent())},axis:'x',revert:!0,revertDuration:0});$('div.container.axle-y > div.divider').draggable({stop:function(e,i){var t=i.position.top,a=$(this).hasClass('to-bottom')?1:-1;$(this).parent().children('div.resizable').each(function(){var e=((a*t)+$(this).height())/($(this).parent().height());e=Math.min(0.5,Math.max(0.1,e));$(this).data('size-factor',e)});resizeWorkbenchContainer($(this).parent())},axis:'y',revert:!0,revertDuration:0});$('ul.views > li.action').click(function(){$(this).orLoadView()});$('div.header').dblclick(function(){fullscreen(this)});loadTree()};function refreshTitleBar(){$('#header').load(createUrl('title','show',0),function(){$(this).fadeIn('slow');registerHeaderEvents()})};function loadViewByName(e,i){alert('loadViewByName');loadView($('div#'+e),i)};function loadView(e,i,t,a,n){Workbench.openNewTab(e,i,t,a,n)};function registerViewEvents(e){$(e).trigger('orViewLoaded');$(e).find('input[data-hint]').orHint();$(e).closest('div.panel').find('div.header div.dropdown div.entry.perview').remove();$(e).find('div.headermenu > a').each(function(e,i){});$(e).find('div.header > a.back').each(function(i,t){$(t).removeClass('button').wrap('<div class="entry perview" />').parent().appendTo($(e).closest('div.panel').find('div.header div.dropdown').first())});$(e).find('div.selector.tree').each(function(){var e=this;$(this).orTree({type:'project',selectable:$(e).attr('data-types').split(','),id:$(e).attr('data-init-folderid'),onSelect:function(i,t,a){var n=$(e).parent();$(n).find('input[type=text]').attr('value',i);$(n).find('input[type=hidden]').attr('value',a)}})});$('div.content li.object').draggable({cursor:'move',revert:'invalid'});$('div.content li.object > div.entry[data-type=\'folder\']').droppable({accept:'li.object',hoverClass:'drophover',activeClass:'dropactive',drop:function(e,i){var t=i.draggable,a=$(this).parent();startDialog($(this).text(),$(t).attr('data-type'),'copy',$(a).attr('data-id'),{'action':$(t).attr('data-type'),'subaction':'copy','id':$(t).attr('data-id'),'targetFolderId':$(a).attr('data-id')});$(t).detach().css({top:0,left:0}).appendTo(a).click()}});$(e).find('input').change(function(){$(this).closest('div.panel').find('ul.views li.action.active').addClass('dirty')})};function registerHeaderEvents(){$('body').click(function(){$('.toolbar-icon.menu').parent().removeClass('open')});$('#header .toolbar-icon.menu').click(function(e){e.stopPropagation();$(this).parent().toggleClass('open')});$('#header .toolbar-icon.menu').mouseover(function(){$(this).parent().find('.toolbar-icon.menu').removeClass('open');$(this).addClass('open')});$('#header').trigger('orHeaderLoaded');$('div.search input').blur(function(){$('div.search input div.dropdown').fadeOut()});$('div.search input').orHint();$('div.search input').orSearch({dropdown:'div.search div.dropdown'})};function fullscreen(e){$(e).closest('div.panel').fadeOut('fast',function(){$(this).toggleClass('fullscreen').fadeIn('fast')})};function loadTree(){if($('div#panel-tree li.action').data('action')=='tree'){$('div#panel-tree div.content > div.sheet.action-tree.method-tree').html('&nbsp;');$('div#panel-tree div.content > div.sheet.action-tree.method-tree').orTree({type:'root',id:0,onSelect:function(e,i,t,a){openNewAction(e,i,t,a)}});$('div#panel-tree div.content > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click();$('div#panel-tree div.content > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click()}};function submitUrl(e,i){postUrl(i,e);refreshAllRefreshables()};function postUrl(e,i){e+='&output=json';$.ajax({'type':'POST',url:e,data:{},success:function(e,t,a){$('div.panel div.status div.loader').html('&nbsp;');doResponse(e,t,i)}})};function getActiveView(){var e=$('#panel-content').find('li.active');return{'action':$(e).data('action'),'id':$(e).data('id'),'extraid':$(e).data('extra')}};function startView(e,i){var t=getActiveView();loadView($(e).closest('div.panel').find('div.content'),t.action,i,t.id,t.extraid)};function startDialog(e,i,t,a,n){if(i==null||i.length==0)i=$('#panel-content').find('li.active').data('action');if(a==null||a.length==0)a=$('#panel-content').find('li.active').data('id');if(typeof n==='undefined')n=$('#panel-content').find('li.active').data('extra');$('div#filler').fadeTo(500,0.5);$('div#dialog').html('<div class="header"><ul class="views"><li class="action active"><img class="icon" title="" src="./themes/default/images/icon/'+t+'.png" /><div class="tabname" style="width:100px;">'+e+'</div></li></ul></div><div class="content" />');$('div#dialog').data('id',a);$('div#dialog').show();loadView($('div#dialog div.content'),i,t,a,n)};function modalView(e,i){var t=$(e).closest('div.panel').find('li.active').attr('data-action'),a=$(e).closest('div.panel').find('li.active').attr('data-method'),n=$(e).closest('div.panel').find('li.active').attr('data-id');$(e).closest('div.content').modal({'overlayClose':'true','xxxonClose':function(){alert('close)')}});loadView($(e).closest('div.content'),t,a,n)};function setTitle(e){if(e)$('head > title').text(e+' - '+$('head > title').data('default'));else $('head > title').text($('head > title').data('default'))};function openNewAction(e,i,t,a){setTitle(e);$('ul#history li.active').removeClass('active');if($('ul#history li.'+i+'.id'+t).length>0){$('ul#history li.'+i+'.id'+t).addClass('active')} -else{$('ul#history').append('<li class="action active '+i+' id'+t+'"><img src="'+OR_THEMES_EXT_DIR+'default/images/icon_'+i+'.png" title="" />'+e+'</li>');$('ul#history li.active').click(function(){$('ul#history li.active').removeClass('active');$(this).addClass('active');setNewAction(i,t,a)})};$('div#panel-content > div.header > ul.views li.active').removeClass('active');if($('div#panel-content > div.header > ul.views > li.'+i+'.id'+t).length>0){$('div#panel-content > div.header > ul.views > li.'+i+'.id'+t).addClass('active')} -else{$('div#panel-content > div.header > ul.views > li.active').removeClass('active');var s=7;if($('div#panel-content > div.header > ul.views > li.action').length>=s)$('div#panel-content > div.header > ul.views > li.action').first().remove();var n=$('<li class="action active '+i+' id'+t+'" title="'+e+'"><img class="icon" src="'+OR_THEMES_EXT_DIR+'default/images/icon_'+i+'.png" title="" /><div class="tabname">'+e+'</div><img class="close icon" src="'+OR_THEMES_EXT_DIR+'default/images/icon/close.gif" title="" /></li>');$('div#panel-content > div.header > ul.views').append(n);n.data('action',i);n.data('id',t);n.data('extra',a);n.data('method',DEFAULT_CONTENT_ACTION);resizeTabs($('div#contentbar'),!0);$('div#panel-content > div.header > ul.views').scrollLeft(9999);$('div#panel-content > div.header > ul.views img.close').click(function(){setTitle('');var i=$(this).closest('li.action').data('action'),t=$(this).closest('li.action').data('id');$('#workbench div.content > div.sheet.action-'+i+'.id-'+t).remove();if($(this).closest('li.action').hasClass('active')){$('#workbench div.refreshable div.content').html('');var e=$(this).closest('ul.views');$(this).parent().remove();$(e).find('li.action').last().click()} -else{$(this).parent().remove()};resizeTabs($('div#panel-content'),!0)});$('div#panel-content > div.header > ul.views > li.active').click(function(){$('div#panel-content > div.header > ul.views li.active').removeClass('active');$(this).addClass('active');setTitle($(this).children('div.tabname').text());setNewAction(i,t,a)});resizeTabs($('div#panel-content '))};setNewAction(i,t,a)};function filterMenus(e){$('div.clickable').addClass('active');$('div.clickable.filtered').removeClass('active').addClass('inactive');$('div.clickable.filtered.on-action-'+e).addClass('active').removeClass('inactive')};function setNewAction(e,i,t){filterMenus(e);$('#workbench ul.views > li.action.dependent').data('action',e).data('id',i).data('extra',t);refreshAllRefreshables()};function setNewId(e){$('#workbench div.refreshable').attr('data-id',e);refreshAllRefreshables()};function notifyBrowser(e){if(!('Notification' in window)){return} +;var DEFAULT_CONTENT_ACTION='edit',OR_THEMES_EXT_DIR='modules/cms-ui/themes/';$(function(){$('html').removeClass('nojs');$('.initial-hidden').removeClass('initial-hidden');refreshAll();registerHeaderEvents();$('#workbench .view').each(function(e){registerViewEvents(this)});window.onpopstate=function(e){History.fromHistory(e.state)};initActualHistoryState();Workbench.initialize();loadTree()});function initActualHistoryState(){var e={};e.name=window.document.title;e.action=$('#editor').data('action');e.id=$('#editor').data('id');History.toActualHistory(e)};var History=new function(){'use strict';this.fromHistory=function(e){var i=e.state;Workbench.loadNewAction(i.action,i.id)};this.toHistory=function(e){window.history.pushState(e,e.name,'./?action='+e.action+'&id='+e.subaction)};this.toActualHistory=function(e){window.history.replaceState(e,e.name,'./?action='+e.action+'&id='+e.subaction)}},Workbench=new function(){'use strict';this.initialize=function(){this.initializePingTimer();this.loadInitialViews()};this.loadInitialViews=function(){};this.initializePingTimer=function(){var e=function(){$.ajax(createUrl('title','ping',0))},i=5;window.setInterval(e,i*60*1000)};this.loadNewAction=function(e,i,t,a){var n={action:e,method:i,id:t,data:a};History.toHistory(n);$('#workbench .view-loader').each(function(i){var n=$(this),s=n.data('method'),o=createUrl(e,s,t,a);n.empty().fadeTo(1,0.7).addClass('loader').html('').load(o,function(e,i,t){n.fadeTo(350,1);if(i=='error'){$(n).html('');$(n).removeClass('loader');notify('error',e);return};$(n).removeClass('loader');registerViewEvents(n)})})}};function refreshAll(){refreshTitleBar();refreshWorkbench();$('div#filler').click(function(){if($('div#dialog').hasClass('modal')){} +else{$('div#dialog').html('').hide();$('div#filler').fadeOut(500)}})};function refreshAllRefreshables(){$('#workbench div.panel > div.header > ul.views > li.active').each(function(){if($(this).hasClass('static'))return;var e=$(this).data('method'),i=$(this).data('action'),t=$(this).data('id'),a=$(this).data('extra');loadView($(this).closest('div.panel').find('div.content'),i,e,t,a)})};function refreshActualView(e){$(e).closest('div.panel').find('li.active').each(function(){var e=$(this).attr('data-method'),i=$(this).attr('data-action'),t=$(this).attr('data-id');loadView($(this).closest('div.panel').find('div.content'),i,e,t)})};function refreshWorkbench(){$('ul#history').empty();resizeWorkbench();$('div.modaldialog').fadeOut(500);$('#workbench').removeClass('modal');$('div#filler').fadeOut(500);$('#workbench').fadeIn(750).find('li.active').each(function(){var i=$(this).attr('data-method'),e=$(this).attr('data-action');if(e)loadView($(this).closest('div.panel').find('div.content'),e,i,0)});$('div.backward_link').click(function(){var e=$(this).closest('div.header').find('ul.views'),i=e.find('li.action.active').prev();e.scrollTo(i,500,{'axis':'x'});i.click()});$('div.forward_link').click(function(){var e=$(this).closest('div.header').find('ul.views'),i=e.find('li.action.active').next();e.scrollTo(i,500,{'axis':'x'});i.click()});registerWorkbenchEvents();$(window).resize(function(){resizeWorkbench()})};function registerWorkbenchEvents(){$('ul.views > li.action').draggable({cursor:'move',revert:'invalid'});$('ul.views').droppable({accept:'li.action',hoverClass:'drophover',activeClass:'dropactive',drop:function(e,i){var a=i.draggable,s=$(this),n=a.parent();if($(a).closest('div.panel').attr('id')==$(s).closest('div.panel').attr('id'))$(a).css({top:0,left:0});else $(a).detach().css({top:0,left:0}).appendTo(s).click();if(n.find('li').size()==0){var t=n.closest('div.container');n.closest('div.panel').remove();if(t.hasClass('autosize'))t.children('div.panel').addClass('autosize').removeClass('resizable');else t.children('div.panel').addClass('resizable').removeClass('autosize');t.replaceWith(t.children('div.panel'));resizeWorkbench()}}});$('div.content').droppable({accept:'li.action',hoverClass:'drophover',activeClass:'dropactive',drop:function(e,i){var n=i.draggable,s=$(this),d=n.parent(),o=n.offset(),r=s.offset(),f=o.left-r.left,v=r.left+s.width()-o.left,l=o.top-r.top,c=r.top+s.height()-o.top,t=$('<div class="container"><div class="first" /><div class="divider" /><div class="second"></div>');if(f<Math.min(v,Math.min(l,c))){t.addClass('axle-x');t.children('div.divider').addClass('to-right');t.children('div.first').removeClass('first').addClass('resizable');t.children('div.second').removeClass('first').addClass('autosize')} +else if(v<Math.min(l,c)){t.addClass('axle-x');t.children('div.divider').addClass('to-left');t.children('div.first').removeClass('first').addClass('autosize');t.children('div.second').removeClass('first').addClass('resizable')} +else if(l<c){t.addClass('axle-y');t.children('div.divider').addClass('to-bottom');t.children('div.first').removeClass('first').addClass('resizable');t.children('div.second').removeClass('first').addClass('autosize')} +else{t.addClass('axle-y');t.children('div.divider').addClass('to-top');t.children('div.first').removeClass('first').addClass('autosize');t.children('div.second').removeClass('first').addClass('resizable')};t.children('div.resizable').addClass('bar').data('size-factor',0.4);$(n).closest('div.panel').clone().addClass('resizable').removeClass('autosize').replaceAll(t.children('div.resizable'));t.find('ul.views > li').remove();$(n).detach().css({top:0,left:0}).appendTo(t.find('ul.views')).click();var a=$(s).closest('div.panel').replaceWith(t);t.children('div.autosize').replaceWith(a);if(a.hasClass('autosize')){t.addClass('autosize').removeClass('resizable')};if(a.hasClass('resizable')){t.addClass('resizable').removeClass('autosize')};a.addClass('autosize').removeClass('resizable');if(d.find('li').length==0){var a=d.closest('div.container');d.closest('div.panel').remove();if(a.hasClass('autosize'))a.children('div.panel').addClass('autosize').removeClass('resizable');else a.children('div.panel').addClass('resizable').removeClass('autosize');a.replaceWith(a.children('div.panel'));resizeWorkbench()};resizeWorkbench();registerWorkbenchEvents()}});if($('#workbench div.panel.modal').length>0){$('#workbench div.panel.modal').parent().addClass('modal');$('div#filler').fadeTo(500,0.5);$('#workbench').addClass('modal')};$('div.container.axle-x > div.divider').draggable({stop:function(e,i){var t=i.position.left,a=$(this).hasClass('to-right')?1:-1;$(this).parent().children('div.resizable').each(function(){var e=((a*t)+$(this).width())/($(this).parent().width());e=Math.min(0.5,Math.max(0.1,e));$(this).data('size-factor',e)});resizeWorkbenchContainer($(this).parent())},axis:'x',revert:!0,revertDuration:0});$('div.container.axle-y > div.divider').draggable({stop:function(e,i){var t=i.position.top,a=$(this).hasClass('to-bottom')?1:-1;$(this).parent().children('div.resizable').each(function(){var e=((a*t)+$(this).height())/($(this).parent().height());e=Math.min(0.5,Math.max(0.1,e));$(this).data('size-factor',e)});resizeWorkbenchContainer($(this).parent())},axis:'y',revert:!0,revertDuration:0});$('ul.views > li.action').click(function(){$(this).orLoadView()});$('div.header').dblclick(function(){fullscreen(this)})};function refreshTitleBar(){};function loadViewByName(e,i){alert('loadViewByName');loadView($('div#'+e),i)};function loadView(e,i,t,a,n){Workbench.loadNewAction(i,t,a,n)};function registerViewEvents(e){$(e).trigger('orViewLoaded');$(e).find('input[data-hint]').orHint();$(e).closest('div.panel').find('div.header div.dropdown div.entry.perview').remove();$(e).find('div.headermenu > a').each(function(e,i){});$(e).find('div.header > a.back').each(function(i,t){$(t).removeClass('button').wrap('<div class="entry perview" />').parent().appendTo($(e).closest('div.panel').find('div.header div.dropdown').first())});$(e).find('div.selector.tree').each(function(){var e=this;$(this).orTree({type:'project',selectable:$(e).attr('data-types').split(','),id:$(e).attr('data-init-folderid'),onSelect:function(i,t,a){var n=$(e).parent();$(n).find('input[type=text]').attr('value',i);$(n).find('input[type=hidden]').attr('value',a)}})});$('div.content li.object').draggable({cursor:'move',revert:'invalid'});$('div.content li.object > div.entry[data-type=\'folder\']').droppable({accept:'li.object',hoverClass:'drophover',activeClass:'dropactive',drop:function(e,i){var t=i.draggable,a=$(this).parent();startDialog($(this).text(),$(t).attr('data-type'),'copy',$(a).attr('data-id'),{'action':$(t).attr('data-type'),'subaction':'copy','id':$(t).attr('data-id'),'targetFolderId':$(a).attr('data-id')});$(t).detach().css({top:0,left:0}).appendTo(a).click()}});$(e).find('input').change(function(){$(this).closest('div.panel').find('ul.views li.action.active').addClass('dirty')})};function registerHeaderEvents(){$('body').click(function(){$('.toolbar-icon.menu').parent().removeClass('open')});$('#title .toolbar-icon.menu').click(function(e){e.stopPropagation();$(this).parent().toggleClass('open')});$('#title .toolbar-icon.menu').mouseover(function(){$(this).parent().find('.toolbar-icon.menu').removeClass('open');$(this).addClass('open')});$('#title').trigger('orHeaderLoaded');$('div.search input').blur(function(){$('div.search input div.dropdown').fadeOut()});$('div.search input').orHint();$('div.search input').orSearch({dropdown:'div.search div.dropdown'})};function fullscreen(e){$(e).closest('div.panel').fadeOut('fast',function(){$(this).toggleClass('fullscreen').fadeIn('fast')})};function loadTree(){$('#navigation').html('&nbsp;');$('#navigation').orTree({type:'root',id:0,onSelect:function(e,i,t,a){openNewAction(e,i,t,a)}});$('#navigation > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click();$('#navigation > div.sheet.action-tree.method-tree > ul.tree > div.tree').delay(500).click()};function submitUrl(e,i){postUrl(i,e);refreshAllRefreshables()};function postUrl(e,i){e+='&output=json';$.ajax({'type':'POST',url:e,data:{},success:function(e,t,a){$('div.panel div.status div.loader').html('&nbsp;');doResponse(e,t,i)}})};function getActiveView(){var e=$('#panel-content').find('li.active');return{'action':$(e).data('action'),'id':$(e).data('id'),'extraid':$(e).data('extra')}};function startView(e,i){loadView($(e).closest('div.panel').find('div.content'),active.action,i,active.id,active.extraid)};function startDialog(e,i,t,a,n){$('div#filler').fadeTo(500,0.5);$('div#dialog').html('<div class="header"><ul class="views"><li class="action active"><img class="icon" title="" src="./themes/default/images/icon/'+t+'.png" /><div class="tabname" style="width:100px;">'+e+'</div></li></ul></div><div class="content" />');$('div#dialog').data('id',a);$('div#dialog').show();loadView($('div#dialog div.content'),i,t,a,n)};function modalView(e,i){var t=$(e).closest('div.panel').find('li.active').attr('data-action'),a=$(e).closest('div.panel').find('li.active').attr('data-method'),n=$(e).closest('div.panel').find('li.active').attr('data-id');$(e).closest('div.content').modal({'overlayClose':'true','xxxonClose':function(){alert('close)')}});loadView($(e).closest('div.content'),t,a,n)};function setTitle(e){if(e)$('head > title').text(e+' - '+$('head > title').data('default'));else $('head > title').text($('head > title').data('default'))};function openNewAction(e,i,t,a){setTitle(e);setNewAction(i,t,a)};function filterMenus(e){$('div.clickable').addClass('active');$('div.clickable.filtered').removeClass('active').addClass('inactive');$('div.clickable.filtered.on-action-'+e).addClass('active').removeClass('inactive')};function setNewAction(e,i,t){filterMenus(e);Workbench.loadNewAction(e,'edit',i,t)};function setNewId(e){$('#workbench div.refreshable').attr('data-id',e);refreshAllRefreshables()};function notifyBrowser(e){if(!('Notification' in window)){return} else if(Notification.permission==='granted'){var i=new Notification(e)} -else if(Notification.permission!=='denied'){Notification.requestPermission(function(i){if(i==='granted'){var t=new Notification(e)}})}};function setUserStyle(e){var i=$('html'),t=i.attr('class').split(/\s+/);$.each(t,function(e,t){if(t.startsWith('theme-')){i.removeClass(t)}});i.addClass('theme-'+e.toLowerCase())};function insert(e,i,t){var a=document.forms[0].elements[e];a.focus();if(typeof document.selection!='undefined'){var l=document.selection.createRange(),n=l.text;l.text=i+n+t;l=document.selection.createRange();if(n.length==0){l.move('character',-t.length)} -else{l.moveStart('character',i.length+n.length+t.length)};l.select()} -else if(typeof a.selectionStart!='undefined'){var d=a.selectionStart,o=a.selectionEnd,n=a.value.substring(d,o);a.value=a.value.substr(0,d)+i+n+t+a.value.substr(o);var s;if(n.length==0){s=d+i.length} -else{s=d+i.length+n.length+t.length};a.selectionStart=s;a.selectionEnd=s} -else{s=a.value.length;var n=prompt('Text');a.value=a.value.substr(0,s)+i+n+t+a.value.substr(s)}};function loadSubaction(e,i,t,a){alert('nobody should call loadSubaction()');var s={skin:'v2',baseHref:OR_THEMES_EXT_DIR+'../editor/editor/',customConfig:'config-openrat.js',filebrowserUploadUrl:'./dispatcher.php?action=filebrowser&subaction=directupload&name=upload',filebrowserBrowseUrl:'./dispatcher.php?action=filebrowser&subaction=browse'};var n=$(e).parent().parent().parent('div.panel').children('div.content').first();$(n).load(createUrl(i,t,a)+' div.content',null,function(){var e=CKEDITOR.instances[$('textarea.editor').attr('name')];if(e)e.destroy();CKEDITOR.replace('text',{customConfig:'config-openrat.js'})});$(e).parent().parent().find('.active').removeClass('active');$(e).parent().addClass('active')};function createUrl(e,i,t,a){var n='./';if(typeof a==='string'){n+='?action='+e+'&subaction='+i+'&id='+t;jQuery.each(jQuery.parseJSON(a),function(e,i){n=n+'&'+e+'='+i})} -else if(typeof a==='object'){n+='?action='+e+'&subaction='+i+'&id='+t;jQuery.each(a,function(e,i){n=n+'&'+e+'='+i})} -else{n+='?action='+e+'&subaction='+i+'&id='+t};console.log('URL='+n);return n};function resizeWorkbenchContainer(e){};function resizeWorkbench(){};function resizeTabs(e){};function help(e,i,t){var a=$(e).closest('div.panel').find('li.action.active').attr('data-action'),n=$(e).closest('div.panel').find('li.action.active').attr('data-method');window.open(i+a+'/'+n+t,'OpenRat_Help','location=no,menubar=no,scrollbars=yes,toolbar=no,resizable=yes')};function notify(e,i){var t=$('<div class="notice '+e+'"><div class="text">'+i+'</div></div>');$('#noticebar').prepend(t);notifyBrowser(i);$(t).fadeIn().click(function(){$(this).fadeOut('fast',function(){$(this).remove()})})};- \ No newline at end of file +else if(Notification.permission!=='denied'){Notification.requestPermission(function(i){if(i==='granted'){var t=new Notification(e)}})}};function setUserStyle(e){var i=$('html'),t=i.attr('class').split(/\s+/);$.each(t,function(e,t){if(t.startsWith('theme-')){i.removeClass(t)}});i.addClass('theme-'+e.toLowerCase())};function insert(e,i,t){var a=document.forms[0].elements[e];a.focus();if(typeof document.selection!='undefined'){var o=document.selection.createRange(),n=o.text;o.text=i+n+t;o=document.selection.createRange();if(n.length==0){o.move('character',-t.length)} +else{o.moveStart('character',i.length+n.length+t.length)};o.select()} +else if(typeof a.selectionStart!='undefined'){var r=a.selectionStart,d=a.selectionEnd,n=a.value.substring(r,d);a.value=a.value.substr(0,r)+i+n+t+a.value.substr(d);var s;if(n.length==0){s=r+i.length} +else{s=r+i.length+n.length+t.length};a.selectionStart=s;a.selectionEnd=s} +else{s=a.value.length;var n=prompt('Text');a.value=a.value.substr(0,s)+i+n+t+a.value.substr(s)}};function createUrl(e,i,t,a){var n='./';n+='?action='+e+';';if(i!=null)n+='&subaction='+i+';';n+='&id='+t;if(typeof a==='string'){jQuery.each(jQuery.parseJSON(a),function(e,i){n=n+'&'+e+'='+i})} +else if(typeof a==='object'){jQuery.each(a,function(e,i){n=n+'&'+e+'='+i})} +else{};return n};function resizeWorkbenchContainer(e){};function resizeWorkbench(){};function resizeTabs(e){};function help(e,i,t){var a=$(e).closest('div.panel').find('li.action.active').attr('data-action'),n=$(e).closest('div.panel').find('li.action.active').attr('data-method');window.open(i+a+'/'+n+t,'OpenRat_Help','location=no,menubar=no,scrollbars=yes,toolbar=no,resizable=yes')};function notify(e,i){var t=$('<div class="notice '+e+'"><div class="text">'+i+'</div></div>');$('#noticebar').prepend(t);notifyBrowser(i);$(t).fadeIn().click(function(){$(this).fadeOut('fast',function(){$(this).remove()})})};+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-header.css b/modules/cms-ui/themes/default/style/openrat-header.css @@ -0,0 +1,74 @@ +/* H e a d e r */ +#title { + width: 100%; + height: 27px; + overflow: hidden; + padding: 5px; + margin: 0px; + margin-bottom: 3px; + float: left; + /* Dropdown anzeigen */ + /* Pfeile */ + /* D r o p d o w n - M e n u e s */ + /* Titelleite */ +} +#title div.projects, +#title div.menu, +#title div.title { + float: left; + margin-right: 10px; + margin-left: 0px; +} +#title div.user, +#title div.search, +#title div.history { + float: right; + margin-right: 10px; + margin-left: 10px; +} +#title > div.menu { + overflow: hidden; +} +#title.open div.menu.open div.dropdown, +#title div.panel div:hover > div.dropdown, +#title div.panel-icon:hover > div.dropdown { + display: block; +} +#title div.search input { + margin: 0px; + padding: 0px; +} +#title > div > div.arrow-down { + display: inline; + width: 0; + height: 0; + margin: 6; + padding: 0px; + margin-top: 10px; + font-size: 0; +} +#title div.dropdown { + font-style: normal; + font-weight: normal; + text-decoration: none; +} +#title div.toolbar-icon { + padding: 2px; + margin-left: 5px; + float: left; +} +#title div.headermenu { + margin: 5px; + z-index: 1; + position: relative; + right: 0; + top: 0; +} +#title div.headermenu > div.toolbar-icon { + float: right; +} +#title ul.views > li.action { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + font-size: 13px; +} +/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22openrat-header.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAACA%3BCACE%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3B%3B%3B%3B%3BAAPF%2CMASE%2CIAAG%3BAATL%2CMAUE%2CIAAG%3BAAVL%2CMAWE%2CIAAG%3BCACD%3BCACA%3BCACA%3B%3BAAdJ%2CMAiBE%2CIAAG%3BAAjBL%2CMAkBE%2CIAAG%3BAAlBL%2CMAmBG%2CIAAG%3BCACF%3BCACA%3BCACA%3B%3BAAtBJ%2CMAyBK%2CMAAG%3BCACJ%3B%3BAAIF%2CMAAC%2CKAAM%2CIAAG%2CKAAK%2CKAAM%2CIAAG%3BAA9B1B%2CMA%2BBE%2CIAAG%2CMAAO%2CIAAG%2CMAAS%2CMAAG%3BAA%5C%2FB3B%2CMAgCE%2CIAAG%2CWAAW%2CMAAS%2CMAAG%3BCACxB%3B%3BAAjCJ%2CMAoCG%2CIAAG%2COAAQ%3BCACV%3BCACA%3B%3BAAtCJ%2CMA0CK%2CMAAM%2CMAAG%3BCACV%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAjDJ%2CMAqDE%2CIAAG%3BCACD%3BCACA%3BCACA%3B%3BAAxDJ%2CMA2DE%2CIAAG%3BCACD%3BCACA%3BCACA%3B%3BAA9DJ%2CMAiEE%2CIAAG%3BCACD%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAtEJ%2CMAwEE%2CIAAG%2CWAAc%2CMAAG%3BCAClB%3B%3BAAzEJ%2CMA8EE%2CGAAE%2CMAAS%2CKAAE%3BCACX%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACvG%2CaAAa%2CcAAc%2C4BAD3B%3BCAEA%22%7D */+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-header.less b/modules/cms-ui/themes/default/style/openrat-header.less @@ -0,0 +1,85 @@ +/* H e a d e r */ +#title { + width: 100%; + height: 27px; + overflow: hidden; + padding: 5px; + margin: 0px; + margin-bottom: 3px; + float: left; + + div.projects, + div.menu, + div.title { + float: left; + margin-right: 10px; + margin-left: 0px; + } + + div.user, + div.search, + div.history { + float: right; + margin-right: 10px; + margin-left: 10px; + } + + > div.menu { + overflow: hidden; + } + + /* Dropdown anzeigen */ + &.open div.menu.open div.dropdown, + div.panel div:hover > div.dropdown, + div.panel-icon:hover > div.dropdown { + display: block; + } + + div.search input { + margin: 0px; + padding: 0px; + } + + /* Pfeile */ + > div > div.arrow-down { + display: inline; + width: 0; + height: 0; + margin: 6; + padding: 0px; + margin-top: 10px; + font-size: 0; + } + + /* D r o p d o w n - M e n u e s */ + div.dropdown { + font-style: normal; + font-weight: normal; + text-decoration: none; + } + + div.toolbar-icon { + padding: 2px; + margin-left: 5px; + float: left; + } + + div.headermenu { + margin: 5px; + z-index: 1; + position: relative; + right: 0; + top: 0; + } + div.headermenu > div.toolbar-icon { + float: right; + } + + + /* Titelleite */ + ul.views > li.action /* Tabreiter */ { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", + "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; + font-size: 13px; + } +}+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-header.min.css b/modules/cms-ui/themes/default/style/openrat-header.min.css @@ -0,0 +1 @@ +#title{width: 100%;height: 27px;overflow: hidden;padding: 5px;margin: 0px;margin-bottom: 3px;float: left}#title div.projects,#title div.menu,#title div.title{float: left;margin-right: 10px;margin-left: 0px}#title div.user,#title div.search,#title div.history{float: right;margin-right: 10px;margin-left: 10px}#title > div.menu{overflow: hidden}#title.open div.menu.open div.dropdown,#title div.panel div:hover > div.dropdown,#title div.panel-icon:hover > div.dropdown{display: block}#title div.search input{margin: 0px;padding: 0px}#title > div > div.arrow-down{display: inline;width: 0;height: 0;margin: 6;padding: 0px;margin-top: 10px;font-size: 0}#title div.dropdown{font-style: normal;font-weight: normal;text-decoration: none}#title div.toolbar-icon{padding: 2px;margin-left: 5px;float: left}#title div.headermenu{margin: 5px;z-index: 1;position: relative;right: 0;top: 0}#title div.headermenu > div.toolbar-icon{float: right}#title ul.views > li.action{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-theme.css b/modules/cms-ui/themes/default/style/openrat-theme.css @@ -278,7 +278,7 @@ html.theme-'theme-name' ul#history { html.theme-'theme-name' div#filler { background-color: #000000; } -html.theme-'theme-name' #header > div > div.arrow-down { +html.theme-'theme-name' #title > div > div.arrow-down { display: inline; width: 0; height: 0; @@ -302,7 +302,7 @@ html.theme-'theme-name' div.dropdown { opacity: 0.95; border: 2px solid #ffffff; } -html.theme-'theme-name' #header span.titletext { +html.theme-'theme-name' #title span.titletext { color: #000000; } html.theme-'theme-name' div.toolbar-icon { @@ -409,15 +409,15 @@ html.theme-'theme-name' div.panel ul.views > li.active:hover { background-image: linear-gradient(#808080 0%, #ffffff 15%); color: #000000; } -html.theme-'theme-name' #header { +html.theme-'theme-name' #title { background-color: #ffffff; background-image: linear-gradient(#ffffff, #ffffff); color: #000000; } -html.theme-'theme-name' #header div.toolbar-icon > a { +html.theme-'theme-name' #title div.toolbar-icon > a { color: #000000; } -html.theme-'theme-name' #header, +html.theme-'theme-name' #title, html.theme-'theme-name' ul.views > li.action { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 13px; @@ -442,23 +442,23 @@ html.theme-'theme-name' div.line.filedropzone > div.input { html.theme-'theme-name' body svg.image-icon > path { fill: #000000; } -html.theme-'theme-name' body #header svg { +html.theme-'theme-name' body #title svg { width: 18px; height: 18px; } -html.theme-'theme-name' body #header svg.image-icon > path { +html.theme-'theme-name' body #title svg.image-icon > path { fill: #000000; } -html.theme-'theme-name' body #header .dropdown svg.image-icon > path { +html.theme-'theme-name' body #title .dropdown svg.image-icon > path { fill: #000000; } -html.theme-'theme-name' body #header div.entry svg.image-icon > path { +html.theme-'theme-name' body #title div.entry svg.image-icon > path { fill: #808080; } -html.theme-'theme-name' body #header div.entry.active svg.image-icon > path { +html.theme-'theme-name' body #title div.entry.active svg.image-icon > path { fill: #000000; } -html.theme-'theme-name' body #header div.entry.active:hover svg.image-icon > path { +html.theme-'theme-name' body #title div.entry.active:hover svg.image-icon > path { fill: #000000; } html.theme-'theme-name' div.entry.selected, @@ -475,4 +475,4 @@ html.theme-'theme-name' div.clickable.filtered.active > a { color: #000000; } /* Theme Ende */ -/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22openrat-theme.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3B%3B%3B%3B%3B%3B%3BAAeA%2CIAAI%2COAAO%3BCAcV%2C6BAAA%3BCACA%2C8BAAA%3BCACA%2C6BAAA%3B%3B%3BAAhBD%2CIAAI%2COAAO%2CYAkBV%2CWAAW%2CIAAG%2CMAAM%3BCACnB%2CqBAAA%3BCAVA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYAuBV%2CIAAG%3BCACF%2CyBAAA%3BCACA%2CcAAA%3BCACA%2CqBAAA%3BCAjBA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYA8BV%2CIAAG%2CUAAa%2CMAAG%2CQAAQ%3BCAC1B%2CyBAAA%3B%3BAA%5C%2FBF%2CIAAI%2COAAO%2CYAkCV%2CWAAW%2CIAAG%2CMACb%2CIAAG%3BCACF%2CyBAAA%3B%3BAApCH%2CIAAI%2COAAO%2CYAkCV%2CWAAW%2CIAAG%2CMAKb%2CIAAG%3BCACF%2C0BAAA%3B%3BAAxCH%2CIAAI%2COAAO%2CYA4CV%3BCACC%2CyBAAA%3B%3BAA7CF%2CIAAI%2COAAO%2CYAgDV%2CIAAG%3BAAhDJ%2CIAAI%2COAAO%2CYAgDO%2CIAAG%2CWAAY%3BAAhDjC%2CIAAI%2COAAO%2CYAgD0B%2CIAAG%2CMAAS%2CMAAG%3BCAClD%2CcAAA%3B%3BAAjDF%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAEF%2CIAAG%3BCACF%2CyBAAA%3BCACA%3BCACA%3BCAtDD%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCAGA%2CuCAAA%3BCACA%2CoCAAA%3BCACA%2C%2BBAAA%3BCAkDC%3B%3BAA7DH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAYF%2CIAAG%2COAAO%3BCACT%3B%3BAAjEH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAgBF%2CIAAG%2COAAO%3BCACT%3B%3BAArEH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAoBF%2CIAAG%2COAAO%3BCACT%3B%3BAAzEH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAwBF%2CIAAG%2COAAO%3BCACT%2CyBAAA%3B%3BAA7EH%2CIAAI%2COAAO%2CYAiFV%2CGAAE%2CQAAW%3BAAjFd%2CIAAI%2COAAO%2CYAiFQ%2CIAAG%2CQAAS%2CEAAC%3BAAjFhC%2CIAAI%2COAAO%2CYAiF%2BB%2CIAAG%2CQAAS%2CEAAC%3BAAjFvD%2CIAAI%2COAAO%2CYAiFoD%2CIAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAjF5F%2CIAAI%2COAAO%2CYAiF0F%2CIAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCAC%5C%2FH%2CqBAAA%3BCA%5C%2FEA%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCA8EA%2CyBAAA%3BCACA%2CYAAY%2C2CAAZ%3BCACA%2CYAAY%2CgDAAgD%2CeAAmC%2CYAA%5C%2FF%3BCACA%2CcAAA%3B%3BAAvFF%2CIAAI%2COAAO%2CYA0FV%2CGAAE%2CQAAW%2CKAAE%3BCACd%2CyBAAA%3BCACA%2CcAAA%3B%3BAA5FF%2CIAAI%2COAAO%2CYA%2BFV%2CEAAC%2COAAO%3BAA%5C%2FFT%2CIAAI%2COAAO%2CYA%2BFO%2CEAAC%2CKAAK%3BAA%5C%2FFxB%2CIAAI%2COAAO%2CYA%2BFsB%2CIAAG%2CSAAS%3BCAC3C%2CqBAAA%3B%3BAAhGF%2CIAAI%2COAAO%2CYAmGV%2CEAAC%2COAAO%3BAAnGT%2CIAAI%2COAAO%2CYAmGQ%2CEAAC%2CKAAK%3BAAnGzB%2CIAAI%2COAAO%2CYAmGwB%2CIAAG%2CSAAS%3BAAnG%5C%2FC%2CIAAI%2COAAO%2CYAmG8C%2CMAAK%2CGAAG%3BCAC%5C%2FD%3B%3BAApGF%2CIAAI%2COAAO%2CYAuGV%3BCACC%2CcAAA%3B%3BAAxGF%2CIAAI%2COAAO%2CYA2GV%2CIAAG%2CSAAY%2CMAAG%3BCACjB%2CyBAAA%3B%3BAA5GF%2CIAAI%2COAAO%2CYA%2BGV%2CGAAE%3BCACD%3BCACA%2C6BAAA%3BCACA%2CgCAAA%3B%3BAAlHF%2CIAAI%2COAAO%2CYAqHV%2CSAAS%2CEAAC%3BAArHX%2CIAAI%2COAAO%2CYAqHQ%2CSAAS%2CEAAC%3BAArH7B%2CIAAI%2COAAO%2CYAqH6B%2CSAAS%2CEAAC%3BAArHlD%2CIAAI%2COAAO%2CYAqHiD%2CSAAS%2CEAAC%3BCACpE%3B%3BAAtHF%2CIAAI%2COAAO%2CYAyHV%2CKAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BAAzHjC%2CIAAI%2COAAO%2CYAyHkC%2CKAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BCAC3E%2CcAAA%3B%3BAA1HF%2CIAAI%2COAAO%2CYA6HV%2CIAAG%3BAA7HJ%2CIAAI%2COAAO%2CYA6HQ%2CIAAG%3BCACpB%3BCACA%3B%3BAA%5C%2FHF%2CIAAI%2COAAO%2CYAkIV%3BCACC%2CcAAA%3B%3BAAnIF%2CIAAI%2COAAO%2CYAsIV%2CKAAI%2CKAAM%2CMAAK%2CKAAM%2CGAAE%2COAAQ%2CGAAE%3BCAChC%2C6BAAA%3B%3BAAvIF%2CIAAI%2COAAO%2CYA0IV%2CGAAE%3BCACD%2C0BAAA%3BCACA%2C2BAAA%3BCACA%3BCACA%3BCACA%3B%3BAA%5C%2FIF%2CIAAI%2COAAO%2CYAmJV%2CSAAQ%3BCACP%2CyBAAA%3B%3BAApJF%2CIAAI%2COAAO%2CYAuJV%2CGAAE%3BCACD%3BCACA%3BCACA%3B%3BAA1JF%2CIAAI%2COAAO%2CYA6JV%2CMAAK%3BCACJ%3BCACA%2CiBAAA%3BCACA%3B%3BAAhKF%2CIAAI%2COAAO%2CYAmKV%2CMAAK%2COAAQ%3BCACZ%3BCACA%3BCACA%2CgCAAA%3BCACA%3BCACA%3B%3BAAxKF%2CIAAI%2COAAO%2CYA2KV%2CMAAK%2CSAAU%3BCACd%2CkBAAA%3B%3BAA5KF%2CIAAI%2COAAO%2CYA%2BKV%2CKAAI%3BCACH%3BCACA%2CyBAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CuCAAA%3BCACA%2CoCAAA%3BCACA%2C%2BBAAA%3B%3BAA5LF%2CIAAI%2COAAO%2CYA%2BLV%2CGAAE%3BAA%5C%2FLH%2CIAAI%2COAAO%2CYA%2BLA%2CGAAE%2CKAAM%3BCACjB%3BCACA%2C4EAAA%3BCACA%3BCACA%3B%3BAAnMF%2CIAAI%2COAAO%2CYAuMV%2CGAAE%2CKAAM%3BCACP%3BCACA%2CcAAA%3BCACA%3BCACA%2C6EAAA%3BCACA%3BCACA%3BCACA%3B%3BAA9MF%2CIAAI%2COAAO%2CYAiNV%2CGAAE%2CKAAM%2CGAAE%3BAAjNX%2CIAAI%2COAAO%2CYAiNQ%2CGAAE%2CKAAM%2CGAAE%3BCAC3B%2CiFAAA%3B%3BAAlNF%2CIAAI%2COAAO%2CYAqNV%2CIAAG%2CKAAK%3BCACP%2C8EAAA%3B%3BAAtNF%2CIAAI%2COAAO%2CYAyNV%2CIAAG%2CKAAK%3BCACP%2C6EAAA%3B%3BAA1NF%2CIAAI%2COAAO%2CYA6NV%2CKAAO%3BCACN%3B%3BAA9NF%2CIAAI%2COAAO%2CYAiOV%2CIAAG%2CUAAW%3BCACb%3B%3BAAlOF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMACH%2CMAAK%3BAAvON%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMACc%2CMAAK%3BCACrB%2CyBAAA%3B%3BAAGD%2CIA3OG%2COAAO%2CYAsOV%2CIAAG%2CMAKC%2CMAAG%3BCACN%2CgCAAA%3B%3BAA5OF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMASH%2CGAAE%2CMAAO%3BCACR%2C%2BBAAA%3BCACA%2C8BAAA%3BCACA%2C%2BBAAA%3BCACA%2CgCAAA%3B%3BAAnPF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMAgBH%2CIAAG%2CQAAS%3BCACX%2CqBAAA%3B%3BAAGD%2CIA1PG%2COAAO%2CYAsOV%2CIAAG%2CMAoBC%2CMAAG%3BCACN%2CyBAAA%3B%3BAAGD%2CIA9PG%2COAAO%2CYAsOV%2CIAAG%2CMAwBC%2CMAAG%3BCACN%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3B%3BAAhQF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMA6BH%2CGAAE%2CMAAO%2CGAAE%3BCACV%2CyBAAA%3B%3BAApQF%2CIAAI%2COAAO%2CYAwQX%2CMAAM%2CGAAE%2CSAAY%3BCAClB%2CgCAAA%3B%3BAAzQF%2CIAAI%2COAAO%2CYA4QV%2CMAAM%2CGAAE%2CKAAQ%3BCACf%2CgCAAA%3B%3BAA7QF%2CIAAI%2COAAO%2CYAgRV%2CMAAQ%2CKAAE%2CKAAK%2CUAAU%3BCACxB%2CyBAAA%3B%3BAAjRF%2CIAAI%2COAAO%2CYAoRV%2CMAAM%2CGAAE%2CKAAK%3BAApRd%2CIAAI%2COAAO%2CYAoRY%2CIAAG%2CQAAS%2CGAAG%2CIAAG%2CMAAM%3BCAC7C%2CyBAAA%3B%3BAArRF%2CIAAI%2COAAO%2CYAwRV%2CIAAG%2CMAAO%2CIAAG%2COAAQ%3BAAxRtB%2CIAAI%2COAAO%2CYAwRiB%2CIAAG%3BCAC7B%2CyBAAA%3B%3BAAzRF%2CIAAI%2COAAO%2CYA4RV%2CWAAW%2CIAAG%2CMAAM%3BCACnB%2CyBAAA%3B%3BAA7RF%2CIAAI%2COAAO%2CYAgSV%2CWAAW%2CIAAG%3BCACb%2CyBAAA%3B%3BAAjSF%2CIAAI%2COAAO%2CYAoSV%2CMAAK%3BCACJ%2CyBAAA%3BCACA%2CcAAA%3BCA7RA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYA0SV%2CGAAE%2CQAAW%3BCACZ%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAA7SF%2CIAAI%2COAAO%2CYAgTV%2CGAAE%2CQAAW%2CKAAE%3BCACd%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAAnTF%2CIAAI%2COAAO%2CYAsTV%2CGAAE%3BCACD%3B%3BAAvTF%2CIAAI%2COAAO%2CYA0TV%2CIAAG%3BCACF%2CyBAAA%3B%3BAA3TF%2CIAAI%2COAAO%2CYA%2BTV%2CQAAU%2CMAAM%2CMAAG%3BCAClB%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%2C8BAAA%3BCACA%2C6BAAA%3BCACA%2CgCAAA%3BCACA%3BCACA%3B%3BAA1UF%2CIAAI%2COAAO%2CYA6UV%2CIAAG%3BCA1UF%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCAGA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3BCAqUA%3BCACA%2CyBAAA%3B%3BAAjVF%2CIAAI%2COAAO%2CYAoVV%2CQAAQ%2CKAAI%3BCACX%2CcAAA%3B%3BAArVF%2CIAAI%2COAAO%2CYAwVV%2CIAAG%3BCACF%2CyBAAA%3BCAtVA%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3B%3BAAsVA%2CIA5VE%2COAAO%2CYAwVV%2CIAAG%2CaAID%3BCACA%3B%3BAAGD%2CIAhWE%2COAAO%2CYAwVV%2CIAAG%2CaAQD%3BCACA%2CyBAAA%3B%3BAAjWH%2CIAAI%2COAAO%2CYAsWV%2CMAAM%2CIAAG%3BCACR%2CcAAA%3B%3BAAvWF%2CIAAI%2COAAO%2CYA0WV%2CIAAG%3BCACF%2CyBAAA%3BCACA%2CyBAAA%3BCAzWA%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCAwWA%2C6CAAA%3BCACA%2C0CAAA%3BCACA%2CqCAAA%3B%3BAAhXF%2CIAAI%2COAAO%2CYA0WV%2CIAAG%2CYAQF%2CGAAE%3BAAlXJ%2CIAAI%2COAAO%2CYA0WV%2CIAAG%2CYAQQ%2CGAAE%2CKAAM%2CGAAE%3BAAlXtB%2CIAAI%2COAAO%2CYA0WV%2CIAAG%2CYAQ0B%2CGAAE%2CKAAM%2CGAAE%3BCACrC%2CyBAAA%3B%3BAAnXH%2CIAAI%2COAAO%2CYAwXV%2CIAAG%2CYAAe%3BAAxXnB%2CIAAI%2COAAO%2CYAwXgB%2CIAAG%2CYAAe%3BAAxX7C%2CIAAI%2COAAO%2CYAwX6C%2CIAAG%2CYAAe%3BCACxE%3BCACA%2CgCAAA%3BCACA%2CyBAAA%3B%3BAA3XF%2CIAAI%2COAAO%2CYA8XV%2CMAAK%3BAA9XN%2CIAAI%2COAAO%2CYA8XI%2CSAAQ%3BAA9XvB%2CIAAI%2COAAO%2CYA8XqB%2COAAM%3BCACpC%3BCACA%2CgCAAA%3B%3BAAhYF%2CIAAI%2COAAO%2CYAmYV%2CMAAK%3BAAnYN%2CIAAI%2COAAO%2CYAmYI%2CSAAQ%3BAAnYvB%2CIAAI%2COAAO%2CYAmYqB%2COAAM%3BCACpC%2CiCAAA%3B%3BAApYF%2CIAAI%2COAAO%2CYAuYV%2CIAAG%2CYAAY%3BCACd%2CiCAAA%3B%3BAAxYF%2CIAAI%2COAAO%2CYA2YV%2CMAAK%3BCACJ%2CcAAA%3B%3BAA5YF%2CIAAI%2COAAO%2CYA%2BYV%2CSAAW%2CMAAI%2CMAAK%3BAA%5C%2FYrB%2CIAAI%2COAAO%2CYA%2BYkB%2CSAAW%2CMAAI%2CKAAI%3BCAC9C%3B%3BAAhZF%2CIAAI%2COAAO%2CYAmZV%3BCACC%2CqBAAA%3B%3BAApZF%2CIAAI%2COAAO%2CYAuZV%2CGAAE%2CKAAQ%2CKAAE%3BCACX%2CyBAAA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%3BCACA%3B%3BAAQA%2CIApaE%2COAAO%2CYA%2BZV%2CGAAE%2CKAKG%2CKAAE%3BCACL%3B%3BAAGD%2CIAxaE%2COAAO%2CYA%2BZV%2CGAAE%2CKASG%2CKAAE%3BCACL%3B%3BAAGD%2CIA5aE%2COAAO%2CYA%2BZV%2CGAAE%2CKAaG%2CKAAE%3BCACL%3B%3BAA7aH%2CIAAI%2COAAO%2CYAibV%2CGAAE%3BCACD%2C%2BBAAA%3BCACA%2C%2BBAAA%3B%3BAACD%2CIApbG%2COAAO%2CYAibV%2CGAAE%2COAGE%3BCACH%2C6BAAA%3B%3BAAGD%2CIAxbG%2COAAO%2CYAibV%2CGAAE%2COAOE%3BCACH%2CgCAAA%3B%3BAAzbF%2CIAAI%2COAAO%2CYA8bV%2CIAAG%2CQAAS%2CEAAC%3BAA9bd%2CIAAI%2COAAO%2CYA8ba%2CIAAG%2CQAAS%2CEAAC%3BCArbnC%2CuCAAA%3BCACA%2CoCAAA%3BCACA%2C%2BBAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYAkcV%3BCACC%2CyBAAA%3B%3BAAncF%2CIAAI%2COAAO%2CYAscV%2CIAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%3BAAtcxB%2CIAAI%2COAAO%2CYAucV%2CIAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%2COAAO%3BCAC7B%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3BCACA%2CcAAA%3B%3BAA1cF%2CIAAI%2COAAO%2CYA6cV%3BCACC%2CyBAAA%3BCACA%2CkBAAkB%2CiCAAlB%3BCACA%2CcAAA%3B%3BAAhdF%2CIAAI%2COAAO%2CYA6cV%2CQAKC%2CIAAG%2CaAAgB%3BCAClB%2CcAAA%3B%3BAAndH%2CIAAI%2COAAO%2CYAwdV%3BAAxdD%2CIAAI%2COAAO%2CYAwdA%2CGAAE%2CMAAS%2CKAAE%3BCACtB%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAEA%3B%3BAA3dF%2CIAAI%2COAAO%2CYA%2BdV%2CGAAE%2CKAAM%2CGAAE%3BAA%5C%2FdX%2CIAAI%2COAAO%2CYA%2BdQ%2CGAAE%2CKAAM%2CGAAE%3BCAC3B%2CyBAAA%3B%3BAAheF%2CIAAI%2COAAO%2CYAmeV%2CIAAG%2CQAAS%3BAAneb%2CIAAI%2COAAO%2CYAmeQ%2CIAAG%3BCACpB%2CyBAAA%3BCACA%2CcAAA%3B%3BAAreF%2CIAAI%2COAAO%2CYAweV%2CIAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAxe9B%2CIAAI%2COAAO%2CYAwe4B%2CIAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCACjE%3B%3BAAzeF%2CIAAI%2COAAO%2CYA4eV%2CIAAG%2CKAAK%2CaAAgB%2CMAAG%3BCAC1B%2CyBAAA%3BCACA%2C0BAAA%3B%3BAA9eF%2CIAAI%2COAAO%2CYAkfV%2CKACC%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAApfH%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2CQAEC%3BCACC%3BCACA%3B%3BAA3fJ%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2CQAMC%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAA9fJ%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2CQASC%2CUACC%2CIAAG%2CWAAc%3BCACjB%2CaAAA%3B%3BAAlgBJ%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2CQAeC%2CIAAG%2CMAEF%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAAzgBL%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2CQAsBC%2CIAAG%2CMAAM%2COAER%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAAhhBL%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2CQA6BC%2CIAAG%2CMAAM%2COAAO%2CMAEf%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAAvhBL%2CIAAI%2COAAO%2CYA%2BhBV%2CIAAG%2CMAAM%3BAA%5C%2FhBV%2CIAAI%2COAAO%2CYA%2BhBW%2CIAAG%2CSAAY%2CMAAG%2CMAAM%2COAAO%3BAA%5C%2FhBrD%2CIAAI%2COAAO%2CYA%2BhBmD%2CIAAG%2CSAAY%2CMAAG%2CMAAM%2COAAO%2CMAAS%3BAA%5C%2FhBtG%2CIAAI%2COAAO%2CYA%2BhB%2BF%2CEAAC%3BCACzG%2CyBAAA%3BCACA%2CcAAA%3B%3BAAjiBF%2CIAAI%2COAAO%2CYAoiBV%2CIAAG%2CUAAU%2CSAAY%3BCACxB%2CcAAA%3B%3BAAriBF%2CIAAI%2COAAO%2CYAuiBV%2CIAAG%2CUAAU%2CSAAS%2COAAU%3BCAC%5C%2FB%2CcAAA%22%7D */- \ No newline at end of file +/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22openrat-theme.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3B%3B%3B%3B%3B%3B%3BAAeA%2CIAAI%2COAAO%3BCAcV%2C6BAAA%3BCACA%2C8BAAA%3BCACA%2C6BAAA%3B%3B%3BAAhBD%2CIAAI%2COAAO%2CYAkBV%2CWAAW%2CIAAG%2CMAAM%3BCACnB%2CqBAAA%3BCAVA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYAuBV%2CIAAG%3BCACF%2CyBAAA%3BCACA%2CcAAA%3BCACA%2CqBAAA%3BCAjBA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYA8BV%2CIAAG%2CUAAa%2CMAAG%2CQAAQ%3BCAC1B%2CyBAAA%3B%3BAA%5C%2FBF%2CIAAI%2COAAO%2CYAkCV%2CWAAW%2CIAAG%2CMACb%2CIAAG%3BCACF%2CyBAAA%3B%3BAApCH%2CIAAI%2COAAO%2CYAkCV%2CWAAW%2CIAAG%2CMAKb%2CIAAG%3BCACF%2C0BAAA%3B%3BAAxCH%2CIAAI%2COAAO%2CYA4CV%3BCACC%2CyBAAA%3B%3BAA7CF%2CIAAI%2COAAO%2CYAgDV%2CIAAG%3BAAhDJ%2CIAAI%2COAAO%2CYAgDO%2CIAAG%2CWAAY%3BAAhDjC%2CIAAI%2COAAO%2CYAgD0B%2CIAAG%2CMAAS%2CMAAG%3BCAClD%2CcAAA%3B%3BAAjDF%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAEF%2CIAAG%3BCACF%2CyBAAA%3BCACA%3BCACA%3BCAtDD%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCAGA%2CuCAAA%3BCACA%2CoCAAA%3BCACA%2C%2BBAAA%3BCAkDC%3B%3BAA7DH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAYF%2CIAAG%2COAAO%3BCACT%3B%3BAAjEH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAgBF%2CIAAG%2COAAO%3BCACT%3B%3BAArEH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAoBF%2CIAAG%2COAAO%3BCACT%3B%3BAAzEH%2CIAAI%2COAAO%2CYAoDV%2CIAAG%2CUAwBF%2CIAAG%2COAAO%3BCACT%2CyBAAA%3B%3BAA7EH%2CIAAI%2COAAO%2CYAiFV%2CGAAE%2CQAAW%3BAAjFd%2CIAAI%2COAAO%2CYAiFQ%2CIAAG%2CQAAS%2CEAAC%3BAAjFhC%2CIAAI%2COAAO%2CYAiF%2BB%2CIAAG%2CQAAS%2CEAAC%3BAAjFvD%2CIAAI%2COAAO%2CYAiFoD%2CIAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAjF5F%2CIAAI%2COAAO%2CYAiF0F%2CIAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCAC%5C%2FH%2CqBAAA%3BCA%5C%2FEA%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCA8EA%2CyBAAA%3BCACA%2CYAAY%2C2CAAZ%3BCACA%2CYAAY%2CgDAAgD%2CeAAmC%2CYAA%5C%2FF%3BCACA%2CcAAA%3B%3BAAvFF%2CIAAI%2COAAO%2CYA0FV%2CGAAE%2CQAAW%2CKAAE%3BCACd%2CyBAAA%3BCACA%2CcAAA%3B%3BAA5FF%2CIAAI%2COAAO%2CYA%2BFV%2CEAAC%2COAAO%3BAA%5C%2FFT%2CIAAI%2COAAO%2CYA%2BFO%2CEAAC%2CKAAK%3BAA%5C%2FFxB%2CIAAI%2COAAO%2CYA%2BFsB%2CIAAG%2CSAAS%3BCAC3C%2CqBAAA%3B%3BAAhGF%2CIAAI%2COAAO%2CYAmGV%2CEAAC%2COAAO%3BAAnGT%2CIAAI%2COAAO%2CYAmGQ%2CEAAC%2CKAAK%3BAAnGzB%2CIAAI%2COAAO%2CYAmGwB%2CIAAG%2CSAAS%3BAAnG%5C%2FC%2CIAAI%2COAAO%2CYAmG8C%2CMAAK%2CGAAG%3BCAC%5C%2FD%3B%3BAApGF%2CIAAI%2COAAO%2CYAuGV%3BCACC%2CcAAA%3B%3BAAxGF%2CIAAI%2COAAO%2CYA2GV%2CIAAG%2CSAAY%2CMAAG%3BCACjB%2CyBAAA%3B%3BAA5GF%2CIAAI%2COAAO%2CYA%2BGV%2CGAAE%3BCACD%3BCACA%2C6BAAA%3BCACA%2CgCAAA%3B%3BAAlHF%2CIAAI%2COAAO%2CYAqHV%2CSAAS%2CEAAC%3BAArHX%2CIAAI%2COAAO%2CYAqHQ%2CSAAS%2CEAAC%3BAArH7B%2CIAAI%2COAAO%2CYAqH6B%2CSAAS%2CEAAC%3BAArHlD%2CIAAI%2COAAO%2CYAqHiD%2CSAAS%2CEAAC%3BCACpE%3B%3BAAtHF%2CIAAI%2COAAO%2CYAyHV%2CKAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BAAzHjC%2CIAAI%2COAAO%2CYAyHkC%2CKAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BCAC3E%2CcAAA%3B%3BAA1HF%2CIAAI%2COAAO%2CYA6HV%2CIAAG%3BAA7HJ%2CIAAI%2COAAO%2CYA6HQ%2CIAAG%3BCACpB%3BCACA%3B%3BAA%5C%2FHF%2CIAAI%2COAAO%2CYAkIV%3BCACC%2CcAAA%3B%3BAAnIF%2CIAAI%2COAAO%2CYAsIV%2CKAAI%2CKAAM%2CMAAK%2CKAAM%2CGAAE%2COAAQ%2CGAAE%3BCAChC%2C6BAAA%3B%3BAAvIF%2CIAAI%2COAAO%2CYA0IV%2CGAAE%3BCACD%2C0BAAA%3BCACA%2C2BAAA%3BCACA%3BCACA%3BCACA%3B%3BAA%5C%2FIF%2CIAAI%2COAAO%2CYAmJV%2CSAAQ%3BCACP%2CyBAAA%3B%3BAApJF%2CIAAI%2COAAO%2CYAuJV%2CGAAE%3BCACD%3BCACA%3BCACA%3B%3BAA1JF%2CIAAI%2COAAO%2CYA6JV%2CMAAK%3BCACJ%3BCACA%2CiBAAA%3BCACA%3B%3BAAhKF%2CIAAI%2COAAO%2CYAmKV%2CMAAK%2COAAQ%3BCACZ%3BCACA%3BCACA%2CgCAAA%3BCACA%3BCACA%3B%3BAAxKF%2CIAAI%2COAAO%2CYA2KV%2CMAAK%2CSAAU%3BCACd%2CkBAAA%3B%3BAA5KF%2CIAAI%2COAAO%2CYA%2BKV%2CKAAI%3BCACH%3BCACA%2CyBAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CuCAAA%3BCACA%2CoCAAA%3BCACA%2C%2BBAAA%3B%3BAA5LF%2CIAAI%2COAAO%2CYA%2BLV%2CGAAE%3BAA%5C%2FLH%2CIAAI%2COAAO%2CYA%2BLA%2CGAAE%2CKAAM%3BCACjB%3BCACA%2C4EAAA%3BCACA%3BCACA%3B%3BAAnMF%2CIAAI%2COAAO%2CYAuMV%2CGAAE%2CKAAM%3BCACP%3BCACA%2CcAAA%3BCACA%3BCACA%2C6EAAA%3BCACA%3BCACA%3BCACA%3B%3BAA9MF%2CIAAI%2COAAO%2CYAiNV%2CGAAE%2CKAAM%2CGAAE%3BAAjNX%2CIAAI%2COAAO%2CYAiNQ%2CGAAE%2CKAAM%2CGAAE%3BCAC3B%2CiFAAA%3B%3BAAlNF%2CIAAI%2COAAO%2CYAqNV%2CIAAG%2CKAAK%3BCACP%2C8EAAA%3B%3BAAtNF%2CIAAI%2COAAO%2CYAyNV%2CIAAG%2CKAAK%3BCACP%2C6EAAA%3B%3BAA1NF%2CIAAI%2COAAO%2CYA6NV%2CKAAO%3BCACN%3B%3BAA9NF%2CIAAI%2COAAO%2CYAiOV%2CIAAG%2CUAAW%3BCACb%3B%3BAAlOF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMACH%2CMAAK%3BAAvON%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMACc%2CMAAK%3BCACrB%2CyBAAA%3B%3BAAGD%2CIA3OG%2COAAO%2CYAsOV%2CIAAG%2CMAKC%2CMAAG%3BCACN%2CgCAAA%3B%3BAA5OF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMASH%2CGAAE%2CMAAO%3BCACR%2C%2BBAAA%3BCACA%2C8BAAA%3BCACA%2C%2BBAAA%3BCACA%2CgCAAA%3B%3BAAnPF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMAgBH%2CIAAG%2CQAAS%3BCACX%2CqBAAA%3B%3BAAGD%2CIA1PG%2COAAO%2CYAsOV%2CIAAG%2CMAoBC%2CMAAG%3BCACN%2CyBAAA%3B%3BAAGD%2CIA9PG%2COAAO%2CYAsOV%2CIAAG%2CMAwBC%2CMAAG%3BCACN%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3B%3BAAhQF%2CIAAI%2COAAO%2CYAsOV%2CIAAG%2CMA6BH%2CGAAE%2CMAAO%2CGAAE%3BCACV%2CyBAAA%3B%3BAApQF%2CIAAI%2COAAO%2CYAwQX%2CMAAM%2CGAAE%2CSAAY%3BCAClB%2CgCAAA%3B%3BAAzQF%2CIAAI%2COAAO%2CYA4QV%2CMAAM%2CGAAE%2CKAAQ%3BCACf%2CgCAAA%3B%3BAA7QF%2CIAAI%2COAAO%2CYAgRV%2CMAAQ%2CKAAE%2CKAAK%2CUAAU%3BCACxB%2CyBAAA%3B%3BAAjRF%2CIAAI%2COAAO%2CYAoRV%2CMAAM%2CGAAE%2CKAAK%3BAApRd%2CIAAI%2COAAO%2CYAoRY%2CIAAG%2CQAAS%2CGAAG%2CIAAG%2CMAAM%3BCAC7C%2CyBAAA%3B%3BAArRF%2CIAAI%2COAAO%2CYAwRV%2CIAAG%2CMAAO%2CIAAG%2COAAQ%3BAAxRtB%2CIAAI%2COAAO%2CYAwRiB%2CIAAG%3BCAC7B%2CyBAAA%3B%3BAAzRF%2CIAAI%2COAAO%2CYA4RV%2CWAAW%2CIAAG%2CMAAM%3BCACnB%2CyBAAA%3B%3BAA7RF%2CIAAI%2COAAO%2CYAgSV%2CWAAW%2CIAAG%3BCACb%2CyBAAA%3B%3BAAjSF%2CIAAI%2COAAO%2CYAoSV%2CMAAK%3BCACJ%2CyBAAA%3BCACA%2CcAAA%3BCA7RA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYA0SV%2CGAAE%2CQAAW%3BCACZ%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAA7SF%2CIAAI%2COAAO%2CYAgTV%2CGAAE%2CQAAW%2CKAAE%3BCACd%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAAnTF%2CIAAI%2COAAO%2CYAsTV%2CGAAE%3BCACD%3B%3BAAvTF%2CIAAI%2COAAO%2CYA0TV%2CIAAG%3BCACF%2CyBAAA%3B%3BAA3TF%2CIAAI%2COAAO%2CYA%2BTV%2COAAS%2CMAAM%2CMAAG%3BCACjB%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%2C8BAAA%3BCACA%2C6BAAA%3BCACA%2CgCAAA%3BCACA%3BCACA%3B%3BAA1UF%2CIAAI%2COAAO%2CYA6UV%2CIAAG%3BCA1UF%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCAGA%2CwCAAA%3BCACA%2CqCAAA%3BCACA%2CgCAAA%3BCAqUA%3BCACA%2CyBAAA%3B%3BAAjVF%2CIAAI%2COAAO%2CYAoVV%2COAAO%2CKAAI%3BCACV%2CcAAA%3B%3BAArVF%2CIAAI%2COAAO%2CYAwVV%2CIAAG%3BCACF%2CyBAAA%3BCAtVA%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3B%3BAAsVA%2CIA5VE%2COAAO%2CYAwVV%2CIAAG%2CaAID%3BCACA%3B%3BAAGD%2CIAhWE%2COAAO%2CYAwVV%2CIAAG%2CaAQD%3BCACA%2CyBAAA%3B%3BAAjWH%2CIAAI%2COAAO%2CYAsWV%2CMAAM%2CIAAG%3BCACR%2CcAAA%3B%3BAAvWF%2CIAAI%2COAAO%2CYA0WV%2CIAAG%3BCACF%2CyBAAA%3BCACA%2CyBAAA%3BCAzWA%2CkBAAA%3BCACA%2CuBAAA%3BCACA%2C0BAAA%3BCACA%2CyBAAA%3BCAwWA%2C6CAAA%3BCACA%2C0CAAA%3BCACA%2CqCAAA%3B%3BAAhXF%2CIAAI%2COAAO%2CYA0WV%2CIAAG%2CYAQF%2CGAAE%3BAAlXJ%2CIAAI%2COAAO%2CYA0WV%2CIAAG%2CYAQQ%2CGAAE%2CKAAM%2CGAAE%3BAAlXtB%2CIAAI%2COAAO%2CYA0WV%2CIAAG%2CYAQ0B%2CGAAE%2CKAAM%2CGAAE%3BCACrC%2CyBAAA%3B%3BAAnXH%2CIAAI%2COAAO%2CYAwXV%2CIAAG%2CYAAe%3BAAxXnB%2CIAAI%2COAAO%2CYAwXgB%2CIAAG%2CYAAe%3BAAxX7C%2CIAAI%2COAAO%2CYAwX6C%2CIAAG%2CYAAe%3BCACxE%3BCACA%2CgCAAA%3BCACA%2CyBAAA%3B%3BAA3XF%2CIAAI%2COAAO%2CYA8XV%2CMAAK%3BAA9XN%2CIAAI%2COAAO%2CYA8XI%2CSAAQ%3BAA9XvB%2CIAAI%2COAAO%2CYA8XqB%2COAAM%3BCACpC%3BCACA%2CgCAAA%3B%3BAAhYF%2CIAAI%2COAAO%2CYAmYV%2CMAAK%3BAAnYN%2CIAAI%2COAAO%2CYAmYI%2CSAAQ%3BAAnYvB%2CIAAI%2COAAO%2CYAmYqB%2COAAM%3BCACpC%2CiCAAA%3B%3BAApYF%2CIAAI%2COAAO%2CYAuYV%2CIAAG%2CYAAY%3BCACd%2CiCAAA%3B%3BAAxYF%2CIAAI%2COAAO%2CYA2YV%2CMAAK%3BCACJ%2CcAAA%3B%3BAA5YF%2CIAAI%2COAAO%2CYA%2BYV%2CSAAW%2CMAAI%2CMAAK%3BAA%5C%2FYrB%2CIAAI%2COAAO%2CYA%2BYkB%2CSAAW%2CMAAI%2CKAAI%3BCAC9C%3B%3BAAhZF%2CIAAI%2COAAO%2CYAmZV%3BCACC%2CqBAAA%3B%3BAApZF%2CIAAI%2COAAO%2CYAuZV%2CGAAE%2CKAAQ%2CKAAE%3BCACX%2CyBAAA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%3BCACA%3B%3BAAQA%2CIApaE%2COAAO%2CYA%2BZV%2CGAAE%2CKAKG%2CKAAE%3BCACL%3B%3BAAGD%2CIAxaE%2COAAO%2CYA%2BZV%2CGAAE%2CKASG%2CKAAE%3BCACL%3B%3BAAGD%2CIA5aE%2COAAO%2CYA%2BZV%2CGAAE%2CKAaG%2CKAAE%3BCACL%3B%3BAA7aH%2CIAAI%2COAAO%2CYAibV%2CGAAE%3BCACD%2C%2BBAAA%3BCACA%2C%2BBAAA%3B%3BAACD%2CIApbG%2COAAO%2CYAibV%2CGAAE%2COAGE%3BCACH%2C6BAAA%3B%3BAAGD%2CIAxbG%2COAAO%2CYAibV%2CGAAE%2COAOE%3BCACH%2CgCAAA%3B%3BAAzbF%2CIAAI%2COAAO%2CYA8bV%2CIAAG%2CQAAS%2CEAAC%3BAA9bd%2CIAAI%2COAAO%2CYA8ba%2CIAAG%2CQAAS%2CEAAC%3BCArbnC%2CuCAAA%3BCACA%2CoCAAA%3BCACA%2C%2BBAAA%3B%3BAAXF%2CIAAI%2COAAO%2CYAkcV%3BCACC%2CyBAAA%3B%3BAAncF%2CIAAI%2COAAO%2CYAscV%2CIAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%3BAAtcxB%2CIAAI%2COAAO%2CYAucV%2CIAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%2COAAO%3BCAC7B%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3BCACA%2CcAAA%3B%3BAA1cF%2CIAAI%2COAAO%2CYA6cV%3BCACC%2CyBAAA%3BCACA%2CkBAAkB%2CiCAAlB%3BCACA%2CcAAA%3B%3BAAhdF%2CIAAI%2COAAO%2CYA6cV%2COAKC%2CIAAG%2CaAAgB%3BCAClB%2CcAAA%3B%3BAAndH%2CIAAI%2COAAO%2CYAwdV%3BAAxdD%2CIAAI%2COAAO%2CYAwdD%2CGAAE%2CMAAS%2CKAAE%3BCACrB%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAEA%3B%3BAA3dF%2CIAAI%2COAAO%2CYA%2BdV%2CGAAE%2CKAAM%2CGAAE%3BAA%5C%2FdX%2CIAAI%2COAAO%2CYA%2BdQ%2CGAAE%2CKAAM%2CGAAE%3BCAC3B%2CyBAAA%3B%3BAAheF%2CIAAI%2COAAO%2CYAmeV%2CIAAG%2CQAAS%3BAAneb%2CIAAI%2COAAO%2CYAmeQ%2CIAAG%3BCACpB%2CyBAAA%3BCACA%2CcAAA%3B%3BAAreF%2CIAAI%2COAAO%2CYAweV%2CIAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAxe9B%2CIAAI%2COAAO%2CYAwe4B%2CIAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCACjE%3B%3BAAzeF%2CIAAI%2COAAO%2CYA4eV%2CIAAG%2CKAAK%2CaAAgB%2CMAAG%3BCAC1B%2CyBAAA%3BCACA%2C0BAAA%3B%3BAA9eF%2CIAAI%2COAAO%2CYAkfV%2CKACC%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAApfH%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2COAEC%3BCACC%3BCACA%3B%3BAA3fJ%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2COAMC%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAA9fJ%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2COASC%2CUACC%2CIAAG%2CWAAc%3BCACjB%2CaAAA%3B%3BAAlgBJ%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2COAeC%2CIAAG%2CMAEF%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAAzgBL%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2COAsBC%2CIAAG%2CMAAM%2COAER%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAAhhBL%2CIAAI%2COAAO%2CYAkfV%2CKAKC%2COA6BC%2CIAAG%2CMAAM%2COAAO%2CMAEf%2CIAAG%2CWAAc%3BCAChB%2CaAAA%3B%3BAAvhBL%2CIAAI%2COAAO%2CYA%2BhBV%2CIAAG%2CMAAM%3BAA%5C%2FhBV%2CIAAI%2COAAO%2CYA%2BhBW%2CIAAG%2CSAAY%2CMAAG%2CMAAM%2COAAO%3BAA%5C%2FhBrD%2CIAAI%2COAAO%2CYA%2BhBmD%2CIAAG%2CSAAY%2CMAAG%2CMAAM%2COAAO%2CMAAS%3BAA%5C%2FhBtG%2CIAAI%2COAAO%2CYA%2BhB%2BF%2CEAAC%3BCACzG%2CyBAAA%3BCACA%2CcAAA%3B%3BAAjiBF%2CIAAI%2COAAO%2CYAoiBV%2CIAAG%2CUAAU%2CSAAY%3BCACxB%2CcAAA%3B%3BAAriBF%2CIAAI%2COAAO%2CYAuiBV%2CIAAG%2CUAAU%2CSAAS%2COAAU%3BCAC%5C%2FB%2CcAAA%22%7D */+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-theme.less b/modules/cms-ui/themes/default/style/openrat-theme.less @@ -332,7 +332,7 @@ table tr.headline > td { } - #header > div > div.arrow-down { + #title > div > div.arrow-down { display: inline; width: 0; height: 0; @@ -353,7 +353,7 @@ table tr.headline > td { border: 2px solid @cms-title-background-color; } - #header span.titletext { + #title span.titletext { color: @cms-title-text-color; } @@ -474,7 +474,7 @@ table tr.headline > td { color: @cms-title-text-color; } - #header { + #title { background-color: @cms-title-background-color; background-image: linear-gradient(@cms-title-background-color,lighten(@cms-title-background-color,10%)); color: @cms-title-text-color; @@ -485,7 +485,7 @@ table tr.headline > td { } - #header , ul.views > li.action { + #title , ul.views > li.action { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 13px; @@ -516,7 +516,7 @@ table tr.headline > td { fill: @cms-text-color; } - #header { + #title { svg { width: 18px; diff --git a/modules/cms-ui/themes/default/style/openrat-theme.min.css b/modules/cms-ui/themes/default/style/openrat-theme.min.css @@ -1 +1 @@ -html.theme-'theme-name'{scrollbar-face-color: #fff;scrollbar-arrow-color: #fff;scrollbar-base-color: #000}html.theme-'theme-name' #workbench div.panel.modal{border-color: #000 !important;-webkit-box-shadow: 0px 0px 40px #000;-moz-box-shadow: 0px 0px 40px #000;box-shadow: 0px 0px 40px #000}html.theme-'theme-name' div#dialog{background-color: #c0c0c0;color: #000;border-color: #000 !important;-webkit-box-shadow: 0px 0px 40px #000;-moz-box-shadow: 0px 0px 40px #000;box-shadow: 0px 0px 40px #000}html.theme-'theme-name' div.container > div.divider.ui-draggable-dragging{background-color: #fff}html.theme-'theme-name' #workbench div.panel div.arrow-down{border-top-color: #fff}html.theme-'theme-name' #workbench div.panel div.arrow-right{border-left-color: #fff}html.theme-'theme-name' iframe{border: 1px solid #fff}html.theme-'theme-name' div.breadcrumb,html.theme-'theme-name' div.breadcrumb a,html.theme-'theme-name' div.panel > div.title{color: #000}html.theme-'theme-name' div#noticebar div.notice{border: 2px solid #000;padding: 5px;margin: 5px;border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;-webkit-box-shadow: 3px 2px 5px #000;-moz-box-shadow: 3px 2px 5px #000;box-shadow: 3px 2px 5px #000;display: none}html.theme-'theme-name' div#noticebar div.notice.ok{background-color: green}html.theme-'theme-name' div#noticebar div.notice.warning{background-color: yellow}html.theme-'theme-name' div#noticebar div.notice.error{background-color: red}html.theme-'theme-name' div#noticebar div.notice.info{background-color: #808080}html.theme-'theme-name' ul#history > li,html.theme-'theme-name' div.content a.action,html.theme-'theme-name' div.content a.help,html.theme-'theme-name' div.filler div.headermenu > a.entry,html.theme-'theme-name' div.filler div.header a.back.button{border-color: #fff;border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;background-color: #000;background: -moz-linear-gradient(top, #fff, #808080);background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#808080));color: #000}html.theme-'theme-name' ul#history > li.active{background-color: #000;color: #000}html.theme-'theme-name' a.action:hover,html.theme-'theme-name' a.help:hover,html.theme-'theme-name' div.noaction:hover{border-color: #000}html.theme-'theme-name' a.action:active,html.theme-'theme-name' a.help:active,html.theme-'theme-name' div.noaction:active,html.theme-'theme-name' input.ok:active{border-color: red}html.theme-'theme-name' a{color: #000}html.theme-'theme-name' div.dropdown > div.divide{background-color: #fff}html.theme-'theme-name' td.preview{background-color: papayawhip;border-top: 1px solid #808080;border-bottom: 1px solid #808080}html.theme-'theme-name' .preview a:link,html.theme-'theme-name' .preview a:visited,html.theme-'theme-name' .preview a:active,html.theme-'theme-name' .preview a:hover{color: blue}html.theme-'theme-name' body.menu tr.menu td table tr td.noaction,html.theme-'theme-name' body.main tr.menu td table tr td.noaction{color: #fff}html.theme-'theme-name' img[align=left],html.theme-'theme-name' img[align=right]{padding-right: 1px;padding-left: 1px}html.theme-'theme-name' small{color: #fff}html.theme-'theme-name' body.main table.main td.window td.act{border-top: 1px solid #fff}html.theme-'theme-name' td.motd{border-left: 3px solid #f00;border-right: 3px solid #f00;font-weight: bold;padding: 10px;margin: 10px}html.theme-'theme-name' textarea.longtext{border: 1px solid #000}html.theme-'theme-name' td.notice{margin: 0px;padding: 5%;text-align: center}html.theme-'theme-name' table.notice{width: 100%;border: 1px solid;border-spacing: 0px}html.theme-'theme-name' table.notice th{padding: 2px;white-space: nowrap;border-bottom: 1px solid #000;font-weight: normal;text-align: left}html.theme-'theme-name' table.calendar td{border: 1px dotted}html.theme-'theme-name' form.xlogin{xbackground-color: #E0E0D5;border: 2px solid #808080;position: absolute;z-index: 999;top: 5%;left: 5%;width: 80%;margin: 5%;padding: 10%;opacity: 1;-webkit-box-shadow: 3px 2px 5px #fff;-moz-box-shadow: 3px 2px 5px #fff;box-shadow: 3px 2px 5px #fff}html.theme-'theme-name' ul.tree,html.theme-'theme-name' ul.tree ul{list-style-type: none;background: url(modules/cms-ui/themes/default/images/tree_line.gif) repeat-y;xmargin: 0;padding: 0}html.theme-'theme-name' ul.tree li{xmargin: 0;padding: 0 0px;line-height: 18px;background: url(modules/cms-ui/themes/default/images/tree_none.gif) no-repeat;xcolor: #369;font-weight: normal;white-space: nowrap}html.theme-'theme-name' ul.tree li.last,html.theme-'theme-name' ul.tree li:last-child{background: url(modules/cms-ui/themes/default/images/tree_none_end.gif) no-repeat}html.theme-'theme-name' div.tree.open{background: url(modules/cms-ui/themes/default/images/tree_minus.png) no-repeat}html.theme-'theme-name' div.tree.closed{background: url(modules/cms-ui/themes/default/images/tree_plus.png) no-repeat}html.theme-'theme-name' body > div{display: none}html.theme-'theme-name' div.structure em{font-style: italic}html.theme-'theme-name' div.panel input.checkbox,html.theme-'theme-name' div.panel input.radio{border: 1px solid #fff}html.theme-'theme-name' div.panel > div.header{border-bottom: 1px solid #fff}html.theme-'theme-name' div.panel ul.views li{border-right: 1px solid #fff;xborder-top: 1px solid #fff;xborder-left: 1px solid #fff;xborder-right: 1px solid #fff}html.theme-'theme-name' div.panel div.content table{border-color: #808080}html.theme-'theme-name' div.panel > div.content{background-color: #c0c0c0}html.theme-'theme-name' div.panel > div.header{background-color: #c0c0c0;background-image: linear-gradient(#808080 0%, #c0c0c0 85%)}html.theme-'theme-name' div.panel ul.views li:hover{background-color: #808080}html.theme-'theme-name' table tr.headline > td{border-bottom: 1px solid #fff}html.theme-'theme-name' table tr.data > td{border-bottom: 1px solid #fff}html.theme-'theme-name' table > tr.data:nth-child(2n){background-color: #808080}html.theme-'theme-name' table tr.data:hover,html.theme-'theme-name' div.content li div.entry:hover{background-color: #808080}html.theme-'theme-name' div.panel div.status div,html.theme-'theme-name' div.message{border: 1px solid #fff}html.theme-'theme-name' #workbench div.panel.fullscreen{background-color: #c0c0c0}html.theme-'theme-name' #workbench div.panel{border: 1px solid #fff}html.theme-'theme-name' input.submit{background-color: #fff;color: #000;-webkit-box-shadow: 0px 0px 15px #c0c0c0;-moz-box-shadow: 0px 0px 15px #c0c0c0;box-shadow: 0px 0px 15px #c0c0c0}html.theme-'theme-name' ul#history > li{border: 1px solid #fff;background-color: #808080;color: #000}html.theme-'theme-name' ul#history > li.active{border: 1px solid #000;background-color: #000;color: #000}html.theme-'theme-name' ul#history{display: none}html.theme-'theme-name' div#filler{background-color: #000}html.theme-'theme-name' #header > div > div.arrow-down{display: inline;width: 0;height: 0;margin: 6;padding: 0px;border-right: 6px solid #fff;border-left: 6px solid #fff;border-top: 6px solid #808080;border-bottom: 4px solid #fff;margin-top: 10px;font-size: 0}html.theme-'theme-name' div.dropdown{border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;-webkit-box-shadow: 3px 2px 10px #fff;-moz-box-shadow: 3px 2px 10px #fff;box-shadow: 3px 2px 10px #fff;opacity: 0.95;border: 2px solid #fff}html.theme-'theme-name' #header span.titletext{color: #000}html.theme-'theme-name' div.toolbar-icon{border: 1px solid #fff;border-radius: 3px;-moz-border-radius: 3px;-webkit-border-radius: 3px;-khtml-border-radius: 3px}html.theme-'theme-name' div.toolbar-icon.inactive{opacity: 0.5}html.theme-'theme-name' div.toolbar-icon:hover{border: 1px solid #808080}html.theme-'theme-name' label div.description{color: #fff}html.theme-'theme-name' div.inputholder{background-color: #000;border: 1px solid #fff;border-radius: 3px;-moz-border-radius: 3px;-webkit-border-radius: 3px;-khtml-border-radius: 3px;-webkit-box-shadow: inset 0px 0px 3px #fff;-moz-box-shadow: inset 0px 0px 3px #fff;box-shadow: inset 0px 0px 3px #fff}html.theme-'theme-name' div.inputholder ul.tree,html.theme-'theme-name' div.inputholder ul.tree li.last,html.theme-'theme-name' div.inputholder ul.tree li:last-child{background-color: #000}html.theme-'theme-name' div.inputholder > input,html.theme-'theme-name' div.inputholder > textarea,html.theme-'theme-name' div.inputholder > select{border: 0px;border-bottom: 1px solid #000;background-color: #000}html.theme-'theme-name' input:focus,html.theme-'theme-name' textarea:focus,html.theme-'theme-name' select:focus{border: 0px;border-bottom: 1px solid #808080}html.theme-'theme-name' input.error,html.theme-'theme-name' textarea.error,html.theme-'theme-name' select.error{border-bottom: 1px dotted #000 !important}html.theme-'theme-name' div.inputholder.error{border: 1px solid #f00 !important}html.theme-'theme-name' input.hint{color: #fff}html.theme-'theme-name' fieldset > div input.name,html.theme-'theme-name' fieldset > div span.name{font-weight: bold}html.theme-'theme-name' fieldset{border-color: #fff}html.theme-'theme-name' tr.diff > td.line{background-color: #000;padding-right: 2px;border-right: 3px solid #fff;text-align: right;margin-right: 2px}html.theme-'theme-name' tr.diff > td.old{background-color: red}html.theme-'theme-name' tr.diff > td.new{background-color: green}html.theme-'theme-name' tr.diff > td.notequal{background-color: yellow}html.theme-'theme-name' dl.notice{border-left: 10px #808080 solid;border-right: 1px #808080 solid}html.theme-'theme-name' dl.notice > dt{border-top: 1px #808080 solid}html.theme-'theme-name' dl.notice > dd{border-bottom: 1px #808080 solid}html.theme-'theme-name' div.content a.action,html.theme-'theme-name' div.content a.help{-webkit-box-shadow: 3px 2px 5px #fff;-moz-box-shadow: 3px 2px 5px #fff;box-shadow: 3px 2px 5px #fff}html.theme-'theme-name' body{background-color: #808080}html.theme-'theme-name' div.panel ul.views > li.active,html.theme-'theme-name' div.panel ul.views > li.active:hover{background-color: #fff;background-image: linear-gradient(#808080 0%, #fff 15%);color: #000}html.theme-'theme-name' #header{background-color: #fff;background-image: linear-gradient(#fff, #fff);color: #000}html.theme-'theme-name' #header div.toolbar-icon > a{color: #000}html.theme-'theme-name' #header,html.theme-'theme-name' ul.views > li.action{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}html.theme-'theme-name' ul.tree li.last,html.theme-'theme-name' ul.tree li:last-child{background-color: #c0c0c0}html.theme-'theme-name' div.content pre,html.theme-'theme-name' div.dropdown{background-color: #000;color: #000}html.theme-'theme-name' div.filler div.headermenu > a.entry,html.theme-'theme-name' div.filler div.header a.back.button{font-size: 0.8em}html.theme-'theme-name' div.line.filedropzone > div.input{background-color: #000;border: 1px dotted #000}html.theme-'theme-name' body svg.image-icon > path{fill: #000}html.theme-'theme-name' body #header svg{width: 18px;height: 18px}html.theme-'theme-name' body #header svg.image-icon > path{fill: #000}html.theme-'theme-name' body #header .dropdown svg.image-icon > path{fill: #000}html.theme-'theme-name' body #header div.entry svg.image-icon > path{fill: #808080}html.theme-'theme-name' body #header div.entry.active svg.image-icon > path{fill: #000}html.theme-'theme-name' body #header div.entry.active:hover svg.image-icon > path{fill: #000}html.theme-'theme-name' div.entry.selected,html.theme-'theme-name' div.dropdown > div.entry.active:hover,html.theme-'theme-name' div.dropdown > div.entry.active:hover > a,html.theme-'theme-name' a.element{background-color: #fff;color: #000}html.theme-'theme-name' div.clickable.filtered > a{color: #808080}html.theme-'theme-name' div.clickable.filtered.active > a{color: #000}- \ No newline at end of file +html.theme-'theme-name'{scrollbar-face-color: #fff;scrollbar-arrow-color: #fff;scrollbar-base-color: #000}html.theme-'theme-name' #workbench div.panel.modal{border-color: #000 !important;-webkit-box-shadow: 0px 0px 40px #000;-moz-box-shadow: 0px 0px 40px #000;box-shadow: 0px 0px 40px #000}html.theme-'theme-name' div#dialog{background-color: #c0c0c0;color: #000;border-color: #000 !important;-webkit-box-shadow: 0px 0px 40px #000;-moz-box-shadow: 0px 0px 40px #000;box-shadow: 0px 0px 40px #000}html.theme-'theme-name' div.container > div.divider.ui-draggable-dragging{background-color: #fff}html.theme-'theme-name' #workbench div.panel div.arrow-down{border-top-color: #fff}html.theme-'theme-name' #workbench div.panel div.arrow-right{border-left-color: #fff}html.theme-'theme-name' iframe{border: 1px solid #fff}html.theme-'theme-name' div.breadcrumb,html.theme-'theme-name' div.breadcrumb a,html.theme-'theme-name' div.panel > div.title{color: #000}html.theme-'theme-name' div#noticebar div.notice{border: 2px solid #000;padding: 5px;margin: 5px;border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;-webkit-box-shadow: 3px 2px 5px #000;-moz-box-shadow: 3px 2px 5px #000;box-shadow: 3px 2px 5px #000;display: none}html.theme-'theme-name' div#noticebar div.notice.ok{background-color: green}html.theme-'theme-name' div#noticebar div.notice.warning{background-color: yellow}html.theme-'theme-name' div#noticebar div.notice.error{background-color: red}html.theme-'theme-name' div#noticebar div.notice.info{background-color: #808080}html.theme-'theme-name' ul#history > li,html.theme-'theme-name' div.content a.action,html.theme-'theme-name' div.content a.help,html.theme-'theme-name' div.filler div.headermenu > a.entry,html.theme-'theme-name' div.filler div.header a.back.button{border-color: #fff;border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;background-color: #000;background: -moz-linear-gradient(top, #fff, #808080);background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#808080));color: #000}html.theme-'theme-name' ul#history > li.active{background-color: #000;color: #000}html.theme-'theme-name' a.action:hover,html.theme-'theme-name' a.help:hover,html.theme-'theme-name' div.noaction:hover{border-color: #000}html.theme-'theme-name' a.action:active,html.theme-'theme-name' a.help:active,html.theme-'theme-name' div.noaction:active,html.theme-'theme-name' input.ok:active{border-color: red}html.theme-'theme-name' a{color: #000}html.theme-'theme-name' div.dropdown > div.divide{background-color: #fff}html.theme-'theme-name' td.preview{background-color: papayawhip;border-top: 1px solid #808080;border-bottom: 1px solid #808080}html.theme-'theme-name' .preview a:link,html.theme-'theme-name' .preview a:visited,html.theme-'theme-name' .preview a:active,html.theme-'theme-name' .preview a:hover{color: blue}html.theme-'theme-name' body.menu tr.menu td table tr td.noaction,html.theme-'theme-name' body.main tr.menu td table tr td.noaction{color: #fff}html.theme-'theme-name' img[align=left],html.theme-'theme-name' img[align=right]{padding-right: 1px;padding-left: 1px}html.theme-'theme-name' small{color: #fff}html.theme-'theme-name' body.main table.main td.window td.act{border-top: 1px solid #fff}html.theme-'theme-name' td.motd{border-left: 3px solid #f00;border-right: 3px solid #f00;font-weight: bold;padding: 10px;margin: 10px}html.theme-'theme-name' textarea.longtext{border: 1px solid #000}html.theme-'theme-name' td.notice{margin: 0px;padding: 5%;text-align: center}html.theme-'theme-name' table.notice{width: 100%;border: 1px solid;border-spacing: 0px}html.theme-'theme-name' table.notice th{padding: 2px;white-space: nowrap;border-bottom: 1px solid #000;font-weight: normal;text-align: left}html.theme-'theme-name' table.calendar td{border: 1px dotted}html.theme-'theme-name' form.xlogin{xbackground-color: #E0E0D5;border: 2px solid #808080;position: absolute;z-index: 999;top: 5%;left: 5%;width: 80%;margin: 5%;padding: 10%;opacity: 1;-webkit-box-shadow: 3px 2px 5px #fff;-moz-box-shadow: 3px 2px 5px #fff;box-shadow: 3px 2px 5px #fff}html.theme-'theme-name' ul.tree,html.theme-'theme-name' ul.tree ul{list-style-type: none;background: url(modules/cms-ui/themes/default/images/tree_line.gif) repeat-y;xmargin: 0;padding: 0}html.theme-'theme-name' ul.tree li{xmargin: 0;padding: 0 0px;line-height: 18px;background: url(modules/cms-ui/themes/default/images/tree_none.gif) no-repeat;xcolor: #369;font-weight: normal;white-space: nowrap}html.theme-'theme-name' ul.tree li.last,html.theme-'theme-name' ul.tree li:last-child{background: url(modules/cms-ui/themes/default/images/tree_none_end.gif) no-repeat}html.theme-'theme-name' div.tree.open{background: url(modules/cms-ui/themes/default/images/tree_minus.png) no-repeat}html.theme-'theme-name' div.tree.closed{background: url(modules/cms-ui/themes/default/images/tree_plus.png) no-repeat}html.theme-'theme-name' body > div{display: none}html.theme-'theme-name' div.structure em{font-style: italic}html.theme-'theme-name' div.panel input.checkbox,html.theme-'theme-name' div.panel input.radio{border: 1px solid #fff}html.theme-'theme-name' div.panel > div.header{border-bottom: 1px solid #fff}html.theme-'theme-name' div.panel ul.views li{border-right: 1px solid #fff;xborder-top: 1px solid #fff;xborder-left: 1px solid #fff;xborder-right: 1px solid #fff}html.theme-'theme-name' div.panel div.content table{border-color: #808080}html.theme-'theme-name' div.panel > div.content{background-color: #c0c0c0}html.theme-'theme-name' div.panel > div.header{background-color: #c0c0c0;background-image: linear-gradient(#808080 0%, #c0c0c0 85%)}html.theme-'theme-name' div.panel ul.views li:hover{background-color: #808080}html.theme-'theme-name' table tr.headline > td{border-bottom: 1px solid #fff}html.theme-'theme-name' table tr.data > td{border-bottom: 1px solid #fff}html.theme-'theme-name' table > tr.data:nth-child(2n){background-color: #808080}html.theme-'theme-name' table tr.data:hover,html.theme-'theme-name' div.content li div.entry:hover{background-color: #808080}html.theme-'theme-name' div.panel div.status div,html.theme-'theme-name' div.message{border: 1px solid #fff}html.theme-'theme-name' #workbench div.panel.fullscreen{background-color: #c0c0c0}html.theme-'theme-name' #workbench div.panel{border: 1px solid #fff}html.theme-'theme-name' input.submit{background-color: #fff;color: #000;-webkit-box-shadow: 0px 0px 15px #c0c0c0;-moz-box-shadow: 0px 0px 15px #c0c0c0;box-shadow: 0px 0px 15px #c0c0c0}html.theme-'theme-name' ul#history > li{border: 1px solid #fff;background-color: #808080;color: #000}html.theme-'theme-name' ul#history > li.active{border: 1px solid #000;background-color: #000;color: #000}html.theme-'theme-name' ul#history{display: none}html.theme-'theme-name' div#filler{background-color: #000}html.theme-'theme-name' #title > div > div.arrow-down{display: inline;width: 0;height: 0;margin: 6;padding: 0px;border-right: 6px solid #fff;border-left: 6px solid #fff;border-top: 6px solid #808080;border-bottom: 4px solid #fff;margin-top: 10px;font-size: 0}html.theme-'theme-name' div.dropdown{border-radius: 5px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;-webkit-box-shadow: 3px 2px 10px #fff;-moz-box-shadow: 3px 2px 10px #fff;box-shadow: 3px 2px 10px #fff;opacity: 0.95;border: 2px solid #fff}html.theme-'theme-name' #title span.titletext{color: #000}html.theme-'theme-name' div.toolbar-icon{border: 1px solid #fff;border-radius: 3px;-moz-border-radius: 3px;-webkit-border-radius: 3px;-khtml-border-radius: 3px}html.theme-'theme-name' div.toolbar-icon.inactive{opacity: 0.5}html.theme-'theme-name' div.toolbar-icon:hover{border: 1px solid #808080}html.theme-'theme-name' label div.description{color: #fff}html.theme-'theme-name' div.inputholder{background-color: #000;border: 1px solid #fff;border-radius: 3px;-moz-border-radius: 3px;-webkit-border-radius: 3px;-khtml-border-radius: 3px;-webkit-box-shadow: inset 0px 0px 3px #fff;-moz-box-shadow: inset 0px 0px 3px #fff;box-shadow: inset 0px 0px 3px #fff}html.theme-'theme-name' div.inputholder ul.tree,html.theme-'theme-name' div.inputholder ul.tree li.last,html.theme-'theme-name' div.inputholder ul.tree li:last-child{background-color: #000}html.theme-'theme-name' div.inputholder > input,html.theme-'theme-name' div.inputholder > textarea,html.theme-'theme-name' div.inputholder > select{border: 0px;border-bottom: 1px solid #000;background-color: #000}html.theme-'theme-name' input:focus,html.theme-'theme-name' textarea:focus,html.theme-'theme-name' select:focus{border: 0px;border-bottom: 1px solid #808080}html.theme-'theme-name' input.error,html.theme-'theme-name' textarea.error,html.theme-'theme-name' select.error{border-bottom: 1px dotted #000 !important}html.theme-'theme-name' div.inputholder.error{border: 1px solid #f00 !important}html.theme-'theme-name' input.hint{color: #fff}html.theme-'theme-name' fieldset > div input.name,html.theme-'theme-name' fieldset > div span.name{font-weight: bold}html.theme-'theme-name' fieldset{border-color: #fff}html.theme-'theme-name' tr.diff > td.line{background-color: #000;padding-right: 2px;border-right: 3px solid #fff;text-align: right;margin-right: 2px}html.theme-'theme-name' tr.diff > td.old{background-color: red}html.theme-'theme-name' tr.diff > td.new{background-color: green}html.theme-'theme-name' tr.diff > td.notequal{background-color: yellow}html.theme-'theme-name' dl.notice{border-left: 10px #808080 solid;border-right: 1px #808080 solid}html.theme-'theme-name' dl.notice > dt{border-top: 1px #808080 solid}html.theme-'theme-name' dl.notice > dd{border-bottom: 1px #808080 solid}html.theme-'theme-name' div.content a.action,html.theme-'theme-name' div.content a.help{-webkit-box-shadow: 3px 2px 5px #fff;-moz-box-shadow: 3px 2px 5px #fff;box-shadow: 3px 2px 5px #fff}html.theme-'theme-name' body{background-color: #808080}html.theme-'theme-name' div.panel ul.views > li.active,html.theme-'theme-name' div.panel ul.views > li.active:hover{background-color: #fff;background-image: linear-gradient(#808080 0%, #fff 15%);color: #000}html.theme-'theme-name' #title{background-color: #fff;background-image: linear-gradient(#fff, #fff);color: #000}html.theme-'theme-name' #title div.toolbar-icon > a{color: #000}html.theme-'theme-name' #title,html.theme-'theme-name' ul.views > li.action{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}html.theme-'theme-name' ul.tree li.last,html.theme-'theme-name' ul.tree li:last-child{background-color: #c0c0c0}html.theme-'theme-name' div.content pre,html.theme-'theme-name' div.dropdown{background-color: #000;color: #000}html.theme-'theme-name' div.filler div.headermenu > a.entry,html.theme-'theme-name' div.filler div.header a.back.button{font-size: 0.8em}html.theme-'theme-name' div.line.filedropzone > div.input{background-color: #000;border: 1px dotted #000}html.theme-'theme-name' body svg.image-icon > path{fill: #000}html.theme-'theme-name' body #title svg{width: 18px;height: 18px}html.theme-'theme-name' body #title svg.image-icon > path{fill: #000}html.theme-'theme-name' body #title .dropdown svg.image-icon > path{fill: #000}html.theme-'theme-name' body #title div.entry svg.image-icon > path{fill: #808080}html.theme-'theme-name' body #title div.entry.active svg.image-icon > path{fill: #000}html.theme-'theme-name' body #title div.entry.active:hover svg.image-icon > path{fill: #000}html.theme-'theme-name' div.entry.selected,html.theme-'theme-name' div.dropdown > div.entry.active:hover,html.theme-'theme-name' div.dropdown > div.entry.active:hover > a,html.theme-'theme-name' a.element{background-color: #fff;color: #000}html.theme-'theme-name' div.clickable.filtered > a{color: #808080}html.theme-'theme-name' div.clickable.filtered.active > a{color: #000}+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-ui.css b/modules/cms-ui/themes/default/style/openrat-ui.css @@ -9,30 +9,6 @@ div.breadcrumb a, div.panel > div.title { font-weight: bold; } -/* H e a d e r */ -#header { - width: 100%; - height: 27px; - overflow: hidden; - padding: 5px; - margin: 0px; - margin-bottom: 3px; - float: left; -} -#header div.projects, -#header div.menu, -#header div.title { - float: left; - margin-right: 10px; - margin-left: 0px; -} -#header div.user, -#header div.search, -#header div.history { - float: right; - margin-right: 10px; - margin-left: 10px; -} /* div#tree @@ -135,15 +111,6 @@ div.dropdown > div.divide { margin-top: 5px; margin-bottom: 5px; } -#header > div.menu { - overflow: hidden; -} -/* Dropdown anzeigen */ -#header.open div.menu.open div.dropdown, -div.panel div:hover > div.dropdown, -div.panel-icon:hover > div.dropdown { - display: block; -} div.onrowvisible { visibility: hidden; display: inline; @@ -330,10 +297,6 @@ div.logo p { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 13px; } -#header div.search input { - margin: 0px; - padding: 0px; -} /* Notizen */ td.notice { margin: 0px; @@ -758,9 +721,6 @@ div#shortcuts > div.shortcut:HOVER { height: auto !important; } } -body > #header { - display: block; -} ul#history > li { xdisplay: inline; margin: 5px; @@ -804,41 +764,6 @@ div#filler { background-color: #000000; opacity: 0.5; } -/* Pfeile */ -#header > div > div.arrow-down { - display: inline; - width: 0; - height: 0; - margin: 6; - padding: 0px; - border-right: 6px solid #000000; - border-left: 6px solid #000000; - border-top: 6px solid #000000; - border-bottom: 4px solid #000000; - margin-top: 10px; - font-size: 0; -} -/* D r o p d o w n - M e n u e s */ -div.dropdown { - font-style: normal; - font-weight: normal; - text-decoration: none; -} -div.toolbar-icon { - padding: 2px; - margin-left: 5px; - float: left; -} -div.headermenu { - margin: 5px; - z-index: 1; - position: relative; - right: 0; - top: 0; -} -div.headermenu > div.toolbar-icon { - float: right; -} /* Voreingestellte Schriftart */ /* Formulare breit */ div.panel.wide form div.line { @@ -972,21 +897,6 @@ div.panel ul.views > li.active:hover { background-image: linear-gradient(#000000 0%, #000000 15%); color: #000000; } -/* Titelleiste-Hintergrund */ -#header { - background-color: #000000; - background-image: linear-gradient(#000000 85%, #000000 100%); - color: #000000; -} -/* Titelleiste */ -#header div.toolbar-icon > a { - color: #000000; -} -#header, -ul.views > li.action { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; - font-size: 13px; -} div.content { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 13px; @@ -1032,4 +942,4 @@ img.image-icon { .CodeMirror { height: auto; } -/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22openrat-ui.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAIA%3BCAEC%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%3BAACH%2CGAAG%2CWAAY%3BAACf%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3B%3B%3BAAID%3BCAEC%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2COAAQ%2CIAAG%3BAACX%2COAAQ%2CIAAG%3BAACX%2COAAQ%2CIAAG%3BCAEV%3BCACA%3BCACA%3B%3BAAGD%2COAAQ%2CIAAG%3BAACX%2COAAQ%2CIAAG%3BAACX%2COAAQ%2CIAAG%3BCAEV%3BCACA%3BCACA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BAAgBD%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CUAAW%2CIAAG%3BCAEhB%2CyBAAA%3BCAEA%3BCACA%3BCAEA%3B%3BAAED%2CGAAG%2CUAAW%2CIAAG%2COAAO%2CMAAO%2CIAAG%3BCAEjC%3B%3BAAED%2CGAAG%2CUAAW%2CIAAG%3BCAEhB%3B%3B%3BAAID%3BAAAK%3BCAEJ%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%3BCAEZ%3B%3BAAKD%2CGAAG%2CMAAO%2CIAAG%3BCAEZ%3B%3BAAED%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3B%3BAAID%2CEAAE%2CQAAW%3BAACb%2CGAAG%2CQAAS%2CEAAC%3BAACb%2CGAAG%2CQAAS%2CEAAC%3BAACb%2CGAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAC7B%2CGAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCAE3B%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CiBAAA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CEAAE%2CQAAW%2CKAAE%3BCAEX%3B%3BAAIJ%2CCAAC%3BCAEA%3B%3BAAGD%2CCAAC%3BCAEA%3B%3BAAGD%2CCAAC%2COAAO%3BAACR%2CCAAC%2CKAAK%3BAACN%2CGAAG%2CSAAS%3BCAEX%3B%3BAAGD%2CCAAC%2COAAO%3BAACR%2CCAAC%2CKAAK%3BAACN%2CGAAG%2CSAAS%3BAACZ%2CKAAK%2CGAAG%3BCAEP%3B%3B%3BAAID%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%2CgBAAA%3B%3BAAGD%2CGAAG%3BCAEF%3B%3BAAGD%2CGAAG%2CSAAY%3BCAEd%3B%3BAAED%2CGAAG%2CSAAU%2CIAAG%3BCAEf%2CgBAAA%3B%3BAAGD%2CGAAG%2CSAAY%2CMAAG%3BCAEjB%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2COAAU%2CMAAG%3BCACZ%3B%3B%3BAAID%2COAAO%2CKAAM%2CIAAG%2CKAAK%2CKAAM%2CIAAG%3BAAC9B%2CGAAG%2CMAAO%2CIAAG%2CMAAS%2CMAAG%3BAACzB%2CGAAG%2CWAAW%2CMAAS%2CMAAG%3BCAEzB%3B%3BAAKD%2CGAAG%3BCAEF%3BCACA%3B%3BAAED%2CEAAE%2CMAAS%2CMAAG%3BCAEb%3B%3B%3BAAOD%2CQAAS%3BCAAK%3B%3BAACd%2CQAAS%3BCAAK%3B%3BAACd%2CQAAS%3BCAAK%3B%3BAACd%2CQAAS%3BAAAG%2CQAAS%3BAAAG%2CQAAS%3BCAChC%2CaAAA%3B%3BAAED%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BCAER%3B%3BAAED%2CQAAS%3BAAAK%2CQAAS%3BCACtB%2C8BAAA%3BCACA%3B%3BAAED%2CQAAS%3BCACR%3B%3BAAED%2CQAAS%3BAAAG%2CQAAS%3BAAAG%2CQAAS%3BCAChC%3B%3BAAED%2CQAAS%2CGAAG%3BCAEX%2C2BAAA%3B%3BAAED%2CQAAS%2CGAAG%3BCAEX%2CwBAAA%3B%3BAAED%2CQAAS%2CEAAC%3BAACV%2CQAAS%2CEAAC%3BAACV%2CQAAS%2CEAAC%3BAACV%2CQAAS%2CEAAC%3BCAET%3B%3B%3BAAMD%2CCAAC%3BAACD%2CCAAC%3BCAEA%3BCACA%3B%3BAAED%2CCAAC%3BAACD%2CCAAC%3BCAEA%3BCACA%3B%3B%3BAAMD%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%3BAAC9B%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%3BCAE7B%3BCAAa%3BCAAkB%3BCAAkB%3BCACjD%3B%3B%3BAAID%2CIAAI%2CKAAM%2CGAAE%2CKAAM%3BCAAQ%3B%3B%3BAAI1B%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BAAChC%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BCAE%5C%2FB%2CcAAA%3B%3B%3BAAID%2CGAAG%3BAACH%2CGAAG%3BCAAe%3BCAAkB%3B%3B%3BAAGpC%3BCAEC%3BCACA%3B%3B%3BAAID%3BCAEC%2CcAAA%3B%3B%3BAAKD%2CIAAI%2CKAAM%2CKAAI%3BAACd%2CIAAI%2CKAAM%2CKAAI%3BCAEb%3B%3B%3BAAOD%2CIAAI%2CKAAM%2CGAAE%2CMAAO%3BAACnB%2CIAAI%2CKAAM%2CGAAE%2CMAAO%3BCAElB%3BCACA%3BCACA%3B%3B%3BAAID%2CEAAE%3BCAAW%3BCAAc%3B%3B%3BAAI3B%2CIAAI%2CKAAM%2CMAAK%2CKAAM%2CGAAE%2COAAQ%3BCAE9B%3B%3B%3BAAKD%2CIAAI%2CKAAM%2CMAAK%2CKAAM%2CGAAE%2COAAQ%2CGAAE%3BCAEhC%3BCACA%3BCACA%2C6BAAA%3BCACA%3B%3B%3BAAID%2CCAAC%3BCAEA%3BCACA%3B%3B%3BAAID%2CEAAE%3BCAED%2C0BAAA%3BCACA%2C2BAAA%3BCACA%3BCACA%3BCACA%3B%3B%3BAAID%2CKAAK%3BCAEJ%2CmBAAA%3B%3BAAKD%2CGAAG%2CMAAO%2CMAAK%3BAACf%2CGAAG%2CMAAO%2CMAAK%3BCAEd%2CyBAAA%3B%3B%3BAAID%2CQAAQ%3BAACR%2CQAAQ%3BCAEN%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3B%3B%3BAAID%2CQAAQ%3BCAEN%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3BCACA%3BCACA%2CyBAAA%3B%3B%3BAAQD%2CEAAG%2CGAAE%3BCAEJ%3B%3BAAGD%2CEAAE%2CSAAU%2CGAAE%3B%3B%3B%3BCAKb%3B%3B%3BAAKD%2CEAAE%3BCAED%3BCACA%3B%3BAAGD%2CGAAG%2CKAAM%3BCAER%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACvG%2CaAAa%2CcAAc%2C4BAD3B%3BCAEA%3BCACA%3B%3BAAED%2CGAAG%2CKAAM%3BCAEP%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3B%3BAAGD%2COAAQ%2CIAAG%2COAAQ%3BCAElB%3BCACA%3B%3B%3BAAMD%2CEAAE%3BCAED%3BCACA%3BCACA%3B%3BAAED%2CKAAK%3BCAEJ%3BCACA%2CiBAAA%3BCACA%3B%3BAAED%2CKAAK%2COAAQ%3BCAEZ%3BCACA%3BCACA%2CgCAAA%3BCACA%3BCACA%3B%3BAAOD%2CKAAK%2COAAQ%2CGAAE%3BCAEd%3BCACA%3B%3B%3BAAMD%2CKAAK%3BCAEJ%3BCACA%3BCACA%3B%3BAAED%2CKAAK%2CSAAU%3BCAEd%2CkBAAA%3B%3BAAID%3BAACA%3BCAEC%3B%3BAAGD%3BCACI%3B%3BAAGJ%3BCACI%3B%3BAAIJ%2CGAAG%3BCAEF%3BCACA%3B%3BAAKD%2CIAAI%3BCAEH%3BCACA%2CyBAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCAEA%2CuCAAA%3BCACG%2CoCAAA%3BCACA%2C%2BBAAA%3B%3B%3BAAUJ%2CEAAE%3BAACF%2CEAAE%2CKAAM%3BCAEP%3BCACA%2CsDAAA%3BCACA%3BCAAW%3B%3BAAGZ%2CEAAE%2CKAAM%3BCAEP%3B%3BAAKD%2CEAAE%2CKAAM%2CIAAG%3BCAEV%3BCACA%3BCACA%3BCACA%3B%3BAAED%2CEAAE%2CKAAM%2CIAAG%3BAACX%2CEAAE%2CKAAM%2CIAAG%3BCAEV%3BCACA%3BCACA%3B%3BAAGD%2CEAAE%2CKAAM%2CIAAI%3BCAEX%3B%3BAAGD%2CEAAE%2CKAAM%3BCACP%3BCAAW%2CcAAA%3BCACX%3BCACA%2CuDAAA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CEAAE%2CKAAM%2CGAAE%3BAACV%2CEAAE%2CKAAM%2CGAAE%3BCAET%2C2DAAA%3B%3BAAGD%2CGAAG%2CKAAK%3BCAEP%2CwDAAA%3B%3BAAED%2CGAAG%2CKAAK%3BCAEP%2CuDAAA%3B%3BAAID%2CIAAO%3BCAEN%3B%3BAAID%2CGAAG%2CUAAW%3BCAEb%3B%3B%3BAAQD%3BCAEC%2CwBAAA%3BCACA%3B%3BAAED%3BCAEC%2CuBAAA%3BCACA%3B%3BAAGD%2CGAAG%2CMAAS%2CMAAG%2COAAU%2CMAAG%3BCAE3B%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%3BCAEF%3B%3BAAED%2CGAAG%3BCAEF%3B%3BAAGD%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3BCACA%3BCACA%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CGAAE%3BCAEtB%3B%3BCACA%3BCACA%3B%3BCACA%3B%3BAAGD%2CGAAG%3BCAEF%3BCACA%3BCACA%3B%3BAAID%2CEAAE%2CMAAO%2CIAAG%3BCAEX%3BCACA%3BCACA%3BCACA%3B%3BAAED%2CEAAE%2CMAAS%2CKAAK%3BAAChB%2CEAAE%2CMAAS%2CKAAK%3BCAEf%3B%3BAAGD%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CYAAe%2CMAAG%3BCAEpB%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%2COAAU%2CKAAE%3BCAExB%3BCACA%3B%3BAAKD%2CGAAG%3BCAEF%3B%3BAAGD%2CGAAG%2CMAAO%2CGAAE%2CMAAO%3BCAElB%3BCACA%3BCAEA%3BCAEA%2C%2BBAAA%3BCAEA%3B%3BCACG%3B%3BCACA%3B%3BCAEH%3B%3BCACG%3B%3BCACA%3B%3BCACA%3BCAEH%3BCACA%3BCACA%3B%3BAAMD%2CGAAG%3BCACF%3BCACA%3B%3BAAGD%2CGAAG%2CMAAO%2CIAAG%2CQAAS%3BCAErB%3BCACA%3B%3BAAID%2CKAAM%2CGAAE%2CSAAY%3BCAEhB%3BCACA%3B%3BAAIJ%2CKAAM%2CGAAE%2CKAAQ%3BCACZ%3B%3BAAKJ%2CEAAE%2CKAAM%3BCAER%3B%3B%3BAAMA%2CGAAG%2CMAAO%2CIAAG%3BCAEZ%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2C0DAAA%3BCACA%2C4BAAA%3B%3BAAED%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2C4DAAA%3BCACA%2C4BAAA%3B%3BAAED%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2CuDAAA%3BCACA%2C4BAAA%3B%3BAAED%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2CyDAAA%3BCACA%2C4BAAA%3B%3BAAGD%2CGAAG%2CMAAO%2CIAAG%2COAAQ%3BAACrB%2CGAAG%3BCAEF%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2C2BAAA%3BCAEA%3BCACG%3BCACA%3BCACA%3B%3B%3BAAIJ%2CGAAG%3BAACH%2CGAAG%3BCAEF%2CoDAAA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAKD%3BCACC%3BCACA%3B%3BAAFD%2CUAGC%2CIAAG%2CMAAM%3BCACR%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%3BCACA%3BCACA%3B%3BAAZF%2CUAeC%2CIAAG%2CMAAM%2CWAAc%2CMAAG%3BCACzB%3BCACA%3B%3BAAjBF%2CUAoBC%2CIAAG%3BCACF%2CyBAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAA3BF%2CUA8BC%2CIAAG%3BAA9BJ%2CUA8BiB%2CIAAG%3BAA9BpB%2CUA8B6B%2CIAAG%3BCAC9B%3BCACA%3BCACA%3B%3BAAjCF%2CUAoCC%2CIAAG%2CMAAS%2CMAAG%3BCACf%3B%3BAAID%3BCAEC%3B%3BAAED%3BCAEC%3B%3BAAID%3BCAEC%3B%3B%3B%3B%3BAAKD%2CGAAG%3BCACF%3B%3BAAED%2CGAAG%2CQAAS%2CIAAG%3BCAEd%2C0BAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CQAAS%2CIAAG%2COAAU%2CMAAG%3BCAE3B%3BCACA%3BCACA%3B%3BAAED%2CGAAG%2CQAAS%2CKAAI%2CsBAAuB%2CIAAG%3BCAEzC%3B%3BAAGD%2CGAAG%2CQAAW%3BCAEb%3B%3BAAGD%2CKAAK%3BCAEJ%2CyBAAA%3BCACA%2CcAAA%3BCACA%3BCACA%3BCACA%3B%3BCACG%3B%3BCACA%3B%3BCACA%3BCACA%3BCACH%2CwCAAA%3BCACG%2CqCAAA%3BCACA%2CqCAAA%3BCACA%3B%3BAAIJ%2CKAAK%2COAAO%3BCAEX%3B%3B%3B%3BAAKD%2CGAAG%2CMAAS%2CMAAG%3BAACf%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3B%3BAAED%2CGAAG%2CMAAM%2CMAAS%2CMAAG%3BAACrB%2CGAAG%2CMAAM%2CMAAS%2CMAAG%3BCAEpB%3B%3BAAID%2CGAAG%3BCACF%3BCACA%3B%3BAAED%2CGAAG%2CUAAa%2CMAAG%3BCAClB%3BCACA%3BCACA%3BCACA%3BCACG%3B%3BAAGJ%2CGAAG%2CUAAa%2CMAAG%2CSAAS%3BCAE3B%2C0BAAA%3BCACA%3B%3BCACG%3B%3BCACA%3B%3BCACA%3BCACA%3BCACA%3B%3B%3BAAmBJ%2CwBAV2C%3BCAE1C%3BEACA%3BEACA%3B%3B%3B%3BAAsED%2CkCA9DoD%3BCAEnD%3BEACC%3BEACA%3BEACA%3B%3BCAED%3BCACA%3BEACC%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BCAGD%2CUAAW%2CIAAG%3BEAEb%3B%3BCAGD%2CEAAE%2COAAQ%2CIAAG%3BEAEZ%3B%3BCAGD%2CUAAW%2CIAAG%3BEAEb%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BCAED%2CUAAW%2CIAAG%2CMAAS%2CMAAG%3BEAEzB%3BEACA%3B%3B%3BAAsBF%2CIAAO%3BCACN%3B%3BAAGD%2CEAAE%2CQAAY%3BCAEb%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAAED%2CEAAE%2CQAAY%2CKAAE%3BCAEf%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAAGD%2CEAAE%3BCACD%3B%3BAAID%2CKAAM%2CGAAE%3BCACP%3BCACA%3B%3BAAED%2CKAAM%2CGAAE%3BCACP%3BCACA%3B%3BAAED%2CKAAM%2CGAAE%3BCACP%3BCACA%3B%3B%3BAAMD%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%3B%3B%3BAAKD%2COAAU%2CMAAM%2CMAAG%3BCAElB%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%2C8BAAA%3BCACA%2C6BAAA%3BCACA%2CgCAAA%3BCACA%3BCACD%3B%3B%3BAAMA%2CGAAG%3BCAEF%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%3BCAEF%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAED%2CGAAG%2CWAAc%2CMAAG%3BCAEnB%3B%3B%3B%3BAAaD%2CGAAG%2CMAAM%2CKAAM%2CKAAK%2CIAAG%3BCAEtB%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CKAAM%2CKAAK%2CIAAG%3BCAEtB%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CKAAM%2CKAAK%2CIAAG%3BCAEtB%3BCACA%3BCACA%3BCACA%3B%3B%3BAAID%2CGAAG%2CMAAM%2CMAAO%2CKAAK%2CIAAG%3BCAEvB%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CMAAO%2CKAAK%2CIAAG%3BCAEvB%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CMAAO%2CKAAK%2CIAAG%3BCAEvB%3BCACA%3BCACA%3BCACA%3B%3BAAKD%2CIAAK%2CIAAG%2CMAAS%3BAACjB%2CIAAK%2CIAAG%2CMAAS%2CMAAG%3BCAEnB%2CgBAAA%3B%3BAAGD%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BAACpB%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BAACpB%2CIAAK%2CIAAG%2CMAAO%3BAACf%2CIAAK%2CIAAG%2CMAAO%3BCAEd%3B%3BAAED%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BAACpB%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BCAEnB%3B%3BAAGD%3BCAEC%3B%3BAAGD%2CKAAK%2CeAAkB%3BAACvB%2CKAAK%2CYAAe%3BCAEnB%3B%3BAAGD%2CKAAM%2CIAAG%3BCAER%3B%3BAAGD%2CGAAG%2CYAAe%2CMAAG%3BCAEpB%3B%3BAAGD%2CGAAG%2COAAU%2CMAAG%3BCAEf%3B%3BAAGD%2CGAAG%2CYAAe%3BAAClB%2CGAAG%2CYAAe%3BAAClB%2CGAAG%2CYAAe%3BCAEjB%3BCACA%3B%3B%3BAAMD%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CKAAI%3BCAElB%3B%3B%3BAAMD%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CKAAI%3BAACnB%2CQAAW%2CMAAI%2CKAAI%3BAACnB%2CQAAW%2CMAAI%2CKAAI%3BCAElB%3BCACA%3B%3BAAID%2CGAAG%3BCAEF%3B%3B%3B%3BAAUD%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%2CyBAAA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%3BCACA%3B%3B%3B%3BAASD%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%3B%3B%3BAAID%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%3B%3B%3BAAID%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%3B%3BAAGD%2CEAAE%3BCAED%3B%3B%3BAAKD%2CGAAG%2CQAAS%2CEAAC%3BAACb%2CGAAG%2CQAAS%2CEAAC%3BCAEZ%2CuCAAA%3BCACG%2CoCAAA%3BCACA%2C%2BBAAA%3B%3B%3B%3BAAQJ%3BCAEC%2CyBAAA%3B%3B%3BAAID%2CGAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%3BAACvB%2CGAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%2COAAO%3BCAE7B%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3BCACA%2CcAAA%3B%3B%3BAAID%3BCAEC%2CyBAAA%3BCACA%2CkBAAkB%2C0CAAlB%3BCACA%2CcAAA%3B%3B%3BAAID%2COAAQ%2CIAAG%2CaAAgB%3BCAE1B%2CcAAA%3B%3BAAGD%3BAACA%2CEAAE%2CMAAS%2CKAAE%3BCAEX%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3B%3BAAGD%2CGAAG%3BCAEF%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACvG%2CaAAa%2CcAAc%2C4BAD3B%3BCAEA%3B%3B%3BAAKD%2CGAAG%2CMAAO%2CGAAE%2CMAAO%3B%3B%3B%3B%3BAAQnB%2CGAAG%2CMAAS%2CMAAG%3BCAEd%2CyBAAA%3B%3BAAGD%2CGAAG%2CMAAS%2CMAAG%3BCAEd%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3B%3BAAMD%2CGAAG%2CMAAO%2CGAAE%2CMAAO%2CGAAE%3BCACpB%2CyBAAA%3B%3B%3B%3B%3BAAQD%2CEAAE%2CKAAM%2CGAAE%3BAACV%2CEAAE%2CKAAM%2CGAAE%3BCAET%2CyBAAA%3B%3BAAKD%2CGAAG%2CQAAS%3BAACZ%2CGAAG%3BCAEF%2CyBAAA%3BCACA%2CcAAA%3BCACA%3BCACA%3B%3BAAOD%2CGAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAC7B%2CGAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCAE3B%3B%3BAAGD%2CGAAG%3BCACF%3B%3B%3BAAKD%3BCACC%22%7D */- \ No newline at end of file +/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22openrat-ui.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAIA%3BCAEC%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%3BAACH%2CGAAG%2CWAAY%3BAACf%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BAAeD%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CUAAW%2CIAAG%3BCAEhB%2CyBAAA%3BCAEA%3BCACA%3BCAEA%3B%3BAAED%2CGAAG%2CUAAW%2CIAAG%2COAAO%2CMAAO%2CIAAG%3BCAEjC%3B%3BAAED%2CGAAG%2CUAAW%2CIAAG%3BCAEhB%3B%3B%3BAAID%3BAAAK%3BCAEJ%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%3BCAEZ%3B%3BAAKD%2CGAAG%2CMAAO%2CIAAG%3BCAEZ%3B%3BAAED%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3B%3BAAID%2CEAAE%2CQAAW%3BAACb%2CGAAG%2CQAAS%2CEAAC%3BAACb%2CGAAG%2CQAAS%2CEAAC%3BAACb%2CGAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAC7B%2CGAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCAE3B%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CiBAAA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CEAAE%2CQAAW%2CKAAE%3BCAEX%3B%3BAAIJ%2CCAAC%3BCAEA%3B%3BAAGD%2CCAAC%3BCAEA%3B%3BAAGD%2CCAAC%2COAAO%3BAACR%2CCAAC%2CKAAK%3BAACN%2CGAAG%2CSAAS%3BCAEX%3B%3BAAGD%2CCAAC%2COAAO%3BAACR%2CCAAC%2CKAAK%3BAACN%2CGAAG%2CSAAS%3BAACZ%2CKAAK%2CGAAG%3BCAEP%3B%3B%3BAAID%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%2CgBAAA%3B%3BAAGD%2CGAAG%3BCAEF%3B%3BAAGD%2CGAAG%2CSAAY%3BCAEd%3B%3BAAED%2CGAAG%2CSAAU%2CIAAG%3BCAEf%2CgBAAA%3B%3BAAGD%2CGAAG%2CSAAY%2CMAAG%3BCAEjB%3BCACA%3BCACA%3BCACA%3B%3BAAMD%2CGAAG%3BCAEF%3BCACA%3B%3BAAED%2CEAAE%2CMAAS%2CMAAG%3BCAEb%3B%3B%3BAAOD%2CQAAS%3BCAAK%3B%3BAACd%2CQAAS%3BCAAK%3B%3BAACd%2CQAAS%3BCAAK%3B%3BAACd%2CQAAS%3BAAAG%2CQAAS%3BAAAG%2CQAAS%3BCAChC%2CaAAA%3B%3BAAED%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BAACT%2CQAAS%3BCAER%3B%3BAAED%2CQAAS%3BAAAK%2CQAAS%3BCACtB%2C8BAAA%3BCACA%3B%3BAAED%2CQAAS%3BCACR%3B%3BAAED%2CQAAS%3BAAAG%2CQAAS%3BAAAG%2CQAAS%3BCAChC%3B%3BAAED%2CQAAS%2CGAAG%3BCAEX%2C2BAAA%3B%3BAAED%2CQAAS%2CGAAG%3BCAEX%2CwBAAA%3B%3BAAED%2CQAAS%2CEAAC%3BAACV%2CQAAS%2CEAAC%3BAACV%2CQAAS%2CEAAC%3BAACV%2CQAAS%2CEAAC%3BCAET%3B%3B%3BAAMD%2CCAAC%3BAACD%2CCAAC%3BCAEA%3BCACA%3B%3BAAED%2CCAAC%3BAACD%2CCAAC%3BCAEA%3BCACA%3B%3B%3BAAMD%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%3BAAC9B%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%3BCAE7B%3BCAAa%3BCAAkB%3BCAAkB%3BCACjD%3B%3B%3BAAID%2CIAAI%2CKAAM%2CGAAE%2CKAAM%3BCAAQ%3B%3B%3BAAI1B%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BAAChC%2CIAAI%2CKAAM%2CGAAE%2CKAAM%2CGAAG%2CMAAM%2CGAAG%2CGAAE%3BCAE%5C%2FB%2CcAAA%3B%3B%3BAAID%2CGAAG%3BAACH%2CGAAG%3BCAAe%3BCAAkB%3B%3B%3BAAGpC%3BCAEC%3BCACA%3B%3B%3BAAID%3BCAEC%2CcAAA%3B%3B%3BAAKD%2CIAAI%2CKAAM%2CKAAI%3BAACd%2CIAAI%2CKAAM%2CKAAI%3BCAEb%3B%3B%3BAAOD%2CIAAI%2CKAAM%2CGAAE%2CMAAO%3BAACnB%2CIAAI%2CKAAM%2CGAAE%2CMAAO%3BCAElB%3BCACA%3BCACA%3B%3B%3BAAID%2CEAAE%3BCAAW%3BCAAc%3B%3B%3BAAI3B%2CIAAI%2CKAAM%2CMAAK%2CKAAM%2CGAAE%2COAAQ%3BCAE9B%3B%3B%3BAAKD%2CIAAI%2CKAAM%2CMAAK%2CKAAM%2CGAAE%2COAAQ%2CGAAE%3BCAEhC%3BCACA%3BCACA%2C6BAAA%3BCACA%3B%3B%3BAAID%2CCAAC%3BCAEA%3BCACA%3B%3B%3BAAID%2CEAAE%3BCAED%2C0BAAA%3BCACA%2C2BAAA%3BCACA%3BCACA%3BCACA%3B%3B%3BAAID%2CKAAK%3BCAEJ%2CmBAAA%3B%3BAAKD%2CGAAG%2CMAAO%2CMAAK%3BAACf%2CGAAG%2CMAAO%2CMAAK%3BCAEd%2CyBAAA%3B%3B%3BAAID%2CQAAQ%3BAACR%2CQAAQ%3BCAEN%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3B%3B%3BAAID%2CQAAQ%3BCAEN%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3BCACA%3BCACA%2CyBAAA%3B%3B%3BAAQD%2CEAAG%2CGAAE%3BCAEJ%3B%3BAAGD%2CEAAE%2CSAAU%2CGAAE%3B%3B%3B%3BCAKb%3B%3B%3BAAKD%2CEAAE%3BCAED%3BCACA%3B%3BAAGD%2CGAAG%2CKAAM%3BCAER%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACvG%2CaAAa%2CcAAc%2C4BAD3B%3BCAEA%3BCACA%3B%3BAAED%2CGAAG%2CKAAM%3BCAEP%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACxG%2CaAAa%2CcAAc%2C4BAD1B%3BCAED%3B%3B%3BAAOD%2CEAAE%3BCAED%3BCACA%3BCACA%3B%3BAAED%2CKAAK%3BCAEJ%3BCACA%2CiBAAA%3BCACA%3B%3BAAED%2CKAAK%2COAAQ%3BCAEZ%3BCACA%3BCACA%2CgCAAA%3BCACA%3BCACA%3B%3BAAOD%2CKAAK%2COAAQ%2CGAAE%3BCAEd%3BCACA%3B%3B%3BAAMD%2CKAAK%3BCAEJ%3BCACA%3BCACA%3B%3BAAED%2CKAAK%2CSAAU%3BCAEd%2CkBAAA%3B%3BAAID%3BAACA%3BCAEC%3B%3BAAGD%3BCACI%3B%3BAAGJ%3BCACI%3B%3BAAIJ%2CGAAG%3BCAEF%3BCACA%3B%3BAAKD%2CIAAI%3BCAEH%3BCACA%2CyBAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCAEA%2CuCAAA%3BCACG%2CoCAAA%3BCACA%2C%2BBAAA%3B%3B%3BAAUJ%2CEAAE%3BAACF%2CEAAE%2CKAAM%3BCAEP%3BCACA%2CsDAAA%3BCACA%3BCAAW%3B%3BAAGZ%2CEAAE%2CKAAM%3BCAEP%3B%3BAAKD%2CEAAE%2CKAAM%2CIAAG%3BCAEV%3BCACA%3BCACA%3BCACA%3B%3BAAED%2CEAAE%2CKAAM%2CIAAG%3BAACX%2CEAAE%2CKAAM%2CIAAG%3BCAEV%3BCACA%3BCACA%3B%3BAAGD%2CEAAE%2CKAAM%2CIAAI%3BCAEX%3B%3BAAGD%2CEAAE%2CKAAM%3BCACP%3BCAAW%2CcAAA%3BCACX%3BCACA%2CuDAAA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CEAAE%2CKAAM%2CGAAE%3BAACV%2CEAAE%2CKAAM%2CGAAE%3BCAET%2C2DAAA%3B%3BAAGD%2CGAAG%2CKAAK%3BCAEP%2CwDAAA%3B%3BAAED%2CGAAG%2CKAAK%3BCAEP%2CuDAAA%3B%3BAAID%2CIAAO%3BCAEN%3B%3BAAID%2CGAAG%2CUAAW%3BCAEb%3B%3B%3BAAQD%3BCAEC%2CwBAAA%3BCACA%3B%3BAAED%3BCAEC%2CuBAAA%3BCACA%3B%3BAAGD%2CGAAG%2CMAAS%2CMAAG%2COAAU%2CMAAG%3BCAE3B%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%3BCAEF%3B%3BAAED%2CGAAG%3BCAEF%3B%3BAAGD%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3BCACA%3BCACA%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CGAAE%3BCAEtB%3B%3BCACA%3BCACA%3B%3BCACA%3B%3BAAGD%2CGAAG%3BCAEF%3BCACA%3BCACA%3B%3BAAID%2CEAAE%2CMAAO%2CIAAG%3BCAEX%3BCACA%3BCACA%3BCACA%3B%3BAAED%2CEAAE%2CMAAS%2CKAAK%3BAAChB%2CEAAE%2CMAAS%2CKAAK%3BCAEf%3B%3BAAGD%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CYAAe%2CMAAG%3BCAEpB%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%2COAAU%2CKAAE%3BCAExB%3BCACA%3B%3BAAKD%2CGAAG%3BCAEF%3B%3BAAGD%2CGAAG%2CMAAO%2CGAAE%2CMAAO%3BCAElB%3BCACA%3BCAEA%3BCAEA%2C%2BBAAA%3BCAEA%3B%3BCACG%3B%3BCACA%3B%3BCAEH%3B%3BCACG%3B%3BCACA%3B%3BCACA%3BCAEH%3BCACA%3BCACA%3B%3BAAMD%2CGAAG%3BCACF%3BCACA%3B%3BAAGD%2CGAAG%2CMAAO%2CIAAG%2CQAAS%3BCAErB%3BCACA%3B%3BAAID%2CKAAM%2CGAAE%2CSAAY%3BCAEhB%3BCACA%3B%3BAAIJ%2CKAAM%2CGAAE%2CKAAQ%3BCACZ%3B%3BAAKJ%2CEAAE%2CKAAM%3BCAER%3B%3B%3BAAMA%2CGAAG%2CMAAO%2CIAAG%3BCAEZ%3B%3BAAID%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2C0DAAA%3BCACA%2C4BAAA%3B%3BAAED%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2C4DAAA%3BCACA%2C4BAAA%3B%3BAAED%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2CuDAAA%3BCACA%2C4BAAA%3B%3BAAED%2CGAAG%2CMAAO%2CIAAG%2COAAQ%2CIAAG%3BAACxB%2CGAAG%2CQAAQ%3BCAEV%2CyDAAA%3BCACA%2C4BAAA%3B%3BAAGD%2CGAAG%2CMAAO%2CIAAG%2COAAQ%3BAACrB%2CGAAG%3BCAEF%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2C2BAAA%3BCAEA%3BCACG%3BCACA%3BCACA%3B%3B%3BAAIJ%2CGAAG%3BAACH%2CGAAG%3BCAEF%2CoDAAA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAKD%3BCACC%3BCACA%3B%3BAAFD%2CUAGC%2CIAAG%2CMAAM%3BCACR%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%3BCACA%3BCACA%3B%3BAAZF%2CUAeC%2CIAAG%2CMAAM%2CWAAc%2CMAAG%3BCACzB%3BCACA%3B%3BAAjBF%2CUAoBC%2CIAAG%3BCACF%2CyBAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAA3BF%2CUA8BC%2CIAAG%3BAA9BJ%2CUA8BiB%2CIAAG%3BAA9BpB%2CUA8B6B%2CIAAG%3BCAC9B%3BCACA%3BCACA%3B%3BAAjCF%2CUAoCC%2CIAAG%2CMAAS%2CMAAG%3BCACf%3B%3BAAID%3BCAEC%3B%3BAAED%3BCAEC%3B%3BAAID%3BCAEC%3B%3B%3B%3B%3BAAKD%2CGAAG%3BCACF%3B%3BAAED%2CGAAG%2CQAAS%2CIAAG%3BCAEd%2C0BAAA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CQAAS%2CIAAG%2COAAU%2CMAAG%3BCAE3B%3BCACA%3BCACA%3B%3BAAED%2CGAAG%2CQAAS%2CKAAI%2CsBAAuB%2CIAAG%3BCAEzC%3B%3BAAGD%2CGAAG%2CQAAW%3BCAEb%3B%3BAAGD%2CKAAK%3BCAEJ%2CyBAAA%3BCACA%2CcAAA%3BCACA%3BCACA%3BCACA%3B%3BCACG%3B%3BCACA%3B%3BCACA%3BCACA%3BCACH%2CwCAAA%3BCACG%2CqCAAA%3BCACA%2CqCAAA%3BCACA%3B%3BAAIJ%2CKAAK%2COAAO%3BCAEX%3B%3B%3B%3BAAKD%2CGAAG%2CMAAS%2CMAAG%3BAACf%2CGAAG%2CMAAS%2CMAAG%3BCAEd%3B%3BAAED%2CGAAG%2CMAAM%2CMAAS%2CMAAG%3BAACrB%2CGAAG%2CMAAM%2CMAAS%2CMAAG%3BCAEpB%3B%3BAAID%2CGAAG%3BCACF%3BCACA%3B%3BAAED%2CGAAG%2CUAAa%2CMAAG%3BCAClB%3BCACA%3BCACA%3BCACA%3BCACG%3B%3BAAGJ%2CGAAG%2CUAAa%2CMAAG%2CSAAS%3BCAE3B%2C0BAAA%3BCACA%3B%3BCACG%3B%3BCACA%3B%3BCACA%3BCACA%3BCACA%3B%3B%3BAAmBJ%2CwBAV2C%3BCAE1C%3BEACA%3BEACA%3B%3B%3B%3BAAuED%2CkCA%5C%2FDoD%3BCAEnD%3BEACC%3BEACA%3BEACA%3B%3BCAED%3BCACA%3BEACC%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BCAGD%2CUAAW%2CIAAG%3BEAEb%3B%3BCAGD%2CEAAE%2COAAQ%2CIAAG%3BEAEZ%3B%3BCAGD%2CUAAW%2CIAAG%3BEAEb%3BEACA%3BEACA%3BEACA%3BEACA%3BEACA%3B%3BCAED%2CUAAW%2CIAAG%2CMAAS%2CMAAG%3BEAEzB%3BEACA%3B%3B%3BAAuBF%2CEAAE%2CQAAY%3BCAEb%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAAED%2CEAAE%2CQAAY%2CKAAE%3BCAEf%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%2CyBAAA%3BCACA%2CcAAA%3B%3BAAGD%2CEAAE%3BCACD%3B%3BAAID%2CKAAM%2CGAAE%3BCACP%3BCACA%3B%3BAAED%2CKAAM%2CGAAE%3BCACP%3BCACA%3B%3BAAED%2CKAAM%2CGAAE%3BCACP%3BCACA%3B%3B%3BAAMD%2CGAAG%3BCAEF%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%3BCACA%2CyBAAA%3BCACA%3B%3B%3B%3BAAcD%2CGAAG%2CMAAM%2CKAAM%2CKAAK%2CIAAG%3BCAEtB%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CKAAM%2CKAAK%2CIAAG%3BCAEtB%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CKAAM%2CKAAK%2CIAAG%3BCAEtB%3BCACA%3BCACA%3BCACA%3B%3B%3BAAID%2CGAAG%2CMAAM%2CMAAO%2CKAAK%2CIAAG%3BCAEvB%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CMAAO%2CKAAK%2CIAAG%3BCAEvB%3BCACA%3BCACA%3BCACA%3B%3BAAGD%2CGAAG%2CMAAM%2CMAAO%2CKAAK%2CIAAG%3BCAEvB%3BCACA%3BCACA%3BCACA%3B%3BAAKD%2CIAAK%2CIAAG%2CMAAS%3BAACjB%2CIAAK%2CIAAG%2CMAAS%2CMAAG%3BCAEnB%2CgBAAA%3B%3BAAGD%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BAACpB%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BAACpB%2CIAAK%2CIAAG%2CMAAO%3BAACf%2CIAAK%2CIAAG%2CMAAO%3BCAEd%3B%3BAAED%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BAACpB%2CIAAK%2CIAAG%2CMAAO%2CMAAK%3BCAEnB%3B%3BAAGD%3BCAEC%3B%3BAAGD%2CKAAK%2CeAAkB%3BAACvB%2CKAAK%2CYAAe%3BCAEnB%3B%3BAAGD%2CKAAM%2CIAAG%3BCAER%3B%3BAAGD%2CGAAG%2CYAAe%2CMAAG%3BCAEpB%3B%3BAAGD%2CGAAG%2COAAU%2CMAAG%3BCAEf%3B%3BAAGD%2CGAAG%2CYAAe%3BAAClB%2CGAAG%2CYAAe%3BAAClB%2CGAAG%2CYAAe%3BCAEjB%3BCACA%3B%3B%3BAAMD%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CKAAI%3BCAElB%3B%3B%3BAAMD%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CMAAK%3BAACpB%2CQAAW%2CMAAI%2CKAAI%3BAACnB%2CQAAW%2CMAAI%2CKAAI%3BAACnB%2CQAAW%2CMAAI%2CKAAI%3BCAElB%3BCACA%3B%3BAAID%2CGAAG%3BCAEF%3B%3B%3B%3BAAUD%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%2CyBAAA%3BCACA%3BCACA%2C%2BBAAA%3BCACA%3BCACA%3B%3B%3B%3BAASD%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%3B%3B%3BAAID%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%3B%3B%3BAAID%2CEAAE%2CKAAQ%2CKAAE%3BCAEX%3B%3BAAGD%2CEAAE%3BCAED%3B%3B%3BAAKD%2CGAAG%2CQAAS%2CEAAC%3BAACb%2CGAAG%2CQAAS%2CEAAC%3BCAEZ%2CuCAAA%3BCACG%2CoCAAA%3BCACA%2C%2BBAAA%3B%3B%3B%3BAAQJ%3BCAEC%2CyBAAA%3B%3B%3BAAID%2CGAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%3BAACvB%2CGAAG%2CMAAO%2CGAAE%2CMAAS%2CKAAE%2COAAO%3BCAE7B%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3BCACA%2CcAAA%3B%3BAAID%2CGAAG%3BCAEF%2CgDAAgD%2CYAAY%2CaAAa%2CUAAU%2CUAAU%2CUAAU%2CaACvG%2CaAAa%2CcAAc%2C4BAD3B%3BCAEA%3B%3B%3BAAKD%2CGAAG%2CMAAO%2CGAAE%2CMAAO%3B%3B%3B%3B%3BAAQnB%2CGAAG%2CMAAS%2CMAAG%3BCAEd%2CyBAAA%3B%3BAAGD%2CGAAG%2CMAAS%2CMAAG%3BCAEd%2CyBAAA%3BCACA%2CkBAAkB%2CwCAAlB%3B%3BAAMD%2CGAAG%2CMAAO%2CGAAE%2CMAAO%2CGAAE%3BCACpB%2CyBAAA%3B%3B%3B%3B%3BAAQD%2CEAAE%2CKAAM%2CGAAE%3BAACV%2CEAAE%2CKAAM%2CGAAE%3BCAET%2CyBAAA%3B%3BAAKD%2CGAAG%2CQAAS%3BAACZ%2CGAAG%3BCAEF%2CyBAAA%3BCACA%2CcAAA%3BCACA%3BCACA%3B%3BAAOD%2CGAAG%2COAAQ%2CIAAG%2CWAAc%2CIAAC%3BAAC7B%2CGAAG%2COAAQ%2CIAAG%2COAAQ%2CEAAC%2CKAAK%3BCAE3B%3B%3BAAGD%2CGAAG%3BCACF%3B%3B%3BAAKD%3BCACC%22%7D */+ \ No newline at end of file diff --git a/modules/cms-ui/themes/default/style/openrat-ui.less b/modules/cms-ui/themes/default/style/openrat-ui.less @@ -15,37 +15,6 @@ div.panel > div.title { font-weight:bold; } - -/* H e a d e r */ -#header -{ - width:100%; - height:27px; - overflow:hidden; - padding:5px; - margin:0px; - margin-bottom:3px; - float:left; -} - -#header div.projects, -#header div.menu, -#header div.title -{ - float:left; - margin-right:10px; - margin-left :0px; -} - -#header div.user, -#header div.search, -#header div.history -{ - float:right; - margin-right:10px; - margin-left :10px; -} - /* div#tree @@ -190,17 +159,6 @@ div.dropdown > div.divide margin-bottom: 5px; } -#header > div.menu { - overflow: hidden; -} - -/* Dropdown anzeigen */ -#header.open div.menu.open div.dropdown, -div.panel div:hover > div.dropdown, -div.panel-icon:hover > div.dropdown -{ - display:block; -} @@ -444,11 +402,6 @@ div.logo p font-size:13px; } -#header div.search input -{ - margin:0px; - padding:0px; -} @@ -1052,9 +1005,6 @@ div#shortcuts > div.shortcut:HOVER { -body > #header { - display:block; -} ul#history > li { @@ -1110,52 +1060,6 @@ div#filler } -/* Pfeile */ -#header > div > div.arrow-down -{ - display: inline; - width:0; - height:0; - margin:6; - padding:0px; - border-right : 6px solid @color-overridden-by-theme; - border-left : 6px solid @color-overridden-by-theme; - border-top : 6px solid @color-overridden-by-theme; - border-bottom: 4px solid @color-overridden-by-theme; - margin-top: 10px; -font-size: 0; -} - - - -/* D r o p d o w n - M e n u e s */ -div.dropdown -{ - font-style:normal; - font-weight:normal; - text-decoration:none; -} - -div.toolbar-icon -{ - padding:2px; - margin-left:5px; - float: left; -} - -div.headermenu -{ - margin:5px; - z-index: 1; - position: relative; - right: 0; - top: 0; -} -div.headermenu > div.toolbar-icon -{ - float:right; -} - /* Voreingestellte Schriftart */ body @@ -1368,27 +1272,6 @@ div.panel ul.views > li.active:hover color: @color-overridden-by-theme; } -/* Titelleiste-Hintergrund */ -#header -{ - background-color: @color-overridden-by-theme; - background-image: linear-gradient(@color-overridden-by-theme 85%, @color-overridden-by-theme 100%); - color: @color-overridden-by-theme; -} - -/* Titelleiste */ -#header div.toolbar-icon > a -{ - color: @color-overridden-by-theme; -} - -#header, /* Titelleite */ -ul.views > li.action /* Tabreiter */ -{ - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", - "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; - font-size:13px; -} div.content { diff --git a/modules/cms-ui/themes/default/style/openrat-ui.min.css b/modules/cms-ui/themes/default/style/openrat-ui.min.css @@ -1 +1 @@ -iframe{width: 100%;height: 500px;display: block}div.breadcrumb,div.breadcrumb a,div.panel > div.title{font-weight: bold}#header{width: 100%;height: 27px;overflow: hidden;padding: 5px;margin: 0px;margin-bottom: 3px;float: left}#header div.projects,#header div.menu,#header div.title{float: left;margin-right: 10px;margin-left: 0px}#header div.user,#header div.search,#header div.history{float: right;margin-right: 10px;margin-left: 10px}div#noticebar{display: block;position: fixed;bottom: 40px;right: 40px;width: 250px;z-index: 113}div#noticebar div.notice{border: 2px solid #000;padding: 5px;margin: 5px;display: none}div#noticebar div.notice.error div.text{font-weight: bold}div#noticebar div.log{font-family: monospace}html,body{height: 100%}div.panel div.title{height: 20px}div.panel div.status{height: 35px}div.panel > div.content{xxoverflow-x: auto}ul#history > li,div.content a.action,div.content a.help,div.filler div.headermenu > a.entry,div.filler div.header a.back.button{margin: 9px;padding-top: 4px;padding-bottom: 4px;padding-left: 7px;padding-right: 7px;border: 1px solid;font-style: normal;font-weight: normal;text-decoration: none}ul#history > li.active{font-weight: bold}a.help{float: right}a.help{cursor: help}a.action:hover,a.help:hover,div.noaction:hover{text-decoration: none}a.action:active,a.help:active,div.noaction:active,input.ok:active{border-color: red}div.dropdown{z-index: 2;display: none;position: absolute;padding: 5px 0px}div.dropdownalignright{right: 0}div.dropdown > a{display: block}div.dropdown div.entry{padding: 2px 5px}div.dropdown > div.divide{height: 1px;width: 100%;margin-top: 5px;margin-bottom: 5px}#header > div.menu{overflow: hidden}#header.open div.menu.open div.dropdown,div.panel div:hover > div.dropdown,div.panel-icon:hover > div.dropdown{display: block}div.onrowvisible{visibility: hidden;display: inline}td:hover > div.onrowvisible{visibility: visible}.preview h1{font-size: 138.5%}.preview h2{font-size: 123.1%}.preview h3{font-size: 108%}.preview h1,.preview h2,.preview h3{margin: 1em 0}.preview h1,.preview h2,.preview h3,.preview h4,.preview h5,.preview h6,.preview strong{font-weight: bold}.preview abbr,.preview acronym{border-bottom: 1px dotted #000;cursor: help}.preview em{font-style: italic}.preview ol,.preview ul,.preview dl{margin-left: 2em}.preview ol li{list-style: decimal outside}.preview ul li{list-style: disc outside}.preview a:link,.preview a:visited,.preview a:active,.preview a:hover{text-decoration: underline}a:link,a:visited{font-weight: normal;text-decoration: none}a:active,a:hover{font-weight: normal;text-decoration: none}body.menu tr.menu td table tr td,body.main tr.menu td table tr td{padding: 4px;padding-right: 6px;padding-left: 6px;width: 30px;white-space: nowrap}body.menu tr.menu table{width: 50px}body.menu tr.menu td table tr td.noaction,body.main tr.menu td table tr td.noaction{color: #000}img[align=left],img[align=right]{padding-right: 1px;padding-left: 1px}pre{font-family: Courier;font-size: 13px}small{color: #000}body.menu span.accesskey,body.main span.accesskey{text-decoration: underline}body.menu tr.title td,body.main tr.title td{vertical-align: middle;padding: 4px;height: 30px}td.message{padding: 10px;font-weight: bold}body.main table.main td.window td{padding: 4px}body.main table.main td.window td.act{padding: 15px;margin-top: 20px;border-top: 1px solid #000;text-align: right}a.copyright{font-size: 0.7em;text-decoration: none}td.motd{border-left: 3px solid #f00;border-right: 3px solid #f00;font-weight: bold;padding: 10px;margin: 10px}table.main{x-border: 3px solid}div.panel input.checkbox,div.panel input.radio{border: 1px solid #000}textarea.desc,textarea.description{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}textarea.longtext{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px;width: 100%;border: 1px solid #000}tr td.help{font-style: italic}tr.headline td.help{font-style: normal}td.logo{padding: 10px;margin: 0px}div.logo h2{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-weight: normal;font-size: 24px}div.logo p{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}#header div.search input{margin: 0px;padding: 0px}td.notice{margin: 0px;padding: 5%;text-align: center}table.notice{width: 100%;border: 1px solid;border-spacing: 0px}table.notice th{padding: 2px;white-space: nowrap;border-bottom: 1px solid #000;font-weight: normal;text-align: left}table.notice tr.warning{margin: 0px;padding: 0px}table.calendar{table-layout: fixed;border-collapse: collapse;text-align: center}table.calendar td{border: 1px dotted}label,.clickable{cursor: pointer}body{cursor: default}input{xcursor: text}div.menu{float: none;xclear: left}form.xlogin{xbackground-color: #E0E0D5;border: 2px solid #000;position: absolute;z-index: 999;top: 5%;left: 5%;width: 80%;margin: 5%;padding: 10%;opacity: 1;-webkit-box-shadow: 3px 2px 5px #000;-moz-box-shadow: 3px 2px 5px #000;box-shadow: 3px 2px 5px #000}ul.tree,ul.tree ul{list-style-type: none;background: url(__IMAGE_PATH__/tree_line.gif) repeat-y;margin: 0;padding: 0}ul.tree ul{margin-left: 18px}ul.tree div.tree{width: 18px;min-width: 18px;height: 18px;float: left}ul.tree div.tree,ul.tree div.entry{height: 18px;max-height: 18px;min-height: 18px}ul.tree div img{cfloat: left}ul.tree li{margin: 0;padding: 0 0px;line-height: 18px;background: url(__IMAGE_PATH__/tree_none.gif) no-repeat;xcolor: #369;font-weight: normal;white-space: nowrap}ul.tree li.last,ul.tree li:last-child{background: url(__IMAGE_PATH__/tree_none_end.gif) no-repeat}div.tree.open{background: url(__IMAGE_PATH__/tree_minus.png) no-repeat}div.tree.closed{background: url(__IMAGE_PATH__/tree_plus.png) no-repeat}body > div{display: none}div.structure em{font-style: italic}.drophover{border: 2px dotted #008000;cursor: move}.dropactive{border: 1px dotted #00f;cursor: move}div.panel > div.header > div.panel-icon{xposition: static;xright: -30px;top: 3px}div.backward_link{float: left}div.forward_link{float: right}div.panel > div.header{padding: 0px;width: 100%;height: 25px}div.panel div.header ul.views{text-align: left;list-style-type: none;overflow: hidden;white-space: nowrap}img.icon{padding: 4px;width: 16px;height: 16px}ul.views div.tabname{overflow: hidden;white-space: nowrap;padding: 4px;vertical-align: middle}ul.views > li > img,ul.views > li > div{float: left}div.panel div.header div.panel-icon,div.inputholder > div.icon{float: right}div.panel div.header > ul.views{float: left;height: 25px}div.content{clear: both}div.panel ul.views li{vertical-align: middle;padding: 0px;cursor: pointer;border-right: 1px solid #000;-moz-border-radius-topleft: 5px;-webkit-border-radius-topleft: 5px;-khtml-border-top-radius-topleft: 5px;-moz-border-radius-topright: 5px;-webkit-border-radius-topright: 5px;-khtml-border-top-radius-topright: 5px;border-top-right-radius: 5px;display: inline;white-space: nowrap;float: left}div.panel{margin: 0px;padding: 0px}div.panel div.content table{overflow: auto;border: 2px}table tr.headline > td{padding: 3px;font-weight: bold}table tr.data > td{padding: 3px}ul.tree div{cursor: pointer}div.panel div.status{padding: 10px}div.panel div.status div.error,div.message.error{background: url(__IMAGE_PATH__/notice_error.png) no-repeat;background-position: 5px 7px}div.panel div.status div.warn,div.message.warn{background: url(__IMAGE_PATH__/notice_warning.png) no-repeat;background-position: 5px 7px}div.panel div.status div.ok,div.message.ok{background: url(__IMAGE_PATH__/notice_ok.png) no-repeat;background-position: 5px 7px}div.panel div.status div.info,div.message.info{background: url(__IMAGE_PATH__/notice_info.png) no-repeat;background-position: 5px 7px}div.panel div.status div,div.message{border: 1px solid #000;padding: 5px 0px 5px 25px;margin: 10px 10px 20px 10px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;border-radius: 5px}div.loader,div.progress{background: url(__IMAGE_PATH__/loader.gif) no-repeat;background-position: center;opacity: 0.5;cursor: wait;min-height: 50px}#workbench{width: 100%;xxpadding: 3px}#workbench div.panel.fullscreen{display: block;z-index: 109;position: fixed;top: 0;left: 0;background-color: #000;margin: 0px;width: 100% !important;height: 100% !important}#workbench div.panel.fullscreen > div.content{width: 100% !important;height: 100% !important}#workbench div.panel{border: 1px solid #000;margin: 0px;padding: 0px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;border-radius: 5px}#workbench div.container,#workbench div.panel,#workbench div.divider{display: inline;float: left;margin: 0px}#workbench div.panel > div.content{overflow: auto}.invisible{visibility: hidden}.visible{visibility: visible}body{overflow: hidden}div.panel{position: relative}div.content div.bottom{xbackground-color: #000;height: 55px;width: 100%;position: absolute;padding-right: 40px;bottom: 0px;right: 0px;xvisibility: hidden}div.content div.bottom > div.command{xvisibility: visible;float: right;z-index: 20}div.content form[data-autosave='true'] div.command{display: none}div.content > form{padding-bottom: 45px}input.submit{background-color: #000;color: #000;padding: 7px;border: 0px;-moz-border-radius: 7px;-webkit-border-radius: 7px;-khtml-border-radius: 7px;border-radius: 7px;margin-left: 20px;-webkit-box-shadow: 0px 0px 15px #000;-moz-box-shadow: 0px 0px 15px #000;box-shadow: 0px 0px 15px 10px #000;cursor: pointer}input.submit.ok{font-weight: bold}div.views > div.backward_link,div.views > div.forward_link{visibility: hidden}div.views:HOVER > div.backward_link,div.views:HOVER > div.forward_link{visibility: visible}div#shortcuts{height: 24px;margin-left: 10px}div#shortcuts > div.shortcut{width: 24px;height: 24px;margin-left: 5px;float: left;opacity: 0.8}div#shortcuts > div.shortcut:HOVER{xborder: 1px solid #000;x-moz-border-radius: 2px;x-webkit-border-radius: 2px;x-khtml-border-radius: 2px;opacity: 1.0;position: relative;bottom: 3px}@media only screen and (max-width: 1023px){body{font-size: 0.8em;line-height: 1.5em}}@media handheld, only screen and (max-width: 767px){body{font-size: 16px;-webkit-text-size-adjust: none;overflow: visible}#header,#workbench{width: 100%;height: auto;min-width: 0;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px}#workbench div.panel{width: auto !important}li.action div.tabname{width: auto !important}#workbench div.panel{width: auto;float: none;margin-left: 0px;margin-right: 0px;padding-left: 20px;padding-right: 20px}#workbench div.panel > div.content{overflow: auto;height: auto !important}}body > #header{display: block}ul#history > li{xdisplay: inline;margin: 5px;padding: 5px;border: 1px solid #000;background-color: #000;color: #000}ul#history > li.active{xdisplay: inline;margin: 5px;padding: 5px;border: 1px solid #000;background-color: #000;color: #000}ul#history{display: none}table td.readonly{font-style: italic;font-weight: normal}table td.default{font-style: normal;font-weight: normal}table td.changed{font-style: normal;font-weight: bold}div#filler{xxxxdisplay: block;position: absolute;z-index: 100;top: 0;left: 0;height: 100%;width: 100%;background-color: #000;opacity: 0.5}#header > div > div.arrow-down{display: inline;width: 0;height: 0;margin: 6;padding: 0px;border-right: 6px solid #000;border-left: 6px solid #000;border-top: 6px solid #000;border-bottom: 4px solid #000;margin-top: 10px;font-size: 0}div.dropdown{font-style: normal;font-weight: normal;text-decoration: none}div.toolbar-icon{padding: 2px;margin-left: 5px;float: left}div.headermenu{margin: 5px;z-index: 1;position: relative;right: 0;top: 0}div.headermenu > div.toolbar-icon{float: right}div.panel.wide form div.line{clear: left;margin-top: 10px}div.panel.wide form div.label{display: inline-block;width: 30%;vertical-align: top;text-align: right}div.panel.wide form div.input{display: inline-block;width: 60%;vertical-align: top;text-align: left}div.panel.small form div.line{clear: left;padding: 10px}div.panel.small form div.label{display: block;width: 100%;vertical-align: top;text-align: left}div.panel.small form div.input{display: block;width: 100%;vertical-align: top;text-align: left}form div.label > label,form div.input > div.intputholder{padding: 0px 5px}form div.input input[type=text],form div.input input[type=password],form div.input textarea,form div.input select{width: 100%}form div.input input[type=checkbox],form div.input input[type=radio]{vertical-align: top}label{display: inline-block}input[type=checkbox] + label,input[type=radio] + label{width: 80%}label div.description{font-size: 0.75em}div.inputholder > div.dropdown{width: 70%}div.search > div.inputholder{padding-top: 1px}div.inputholder > input,div.inputholder > textarea,div.inputholder > select{padding: 2px;margin: 0px}fieldset > div input.name,fieldset > div span.name{font-weight: bold}fieldset > div input.filename,fieldset > div input.extension,fieldset > div input.ansidate,fieldset > div span.filename,fieldset > div span.extension,fieldset > div span.ansidate{font-family: Courier;font-size: 1em}div#tree{overflow: visible}tr.diff > td.line{background-color: #000;padding-right: 2px;border-right: 3px solid #000;text-align: right;margin-right: 2px}tr.diff > td.old{background-color: red}tr.diff > td.new{background-color: green}tr.diff > td.notequal{background-color: yellow}dl.notice{padding: 15px}div.content a.action,div.content a.help{-webkit-box-shadow: 3px 2px 5px #000;-moz-box-shadow: 3px 2px 5px #000;box-shadow: 3px 2px 5px #000}body{background-color: #000}div.panel ul.views > li.active,div.panel ul.views > li.active:hover{background-color: #000;background-image: linear-gradient(#000 0%, #000 15%);color: #000}#header{background-color: #000;background-image: linear-gradient(#000 85%, #000 100%);color: #000}#header div.toolbar-icon > a{color: #000}#header,ul.views > li.action{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}div.content{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}div.panel > div.content{background-color: #000}div.panel > div.header{background-color: #000;background-image: linear-gradient(#000 0%, #000 85%)}div.panel ul.views li:hover{background-color: #000}ul.tree li.last,ul.tree li:last-child{background-color: #000}div.content pre,div.dropdown{background-color: #000;color: #000;min-width: 150px;max-width: 450px}div.filler div.headermenu > a.entry,div.filler div.header a.back.button{font-size: 0.8em}img.image-icon{visibility: hidden}.CodeMirror{height: auto}- \ No newline at end of file +iframe{width: 100%;height: 500px;display: block}div.breadcrumb,div.breadcrumb a,div.panel > div.title{font-weight: bold}div#noticebar{display: block;position: fixed;bottom: 40px;right: 40px;width: 250px;z-index: 113}div#noticebar div.notice{border: 2px solid #000;padding: 5px;margin: 5px;display: none}div#noticebar div.notice.error div.text{font-weight: bold}div#noticebar div.log{font-family: monospace}html,body{height: 100%}div.panel div.title{height: 20px}div.panel div.status{height: 35px}div.panel > div.content{xxoverflow-x: auto}ul#history > li,div.content a.action,div.content a.help,div.filler div.headermenu > a.entry,div.filler div.header a.back.button{margin: 9px;padding-top: 4px;padding-bottom: 4px;padding-left: 7px;padding-right: 7px;border: 1px solid;font-style: normal;font-weight: normal;text-decoration: none}ul#history > li.active{font-weight: bold}a.help{float: right}a.help{cursor: help}a.action:hover,a.help:hover,div.noaction:hover{text-decoration: none}a.action:active,a.help:active,div.noaction:active,input.ok:active{border-color: red}div.dropdown{z-index: 2;display: none;position: absolute;padding: 5px 0px}div.dropdownalignright{right: 0}div.dropdown > a{display: block}div.dropdown div.entry{padding: 2px 5px}div.dropdown > div.divide{height: 1px;width: 100%;margin-top: 5px;margin-bottom: 5px}div.onrowvisible{visibility: hidden;display: inline}td:hover > div.onrowvisible{visibility: visible}.preview h1{font-size: 138.5%}.preview h2{font-size: 123.1%}.preview h3{font-size: 108%}.preview h1,.preview h2,.preview h3{margin: 1em 0}.preview h1,.preview h2,.preview h3,.preview h4,.preview h5,.preview h6,.preview strong{font-weight: bold}.preview abbr,.preview acronym{border-bottom: 1px dotted #000;cursor: help}.preview em{font-style: italic}.preview ol,.preview ul,.preview dl{margin-left: 2em}.preview ol li{list-style: decimal outside}.preview ul li{list-style: disc outside}.preview a:link,.preview a:visited,.preview a:active,.preview a:hover{text-decoration: underline}a:link,a:visited{font-weight: normal;text-decoration: none}a:active,a:hover{font-weight: normal;text-decoration: none}body.menu tr.menu td table tr td,body.main tr.menu td table tr td{padding: 4px;padding-right: 6px;padding-left: 6px;width: 30px;white-space: nowrap}body.menu tr.menu table{width: 50px}body.menu tr.menu td table tr td.noaction,body.main tr.menu td table tr td.noaction{color: #000}img[align=left],img[align=right]{padding-right: 1px;padding-left: 1px}pre{font-family: Courier;font-size: 13px}small{color: #000}body.menu span.accesskey,body.main span.accesskey{text-decoration: underline}body.menu tr.title td,body.main tr.title td{vertical-align: middle;padding: 4px;height: 30px}td.message{padding: 10px;font-weight: bold}body.main table.main td.window td{padding: 4px}body.main table.main td.window td.act{padding: 15px;margin-top: 20px;border-top: 1px solid #000;text-align: right}a.copyright{font-size: 0.7em;text-decoration: none}td.motd{border-left: 3px solid #f00;border-right: 3px solid #f00;font-weight: bold;padding: 10px;margin: 10px}table.main{x-border: 3px solid}div.panel input.checkbox,div.panel input.radio{border: 1px solid #000}textarea.desc,textarea.description{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}textarea.longtext{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px;width: 100%;border: 1px solid #000}tr td.help{font-style: italic}tr.headline td.help{font-style: normal}td.logo{padding: 10px;margin: 0px}div.logo h2{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-weight: normal;font-size: 24px}div.logo p{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}td.notice{margin: 0px;padding: 5%;text-align: center}table.notice{width: 100%;border: 1px solid;border-spacing: 0px}table.notice th{padding: 2px;white-space: nowrap;border-bottom: 1px solid #000;font-weight: normal;text-align: left}table.notice tr.warning{margin: 0px;padding: 0px}table.calendar{table-layout: fixed;border-collapse: collapse;text-align: center}table.calendar td{border: 1px dotted}label,.clickable{cursor: pointer}body{cursor: default}input{xcursor: text}div.menu{float: none;xclear: left}form.xlogin{xbackground-color: #E0E0D5;border: 2px solid #000;position: absolute;z-index: 999;top: 5%;left: 5%;width: 80%;margin: 5%;padding: 10%;opacity: 1;-webkit-box-shadow: 3px 2px 5px #000;-moz-box-shadow: 3px 2px 5px #000;box-shadow: 3px 2px 5px #000}ul.tree,ul.tree ul{list-style-type: none;background: url(__IMAGE_PATH__/tree_line.gif) repeat-y;margin: 0;padding: 0}ul.tree ul{margin-left: 18px}ul.tree div.tree{width: 18px;min-width: 18px;height: 18px;float: left}ul.tree div.tree,ul.tree div.entry{height: 18px;max-height: 18px;min-height: 18px}ul.tree div img{cfloat: left}ul.tree li{margin: 0;padding: 0 0px;line-height: 18px;background: url(__IMAGE_PATH__/tree_none.gif) no-repeat;xcolor: #369;font-weight: normal;white-space: nowrap}ul.tree li.last,ul.tree li:last-child{background: url(__IMAGE_PATH__/tree_none_end.gif) no-repeat}div.tree.open{background: url(__IMAGE_PATH__/tree_minus.png) no-repeat}div.tree.closed{background: url(__IMAGE_PATH__/tree_plus.png) no-repeat}body > div{display: none}div.structure em{font-style: italic}.drophover{border: 2px dotted #008000;cursor: move}.dropactive{border: 1px dotted #00f;cursor: move}div.panel > div.header > div.panel-icon{xposition: static;xright: -30px;top: 3px}div.backward_link{float: left}div.forward_link{float: right}div.panel > div.header{padding: 0px;width: 100%;height: 25px}div.panel div.header ul.views{text-align: left;list-style-type: none;overflow: hidden;white-space: nowrap}img.icon{padding: 4px;width: 16px;height: 16px}ul.views div.tabname{overflow: hidden;white-space: nowrap;padding: 4px;vertical-align: middle}ul.views > li > img,ul.views > li > div{float: left}div.panel div.header div.panel-icon,div.inputholder > div.icon{float: right}div.panel div.header > ul.views{float: left;height: 25px}div.content{clear: both}div.panel ul.views li{vertical-align: middle;padding: 0px;cursor: pointer;border-right: 1px solid #000;-moz-border-radius-topleft: 5px;-webkit-border-radius-topleft: 5px;-khtml-border-top-radius-topleft: 5px;-moz-border-radius-topright: 5px;-webkit-border-radius-topright: 5px;-khtml-border-top-radius-topright: 5px;border-top-right-radius: 5px;display: inline;white-space: nowrap;float: left}div.panel{margin: 0px;padding: 0px}div.panel div.content table{overflow: auto;border: 2px}table tr.headline > td{padding: 3px;font-weight: bold}table tr.data > td{padding: 3px}ul.tree div{cursor: pointer}div.panel div.status{padding: 10px}div.panel div.status div.error,div.message.error{background: url(__IMAGE_PATH__/notice_error.png) no-repeat;background-position: 5px 7px}div.panel div.status div.warn,div.message.warn{background: url(__IMAGE_PATH__/notice_warning.png) no-repeat;background-position: 5px 7px}div.panel div.status div.ok,div.message.ok{background: url(__IMAGE_PATH__/notice_ok.png) no-repeat;background-position: 5px 7px}div.panel div.status div.info,div.message.info{background: url(__IMAGE_PATH__/notice_info.png) no-repeat;background-position: 5px 7px}div.panel div.status div,div.message{border: 1px solid #000;padding: 5px 0px 5px 25px;margin: 10px 10px 20px 10px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;border-radius: 5px}div.loader,div.progress{background: url(__IMAGE_PATH__/loader.gif) no-repeat;background-position: center;opacity: 0.5;cursor: wait;min-height: 50px}#workbench{width: 100%;xxpadding: 3px}#workbench div.panel.fullscreen{display: block;z-index: 109;position: fixed;top: 0;left: 0;background-color: #000;margin: 0px;width: 100% !important;height: 100% !important}#workbench div.panel.fullscreen > div.content{width: 100% !important;height: 100% !important}#workbench div.panel{border: 1px solid #000;margin: 0px;padding: 0px;-moz-border-radius: 5px;-webkit-border-radius: 5px;-khtml-border-radius: 5px;border-radius: 5px}#workbench div.container,#workbench div.panel,#workbench div.divider{display: inline;float: left;margin: 0px}#workbench div.panel > div.content{overflow: auto}.invisible{visibility: hidden}.visible{visibility: visible}body{overflow: hidden}div.panel{position: relative}div.content div.bottom{xbackground-color: #000;height: 55px;width: 100%;position: absolute;padding-right: 40px;bottom: 0px;right: 0px;xvisibility: hidden}div.content div.bottom > div.command{xvisibility: visible;float: right;z-index: 20}div.content form[data-autosave='true'] div.command{display: none}div.content > form{padding-bottom: 45px}input.submit{background-color: #000;color: #000;padding: 7px;border: 0px;-moz-border-radius: 7px;-webkit-border-radius: 7px;-khtml-border-radius: 7px;border-radius: 7px;margin-left: 20px;-webkit-box-shadow: 0px 0px 15px #000;-moz-box-shadow: 0px 0px 15px #000;box-shadow: 0px 0px 15px 10px #000;cursor: pointer}input.submit.ok{font-weight: bold}div.views > div.backward_link,div.views > div.forward_link{visibility: hidden}div.views:HOVER > div.backward_link,div.views:HOVER > div.forward_link{visibility: visible}div#shortcuts{height: 24px;margin-left: 10px}div#shortcuts > div.shortcut{width: 24px;height: 24px;margin-left: 5px;float: left;opacity: 0.8}div#shortcuts > div.shortcut:HOVER{xborder: 1px solid #000;x-moz-border-radius: 2px;x-webkit-border-radius: 2px;x-khtml-border-radius: 2px;opacity: 1.0;position: relative;bottom: 3px}@media only screen and (max-width: 1023px){body{font-size: 0.8em;line-height: 1.5em}}@media handheld, only screen and (max-width: 767px){body{font-size: 16px;-webkit-text-size-adjust: none;overflow: visible}#header,#workbench{width: 100%;height: auto;min-width: 0;margin-left: 0px;margin-right: 0px;padding-left: 0px;padding-right: 0px}#workbench div.panel{width: auto !important}li.action div.tabname{width: auto !important}#workbench div.panel{width: auto;float: none;margin-left: 0px;margin-right: 0px;padding-left: 20px;padding-right: 20px}#workbench div.panel > div.content{overflow: auto;height: auto !important}}ul#history > li{xdisplay: inline;margin: 5px;padding: 5px;border: 1px solid #000;background-color: #000;color: #000}ul#history > li.active{xdisplay: inline;margin: 5px;padding: 5px;border: 1px solid #000;background-color: #000;color: #000}ul#history{display: none}table td.readonly{font-style: italic;font-weight: normal}table td.default{font-style: normal;font-weight: normal}table td.changed{font-style: normal;font-weight: bold}div#filler{xxxxdisplay: block;position: absolute;z-index: 100;top: 0;left: 0;height: 100%;width: 100%;background-color: #000;opacity: 0.5}div.panel.wide form div.line{clear: left;margin-top: 10px}div.panel.wide form div.label{display: inline-block;width: 30%;vertical-align: top;text-align: right}div.panel.wide form div.input{display: inline-block;width: 60%;vertical-align: top;text-align: left}div.panel.small form div.line{clear: left;padding: 10px}div.panel.small form div.label{display: block;width: 100%;vertical-align: top;text-align: left}div.panel.small form div.input{display: block;width: 100%;vertical-align: top;text-align: left}form div.label > label,form div.input > div.intputholder{padding: 0px 5px}form div.input input[type=text],form div.input input[type=password],form div.input textarea,form div.input select{width: 100%}form div.input input[type=checkbox],form div.input input[type=radio]{vertical-align: top}label{display: inline-block}input[type=checkbox] + label,input[type=radio] + label{width: 80%}label div.description{font-size: 0.75em}div.inputholder > div.dropdown{width: 70%}div.search > div.inputholder{padding-top: 1px}div.inputholder > input,div.inputholder > textarea,div.inputholder > select{padding: 2px;margin: 0px}fieldset > div input.name,fieldset > div span.name{font-weight: bold}fieldset > div input.filename,fieldset > div input.extension,fieldset > div input.ansidate,fieldset > div span.filename,fieldset > div span.extension,fieldset > div span.ansidate{font-family: Courier;font-size: 1em}div#tree{overflow: visible}tr.diff > td.line{background-color: #000;padding-right: 2px;border-right: 3px solid #000;text-align: right;margin-right: 2px}tr.diff > td.old{background-color: red}tr.diff > td.new{background-color: green}tr.diff > td.notequal{background-color: yellow}dl.notice{padding: 15px}div.content a.action,div.content a.help{-webkit-box-shadow: 3px 2px 5px #000;-moz-box-shadow: 3px 2px 5px #000;box-shadow: 3px 2px 5px #000}body{background-color: #000}div.panel ul.views > li.active,div.panel ul.views > li.active:hover{background-color: #000;background-image: linear-gradient(#000 0%, #000 15%);color: #000}div.content{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;font-size: 13px}div.panel > div.content{background-color: #000}div.panel > div.header{background-color: #000;background-image: linear-gradient(#000 0%, #000 85%)}div.panel ul.views li:hover{background-color: #000}ul.tree li.last,ul.tree li:last-child{background-color: #000}div.content pre,div.dropdown{background-color: #000;color: #000;min-width: 150px;max-width: 450px}div.filler div.headermenu > a.entry,div.filler div.header a.back.button{font-size: 0.8em}img.image-icon{visibility: hidden}.CodeMirror{height: auto}+ \ No newline at end of file diff --git a/modules/template-engine/components/html/form/Form.class.php b/modules/template-engine/components/html/form/Form.class.php @@ -43,7 +43,7 @@ class FormComponent extends Component echo ' name="' . $this->htmlvalue($this->name) . '"'; echo ' target="' . $this->htmlvalue($this->target) . '"'; - echo ' action="' . $this->htmlvalue($this->action) . '"'; + echo ' action="./"'; echo ' data-method="' . $this->htmlvalue($this->subaction) . '"'; echo ' data-action="' . $this->htmlvalue($this->action) . '"'; echo ' data-id="' . $this->htmlvalue($this->id) . '"'; @@ -70,7 +70,7 @@ class FormComponent extends Component echo '<div class="bottom">'; echo "<div class=\"command {$this->visible}\">"; - echo "<input type=\"button\" class=\"submit ok\" value=\"{$label}\" />"; + echo "<input type=\"submit\" class=\"submit ok\" value=\"{$label}\" />"; // Cancel-Button nicht anzeigen, wenn cancel==false. if ($this->cancel) diff --git a/modules/template-engine/components/html/link/link.js b/modules/template-engine/components/html/link/link.js @@ -9,7 +9,7 @@ $(document).on('orViewLoaded',function(event, data) { $(document).on('orHeaderLoaded',function(event, data) { // Links aktivieren... - $('#header .clickable').orLinkify(); + $('#title .clickable').orLinkify(); }); diff --git a/modules/template-engine/components/html/link/link.min.js b/modules/template-engine/components/html/link/link.min.js @@ -1 +1 @@ -;$(document).on('orViewLoaded',function(e,n){$(e.target).closest('div.panel').find('.clickable').orLinkify()});$(document).on('orHeaderLoaded',function(e,n){$('#header .clickable').orLinkify()});function submitLink(e,n){var o=jQuery.parseJSON(n),i='./api/';o.output='json';$.ajax({'type':'POST',url:i,data:o,success:function(n,o,i){$('div.panel div.status div.loader').html('&nbsp;');doResponse(n,o,e)}})};- \ No newline at end of file +;$(document).on('orViewLoaded',function(e,n){$(e.target).closest('div.panel').find('.clickable').orLinkify()});$(document).on('orHeaderLoaded',function(e,n){$('#title .clickable').orLinkify()});function submitLink(e,n){var i=jQuery.parseJSON(n),o='./api/';i.output='json';$.ajax({'type':'POST',url:o,data:i,success:function(n,i,o){$('div.panel div.status div.loader').html('&nbsp;');doResponse(n,i,e)}})};+ \ No newline at end of file