添加后台代理代码

This commit is contained in:
2026-03-15 01:27:05 +08:00
parent 11f9ac4dc1
commit ea08c9366a
5254 changed files with 721042 additions and 0 deletions

View File

@@ -0,0 +1,490 @@
var currentNodeUrl = '';
var allNodeUrls = [];
function openNextPage() {
var index = allNodeUrls.indexOf(currentNodeUrl) + 1;
if(index >= allNodeUrls.length) return;
var nextNodeUrl = allNodeUrls[index];
$('.sitemapPageLink[nodeUrl="' + nextNodeUrl + '"]').click();
}
function openPreviousPage() {
var index = allNodeUrls.indexOf(currentNodeUrl) - 1;
if(index < 0) return;
var nextNodeUrl = allNodeUrls[index];
$('.sitemapPageLink[nodeUrl="' + nextNodeUrl + '"]').click();
}
// use this to isolate the scope
(function() {
var SHOW_HIDE_ANIMATION_DURATION = 0;
var HIGHLIGHT_INTERACTIVE_VAR_NAME = 'hi';
var currentPageLoc = '';
var currentPlayerLoc = '';
var currentPageHashString = '';
$(window.document).ready(function() {
$axure.player.createPluginHost({
id: 'sitemapHost',
context: 'interface',
title: 'PAGES',
gid: 1
});
generateSitemap();
$('.sitemapPlusMinusLink').toggle(collapse_click, expand_click);
$('.sitemapPageLink').click(node_click);
$('#sitemapLinksContainer').hide();
$('#linksButton').click(links_click);
$('#adaptiveButton').click(adaptive_click);
$('#adaptiveViewsContainer').hide();
$('#highlightInteractiveButton').click(highlight_interactive);
$('#searchButton').click(search_click);
$('#searchBox').keyup(search_input_keyup);
$('.sitemapLinkField').click(function() { this.select(); });
$('input[value="withoutmap"]').click(withoutSitemapRadio_click);
$('input[value="withmap"]').click(withSitemapRadio_click);
$('#minimizeBox, #collapseBox, #footnotesBox, #highlightBox').change(sitemapUrlOptions_change);
$('#viewSelect').change(sitemapUrlViewSelect_change);
$(document).on('ContainerHeightChange', function() {
updateContainerHeight();
});
// bind to the page load
$axure.page.bind('load.sitemap', function() {
currentPageLoc = $axure.page.location.split("#")[0];
var decodedPageLoc = decodeURI(currentPageLoc);
currentNodeUrl = decodedPageLoc.substr(decodedPageLoc.lastIndexOf('/') ? decodedPageLoc.lastIndexOf('/') + 1 : 0);
currentPlayerLoc = $(location).attr('href').split("#")[0].split("?")[0];
currentPageHashString = '#p=' + currentNodeUrl.substr(0, currentNodeUrl.lastIndexOf('.'));
setVarInCurrentUrlHash('p', currentNodeUrl.substring(0, currentNodeUrl.lastIndexOf('.html')));
$('.sitemapPageLink').parent().parent().removeClass('sitemapHighlight');
$('.sitemapPageLink[nodeUrl="' + currentNodeUrl + '"]').parent().parent().addClass('sitemapHighlight');
var pageName = $axure.page.pageName;
$('.pageNameHeader').html(pageName);
$('#sitemapLinksPageName').html($('.sitemapHighlight > .sitemapPageLinkContainer > .sitemapPageLink > .sitemapPageName').html());
//Click the "Without sitemap" radio button so that it's selected by default
$('input[value="withoutmap"]').click();
//If highlight var is present and set to 1 or else if
//sitemap highlight button is selected then highlight interactive elements
var hiVal = getHashStringVar(HIGHLIGHT_INTERACTIVE_VAR_NAME);
if(hiVal.length > 0 && hiVal == 1) {
$('#highlightInteractiveButton').addClass('sitemapToolbarButtonSelected');
$axure.messageCenter.postMessage('highlightInteractive', true);
} else if($('#highlightInteractiveButton').is('.sitemapToolbarButtonSelected')) {
$axure.messageCenter.postMessage('highlightInteractive', true);
}
//Set the current view if it is defined in the hash string
//If the view is invalid, set it to 'auto' in the string
//ELSE set the view based on the currently selected view in the toolbar menu
var viewStr = getHashStringVar(ADAPTIVE_VIEW_VAR_NAME);
if(viewStr.length > 0) {
var $view = $('.adaptiveViewOption[val="' + viewStr + '"]');
if($view.length > 0) $view.click();
else $('.adaptiveViewOption[val="auto"]').click();
} else if($('.checkedAdaptive').length > 0) {
var $viewOption = $('.checkedAdaptive').parents('.adaptiveViewOption');
if($viewOption.attr('val') != 'auto') $viewOption.click();
}
$axure.messageCenter.postMessage('finishInit');
return false;
});
var $adaptiveViewsContainer = $('#adaptiveViewsContainer');
var $viewSelect = $('#viewSelect');
//Fill out adaptive view container with prototype's defined adaptive views, as well as the default, and Auto
$adaptiveViewsContainer.append('<div class="adaptiveViewOption" val="auto"><div class="adaptiveCheckboxDiv checkedAdaptive"></div>Auto</div>');
$viewSelect.append('<option value="auto">Auto</option>');
if(typeof $axure.document.defaultAdaptiveView.name != 'undefined') {
//If the name is a blank string, make the view name the width if non-zero, else 'any'
var defaultViewName = $axure.document.defaultAdaptiveView.name;
$adaptiveViewsContainer.append('<div class="adaptiveViewOption currentAdaptiveView" val="default"><div class="adaptiveCheckboxDiv"></div>' + defaultViewName + '</div>');
$viewSelect.append('<option value="default">' + defaultViewName + '</option>');
}
var enabledViewIds = $axure.document.configuration.enabledViewIds;
for(var viewIndex = 0; viewIndex < $axure.document.adaptiveViews.length; viewIndex++) {
var currView = $axure.document.adaptiveViews[viewIndex];
if(enabledViewIds.indexOf(currView.id) < 0) continue;
var widthString = currView.size.width == 0 ? 'any' : currView.size.width;
var heightString = currView.size.height == 0 ? 'any' : currView.size.height;
var conditionString = '';
if(currView.condition == '>' || currView.condition == '>=') {
conditionString = ' and above';
} else if(currView.condition == '<' || currView.condition == '<=') {
conditionString = ' and below';
}
var viewString = currView.name + ' (' + widthString + ' x ' + heightString + conditionString + ')';
$adaptiveViewsContainer.append('<div class="adaptiveViewOption" val="' + currView.id + '"><div class="adaptiveCheckboxDiv"></div>' + viewString + '</div>');
$viewSelect.append('<option value="' + currView.id + '">' + viewString + '</option>');
}
$('.adaptiveViewOption').click(adaptiveViewOption_click);
$('.adaptiveViewOption').mouseup(function(event) {
event.stopPropagation();
});
$('#searchBox').focusin(function() {
if($(this).is('.searchBoxHint')) {
$(this).val('');
$(this).removeClass('searchBoxHint');
}
}).focusout(function() {
if($(this).val() == '') {
$(this).addClass('searchBoxHint');
$(this).val('Search');
}
});
$('#searchBox').focusout();
});
function updateContainerHeight() {
$('#sitemapTreeContainer').height($('#sitemapHost').height() - $('#sitemapHeader').outerHeight());
}
function hideAllContainersExcept(exceptContainer) {
//1 - adaptive container, 3 - links container
if(exceptContainer != 1) {
$('#adaptiveViewsContainer').hide();
$('#adaptiveButton').removeClass('sitemapToolbarButtonSelected');
}
if(exceptContainer != 3) {
$('#sitemapLinksContainer').hide();
$('#linksButton').removeClass('sitemapToolbarButtonSelected');
}
}
function collapse_click(event) {
$(this)
.children('.sitemapMinus').removeClass('sitemapMinus').addClass('sitemapPlus').end()
.closest('li').children('ul').hide(SHOW_HIDE_ANIMATION_DURATION);
$(this).next('.sitemapFolderOpenIcon').removeClass('sitemapFolderOpenIcon').addClass('sitemapFolderIcon');
}
function expand_click(event) {
$(this)
.children('.sitemapPlus').removeClass('sitemapPlus').addClass('sitemapMinus').end()
.closest('li').children('ul').show(SHOW_HIDE_ANIMATION_DURATION);
$(this).next('.sitemapFolderIcon').removeClass('sitemapFolderIcon').addClass('sitemapFolderOpenIcon');
}
function node_click(event) {
$axure.page.navigate(this.getAttribute('nodeUrl'), true);
}
function links_click(event) {
hideAllContainersExcept(3);
$('#sitemapLinksContainer').toggle();
updateContainerHeight();
if($('#sitemapLinksContainer').is(":visible")) {
$('#linksButton').addClass('sitemapToolbarButtonSelected');
} else {
$('#linksButton').removeClass('sitemapToolbarButtonSelected');
}
}
$axure.messageCenter.addMessageListener(function(message, data) {
if(message == 'adaptiveViewChange') {
$('.adaptiveViewOption').removeClass('currentAdaptiveView');
if(data.viewId) {$('div[val="' + data.viewId + '"]').addClass('currentAdaptiveView');}
else $('div[val="default"]').addClass('currentAdaptiveView');
//when we set adaptive view through user event, we want to update the checkmark on sitemap
if(data.forceSwitchTo) {
$('.checkedAdaptive').removeClass('checkedAdaptive');
$('div[val="' + data.forceSwitchTo + '"]').find('.adaptiveCheckboxDiv').addClass('checkedAdaptive');
}
}
});
$(document).on('pluginShown', function (event, data) {
if(data == 1) {
hideAllContainersExcept(1);
updateContainerHeight();
}
});
$(document).on('sidebarExpanded', function (event, data) {
hideAllContainersExcept(1);
updateContainerHeight();
});
function highlight_interactive(event) {
if($('#highlightInteractiveButton').is('.sitemapToolbarButtonSelected')) {
$('#highlightInteractiveButton').removeClass('sitemapToolbarButtonSelected');
$axure.messageCenter.postMessage('highlightInteractive', false);
//Delete 'hi' hash string var if it exists since default is unselected
deleteVarFromCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME);
} else {
$('#highlightInteractiveButton').addClass('sitemapToolbarButtonSelected');
$axure.messageCenter.postMessage('highlightInteractive', true);
//Add 'hi' hash string var so that stay highlighted across reloads
setVarInCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME, 1);
}
}
function adaptive_click(event) {
hideAllContainersExcept(1);
$('#adaptiveViewsContainer').toggle();
updateContainerHeight();
if(!$('#adaptiveViewsContainer').is(":visible")) {
$('#adaptiveButton').removeClass('sitemapToolbarButtonSelected');
} else {
$('#adaptiveButton').addClass('sitemapToolbarButtonSelected');
}
}
function adaptiveViewOption_click(event) {
var currVal = $(this).attr('val');
$('.checkedAdaptive').removeClass('checkedAdaptive');
$(this).find('.adaptiveCheckboxDiv').addClass('checkedAdaptive');
currentPageLoc = $axure.page.location.split("#")[0];
var decodedPageLoc = decodeURI(currentPageLoc);
var nodeUrl = decodedPageLoc.substr(decodedPageLoc.lastIndexOf('/') ? decodedPageLoc.lastIndexOf('/') + 1 : 0);
var adaptiveData = {
src: nodeUrl
};
adaptiveData.view = currVal;
$axure.messageCenter.postMessage('switchAdaptiveView', adaptiveData);
if(currVal == 'auto') {
//Remove view in hash string if one is set
deleteVarFromCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME);
} else {
//Set current view in hash string so that it can be maintained across reloads
setVarInCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME, currVal);
}
}
function search_click(event) {
$('#searchDiv').toggle();
if(!$('#searchDiv').is(":visible")) {
$('#searchButton').removeClass('sitemapToolbarButtonSelected');
$('#searchBox').val('');
$('#searchBox').keyup();
//$('#sitemapToolbar').css('height', '22px');
$('#sitemapTreeContainer').css('top', '31px');
} else {
$('#searchButton').addClass('sitemapToolbarButtonSelected');
$('#searchBox').focus();
//$('#sitemapToolbar').css('height', '50px');
$('#sitemapTreeContainer').css('top', '63px');
}
}
function search_input_keyup(event) {
var searchVal = $(this).val().toLowerCase();
//If empty search field, show all nodes, else grey+hide all nodes and
//ungrey+unhide all matching nodes, as well as unhide their parent nodes
if(searchVal == '') {
$('.sitemapPageName').removeClass('sitemapGreyedName');
$('.sitemapNode').show();
} else {
$('.sitemapNode').hide();
$('.sitemapPageName').addClass('sitemapGreyedName').each(function() {
var nodeName = $(this).text().toLowerCase();
if(nodeName.indexOf(searchVal) != -1) {
$(this).removeClass('sitemapGreyedName').parents('.sitemapNode:first').show().parents('.sitemapExpandableNode').show();
}
});
}
}
function withoutSitemapRadio_click() {
$('#sitemapLinkWithPlayer').val(currentPageLoc);
$('#sitemapOptionsDiv').hide();
$('#minimizeBox').attr('disabled', 'disabled');
$('#collapseBox').attr('disabled', 'disabled');
$('#footnotesBox').attr('disabled', 'disabled');
$('#highlightBox').attr('disabled', 'disabled');
$('#viewSelect').attr('disabled', 'disabled');
$('input[value="withmap"]').parent().removeClass('sitemapRadioSelected');
updateContainerHeight();
}
function withSitemapRadio_click() {
$('#sitemapLinkWithPlayer').val(currentPlayerLoc + currentPageHashString);
$('#minimizeBox').removeAttr('disabled').change();
$('#collapseBox').removeAttr('disabled').change();
$('#footnotesBox').removeAttr('disabled').change();
$('#highlightBox').removeAttr('disabled').change();
$('#viewSelect').removeAttr('disabled').change();
$('#sitemapOptionsDiv').show();
$('input[value="withmap"]').parent().addClass('sitemapRadioSelected');
updateContainerHeight();
}
function sitemapUrlOptions_change() {
var currLinkHash = '#' + $('#sitemapLinkWithPlayer').val().split("#")[1];
var newHash = null;
var varName = '';
var defVal = 1;
if($(this).is('#minimizeBox')) {
varName = SITEMAP_COLLAPSE_VAR_NAME;
} else if($(this).is('#collapseBox')) {
varName = PLUGIN_VAR_NAME;
defVal = 0;
} else if($(this).is('#footnotesBox')) {
varName = FOOTNOTES_VAR_NAME;
defVal = 0;
} else if($(this).is('#highlightBox')) {
varName = HIGHLIGHT_INTERACTIVE_VAR_NAME;
}
newHash = $(this).is(':checked') ? setHashStringVar(currLinkHash, varName, defVal) : deleteHashStringVar(currLinkHash, varName);
if(newHash != null) {
$('#sitemapLinkWithPlayer').val(currentPlayerLoc + newHash);
}
}
function sitemapUrlViewSelect_change() {
var currLinkHash = '#' + $('#sitemapLinkWithPlayer').val().split("#")[1];
var newHash = null;
var $selectedOption = $(this).find('option:selected');
if($selectedOption.length == 0) return;
var selectedVal = $selectedOption.attr('value');
newHash = selectedVal == 'auto' ? deleteHashStringVar(currLinkHash, ADAPTIVE_VIEW_VAR_NAME) : setHashStringVar(currLinkHash, ADAPTIVE_VIEW_VAR_NAME, selectedVal);
if(newHash != null) {
$('#sitemapLinkWithPlayer').val(currentPlayerLoc + newHash);
}
}
function generateSitemap() {
var treeUl = "<div id='sitemapHeader'' class='sitemapHeader'>";
treeUl += "<div id='sitemapToolbar' class='sitemapToolbar'>";
treeUl += "<div class='pluginNameHeader'>PAGES</div>";
treeUl += "<div class='pageNameHeader'></div>";
treeUl += "<div class='pageButtonHeader'>";
if($axure.document.configuration.enabledViewIds.length > 0) {
treeUl += "<a id='adaptiveButton' title='Select Adaptive View' class='sitemapToolbarButton'></a>";
}
treeUl += "<a id='linksButton' title='Get Links' class='sitemapToolbarButton'></a>";
treeUl += "<a id='highlightInteractiveButton' title='Highlight interactive elements' class='sitemapToolbarButton'></a>";
treeUl += "</div>";
treeUl += "</div>";
if($axure.document.adaptiveViews.length > 0) {
treeUl += "<div id='adaptiveViewsContainer'><div style='margin-bottom:10px;'>Adaptive Views</div></div>";
}
//linkcontainer
treeUl += "<div id='sitemapLinksContainer' class='sitemapLinkContainer'>";
treeUl += "<div style='margin-bottom:10px;'>Generate sharable URLs</div>";
treeUl += "<input id='sitemapLinkWithPlayer' type='text' class='sitemapLinkField'/>";
treeUl += "<div class='sitemapOptionContainer'>";
treeUl += "<div><label><input type='radio' name='sitemapToggle' value='withoutmap'/>Without Sidebar</label></div>";
treeUl += "<div style='margin-top:10px;'><label><input type='radio' name='sitemapToggle' value='withmap'/>With Sidebar</label>";
treeUl += "<div id='sitemapOptionsDiv'>";
treeUl += "<div class='sitemapUrlOption'><label><input type='checkbox' id='minimizeBox' />Minimize sidebar</label></div>";
treeUl += "<div class='sitemapUrlOption'><label><input type='checkbox' id='collapseBox' />Pages closed</label></div>";
if($axure.document.configuration.showAnnotations == true) {
treeUl += "<div class='sitemapUrlOption'><label><input type='checkbox' id='footnotesBox' />Hide footnotes</label></div>";
}
treeUl += "<div class='sitemapUrlOption'><label><input type='checkbox' id='highlightBox' />Highlight interactive elements</label></div>";
if($axure.document.configuration.enabledViewIds.length > 0) {
treeUl += "<div id='viewSelectDiv' class='sitemapUrlOption'><label>View: <select id='viewSelect'></select></label></div>";
}
treeUl += "</div></div></div></div>";
/////////////////
treeUl += "</div>";
treeUl += "<div id='sitemapTreeContainer'>";
treeUl += '<div id="searchDiv" style=""><input id="searchBox" style="" type="text"/></div>';
treeUl += "<ul class='sitemapTree' style='clear:both;'>";
var rootNodes = $axure.document.sitemap.rootNodes;
for(var i = 0; i < rootNodes.length; i++) {
treeUl += generateNode(rootNodes[i], 0);
}
treeUl += "</ul></div>";
$('#sitemapHost').html(treeUl);
if($axure.document.adaptiveViews.length <= 0) {
$('#sitemapHost .pageNameHeader').css('padding-right', '55px');
}
}
function generateNode(node, level) {
var hasChildren = (node.children && node.children.length > 0);
var margin, returnVal;
if(hasChildren) {
margin = (9 + level * 17);
returnVal = "<li class='sitemapNode sitemapExpandableNode'><div><div class='sitemapPageLinkContainer' style='margin-left:" + margin + "px'><a class='sitemapPlusMinusLink'><span class='sitemapMinus'></span></a>";
} else {
margin = (21 + level * 17);
returnVal = "<li class='sitemapNode sitemapLeafNode'><div><div class='sitemapPageLinkContainer' style='margin-left:" + margin + "px'>";
}
var isFolder = node.type == "Folder";
if(!isFolder) {
returnVal += "<a class='sitemapPageLink' nodeUrl='" + node.url + "'>";
allNodeUrls.push(node.url);
}
returnVal += "<span class='sitemapPageIcon";
if(node.type == "Flow") { returnVal += " sitemapFlowIcon"; }
if(isFolder) {
if(hasChildren) returnVal += " sitemapFolderOpenIcon";
else returnVal += " sitemapFolderIcon";
}
returnVal += "'></span><span class='sitemapPageName'>";
returnVal += $('<div/>').text(node.pageName).html();
returnVal += "</span>";
if(!isFolder) returnVal += "</a>";
returnVal += "</div></div>";
if(hasChildren) {
returnVal += "<ul>";
for(var i = 0; i < node.children.length; i++) {
var child = node.children[i];
returnVal += generateNode(child, level + 1);
}
returnVal += "</ul>";
}
returnVal += "</li>";
return returnVal;
}
})();

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="13" height="13" viewBox="0 0 13 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<g id="Page-1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="flow" sketch:type="MSArtboardGroup">
<rect id="Rectangle-38" fill="#62666b" sketch:type="MSShapeGroup" x="1" y="10" width="3" height="3"/>
<rect id="Rectangle-38-Copy" fill="#62666b" sketch:type="MSShapeGroup" x="9" y="10" width="3" height="3"/>
<path d="M6.90806226,0.277785818 C8.60537484,1.36088413 12,3.52708074 12,3.52708074 L6.47274687,7 L1,3.52708074 L6.47274687,0 C6.47274687,0 6.76295713,0.185190545 6.90806226,0.277785818 Z" id="Shape" fill="#62666b" sketch:type="MSShapeGroup"/>
<path d="M7.33917705,2.07093789 C8.05945137,2.55245016 9.5,3.51547471 9.5,3.51547471 L6.48513465,5.5 L3.5,3.51547471 L6.48513465,1.5 C6.48513465,1.5 7.05449625,1.88062526 7.33917705,2.07093789 Z" id="Shape-Copy-3" fill="#ffffff" sketch:type="MSShapeGroup"/>
<path d="M2.45,9 L10.55,9 L11,9 L11,8 L10.55,8 L2.45,8 L2,8 L2,9 L2.45,9 L2.45,9 Z" id="Shape" fill="#62666b" sketch:type="MSShapeGroup"/>
<path d="M7,7.66666667 L7,6.33333333 L7,6 L6,6 L6,6.33333333 L6,7.66666667 L6,8 L7,8 L7,7.66666667 L7,7.66666667 Z" id="Shape" fill="#62666b" sketch:type="MSShapeGroup"/>
<path d="M3,10.6666667 L3,9.33333333 L3,9 L2,9 L2,9.33333333 L2,10.6666667 L2,11 L3,11 L3,10.6666667 L3,10.6666667 Z" id="Shape-Copy" fill="#62666b" sketch:type="MSShapeGroup"/>
<path d="M11,10.6666667 L11,9.33333333 L11,9 L10,9 L10,9.33333333 L10,10.6666667 L10,11 L11,11 L11,10.6666667 L11,10.6666667 Z" id="Shape-Copy-2" fill="#62666b" sketch:type="MSShapeGroup"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="15" height="12" viewBox="0 0 15 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<g id="Page-1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="folder_closed" sketch:type="MSArtboardGroup" fill="#61666b">
<path d="M0.499076843,0 L0.499076843,0 L6,0 L8.06262207,1.99523926 L15,2 L15,11.4996527 C15,11.7759869 14.7763174,12 14.5009232,12 L0.499076843,12 C0.223444314,12 0,11.7709994 0,11.4996527 L0,0.500347316 C0,0.224013124 0.223682597,0 0.499076843,0 L0.499076843,0 Z" id="Shape" sketch:type="MSShapeGroup"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 676 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="15" height="12" viewBox="0 0 15 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<g id="Page-1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="folder_open" sketch:type="MSArtboardGroup" fill="#61666b">
<path d="M0.499076843,0 L0.499076843,0 L6,0 L8.06262207,1.99523926 L15,2 L15,11.4996527 C15,11.7759869 14.7763174,12 14.5009232,12 L0.499076843,12 C0.223444314,12 0,11.7709994 0,11.4996527 L0,0.500347316 C0,0.224013124 0.223682597,0 0.499076843,0 L0.499076843,0 Z M2,2 L2,10.0000001 L13,10 L13,3.9946841 L7.25300762,3.99468413 L5.08392334,2 L2,2 Z" id="Shape" sketch:type="MSShapeGroup"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 758 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 549 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>hotspots</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="hotspots" sketch:type="MSArtboardGroup" fill="#4A4A4A">
<path d="M10.2600169,19.1602222 C7.96869248,19.1439638 6.84386902,17.3383469 6.84386902,15.4953111 C6.84386902,13.5882366 8.46249009,11.826828 10.5143142,11.826828 C12.5661382,11.826828 14.1882121,12.7932695 14.2045264,14.9307568 C14.2052709,15.0283039 14.2045264,15.1095983 14.1882118,15.2071482 L15.9836055,15.6786396 C15.9999201,15.5160564 15.9999201,15.3697315 15.9999201,15.2071483 C16.0162346,12.166843 13.5325041,10 10.4979998,10 C7.46349545,10 5,12.4550059 5,15.4953112 C5,18.5356166 7.16975376,21 10.2205726,21 C10.383718,21 10.5468634,20.9837417 10.7100088,20.9837417 L10.537364,19.1439638 C10.4394768,19.1439638 10.3579016,19.1609167 10.2600169,19.1602222 Z M15.4241629,20.2605722 C15.346898,20.2915532 13.7706948,23.8078983 13.7706948,23.8078983 C13.6316181,24.133199 13.106217,24.0247654 12.9671402,23.6375028 L10.0310755,15.5049865 C9.90745171,15.1796858 10.1701522,14.9163472 10.5101176,15.0247807 L18.6383811,17.9369961 C19.0247054,18.0919012 19.1328762,18.6030879 18.8083638,18.757993 L15.4241629,20.2605722 Z" id="Shape" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>hotspots_hover</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="hotspots_hover" sketch:type="MSArtboardGroup" fill="#138CDE">
<path d="M10.2600169,19.1602222 C7.96869248,19.1439638 6.84386902,17.3383469 6.84386902,15.4953111 C6.84386902,13.5882366 8.46249009,11.826828 10.5143142,11.826828 C12.5661382,11.826828 14.1882121,12.7932695 14.2045264,14.9307568 C14.2052709,15.0283039 14.2045264,15.1095983 14.1882118,15.2071482 L15.9836055,15.6786396 C15.9999201,15.5160564 15.9999201,15.3697315 15.9999201,15.2071483 C16.0162346,12.166843 13.5325041,10 10.4979998,10 C7.46349545,10 5,12.4550059 5,15.4953112 C5,18.5356166 7.16975376,21 10.2205726,21 C10.383718,21 10.5468634,20.9837417 10.7100088,20.9837417 L10.537364,19.1439638 C10.4394768,19.1439638 10.3579016,19.1609167 10.2600169,19.1602222 Z M15.4241629,20.2605722 C15.346898,20.2915532 13.7706948,23.8078983 13.7706948,23.8078983 C13.6316181,24.133199 13.106217,24.0247654 12.9671402,23.6375028 L10.0310755,15.5049865 C9.90745171,15.1796858 10.1701522,14.9163472 10.5101176,15.0247807 L18.6383811,17.9369961 C19.0247054,18.0919012 19.1328762,18.6030879 18.8083638,18.757993 L15.4241629,20.2605722 Z" id="Shape" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>hotspots_on</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="hotspots_on" sketch:type="MSArtboardGroup" fill="#138CDE">
<path d="M10.2600169,19.1602222 C7.96869248,19.1439638 6.84386902,17.3383469 6.84386902,15.4953111 C6.84386902,13.5882366 8.46249009,11.826828 10.5143142,11.826828 C12.5661382,11.826828 14.1882121,12.7932695 14.2045264,14.9307568 C14.2052709,15.0283039 14.2045264,15.1095983 14.1882118,15.2071482 L15.9836055,15.6786396 C15.9999201,15.5160564 15.9999201,15.3697315 15.9999201,15.2071483 C16.0162346,12.166843 13.5325041,10 10.4979998,10 C7.46349545,10 5,12.4550059 5,15.4953112 C5,18.5356166 7.16975376,21 10.2205726,21 C10.383718,21 10.5468634,20.9837417 10.7100088,20.9837417 L10.537364,19.1439638 C10.4394768,19.1439638 10.3579016,19.1609167 10.2600169,19.1602222 Z M15.4241629,20.2605722 C15.346898,20.2915532 13.7706948,23.8078983 13.7706948,23.8078983 C13.6316181,24.133199 13.106217,24.0247654 12.9671402,23.6375028 L10.0310755,15.5049865 C9.90745171,15.1796858 10.1701522,14.9163472 10.5101176,15.0247807 L18.6383811,17.9369961 C19.0247054,18.0919012 19.1328762,18.6030879 18.8083638,18.757993 L15.4241629,20.2605722 Z" id="Shape" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,22 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<p>
<img border="0" src="sitemap_page_icon.png" width="1" height="1">
<img border="0" src="086_case_16.png" width="1" height="1">
<img border="0" src="225_responsive_16.png" width="1" height="1">
<img border="0" src="228_togglenotes_16.png" width="1" height="1">
<img border="0" src="229_variables_16.png" width="1" height="1">
<img border="0" src="231_event_16.png" width="1" height="1">
<img border="0" src="232_search_16.png" width="1" height="1">
<img border="0" src="233_hyperlink_16.png" width="1" height="1">
<img border="0" src="235_folderclosed_16.png" width="1" height="1">
<img border="0" src="236_folderopen_16.png" width="1" height="1">
<img border="0" src="minus.gif" width="1" height="1">
<img border="0" src="plus.gif" width="1" height="1">
</p>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 830 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 B

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="10px" height="13px" viewBox="0 0 10 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: sketchtool 3.4 (375) - http://www.bohemiancoding.com/sketch -->
<title>Note Copy</title>
<desc>Created with sketchtool.</desc>
<defs></defs>
<g id="Axshare---Web-View" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Share-Pages" sketch:type="MSArtboardGroup" transform="translate(-191.000000, -354.000000)" fill="#62666B">
<g id="Left-Display-Panel" sketch:type="MSLayerGroup" transform="translate(174.000000, 125.000000)">
<g id="Pages" transform="translate(12.000000, 88.632812)" sketch:type="MSShapeGroup">
<path d="M7,141.36569 L7,141.36569 L7,152.368685 C7,151.816811 6.55191214,151.367188 5.99539757,151.367188 L14.0046024,151.367188 C13.4449244,151.367188 13,151.810421 13,152.368685 L13,141.36569 C13,141.917564 13.4480879,142.367188 14.0046024,142.367188 L5.99539757,142.367188 C6.55507559,142.367188 7,141.923954 7,141.36569 L7,141.36569 Z M5,141.36569 C5,140.814232 5.4556644,140.367188 5.99539757,140.367188 L14.0046024,140.367188 C14.5543453,140.367188 15,140.814677 15,141.36569 L15,152.368685 C15,152.920143 14.5443356,153.367188 14.0046024,153.367188 L5.99539757,153.367188 C5.44565467,153.367188 5,152.919698 5,152.368685 L5,141.36569 L5,141.36569 Z M8,149.367188 L12,149.367188 L12,148.367188 L8,148.367188 L8,149.367188 L8,149.367188 Z M8,147.367188 L12,147.367188 L12,146.367188 L8,146.367188 L8,147.367188 L8,147.367188 Z M8,145.367188 L12,145.367188 L12,144.367188 L8,144.367188 L8,145.367188 L8,145.367188 Z" id="Note-Copy"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="10" height="13" viewBox="0 0 10 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<g id="Page-1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="page" sketch:type="MSArtboardGroup" fill="#62666b">
<path d="M0.997057016,0 L6.85693359,0 L10,3.36083984 L10,12.0047461 C10,12.5544097 9.5443356,13 9.00460243,13 L0.995397568,13 C0.445654671,13 0,12.5525106 0,12.0014977 L0,0.998502329 C0,0.44704472 0.449902564,0 0.997057016,0 Z M2,10.9999996 L8,10.9999996 L8,4.0219117 L6.00872803,1.99999996 L2.00000005,1.99999996 L2,10.9999996 Z" id="Shape" sketch:type="MSShapeGroup"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 733 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 B

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>share</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="share" sketch:type="MSArtboardGroup" fill="#4A4A4A">
<g id="Shape-+-arrows110-copy" sketch:type="MSLayerGroup" transform="translate(4.000000, 7.000000)">
<path d="M3,6.5138325 L3,14.988934 L13,14.988934 L13,6.011066 L11.0463867,6.011066 L11.0463867,4 L15,4 L15,17 L1,17 L1,4 L3,6.5138325 Z" id="Shape" sketch:type="MSShapeGroup" transform="translate(8.000000, 10.500000) scale(-1, 1) translate(-8.000000, -10.500000) "></path>
<g id="arrows110-copy" transform="translate(8.263140, 7.580127) rotate(-30.000000) translate(-8.263140, -7.580127) translate(1.763140, 2.580127)" sketch:type="MSShapeGroup">
<g id="Capa_1" transform="translate(6.373914, 4.615044) rotate(-4.000000) translate(-6.373914, -4.615044) translate(0.373914, 0.615044)">
<path d="M0.908391223,7.22924417 C0.908391223,3.43005369 5.41839122,2.62076798 6.46601027,2.48405369 L6.46601027,0.740815597 C6.46601027,0.654910835 6.51315313,0.576339406 6.58910551,0.534958454 C6.66610551,0.49514893 6.75724837,0.500910835 6.82796265,0.547529882 L11.6480579,3.79200607 C11.7114388,3.83495845 11.7496769,3.90619655 11.7496769,3.98529179 C11.7496769,4.06229179 11.7114388,4.13405369 11.6480579,4.17700607 L6.8305817,7.42095845 C6.75881979,7.46810131 6.66662932,7.47333941 6.59120075,7.43300607 C6.51472456,7.39214893 6.4675817,7.31305369 6.4675817,7.22662512 L6.4675817,5.35138703 C5.70962932,5.35610131 5.08210551,5.38962512 4.55986741,5.45248226 C2.05343884,5.74948226 1.38348646,7.25438703 1.35624837,7.3188156 C1.31905789,7.40524417 1.23420075,7.46076798 1.14148646,7.46076798 C1.12577218,7.4618156 1.11005789,7.46076798 1.09591503,7.45762512 C0.985915033,7.4345775 0.908391223,7.33924417 0.908391223,7.22924417 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>share_hover</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="share_hover" sketch:type="MSArtboardGroup" fill="#138CDE">
<g id="Shape-+-arrows110-copy" sketch:type="MSLayerGroup" transform="translate(4.000000, 7.000000)">
<path d="M3,6.5138325 L3,14.988934 L13,14.988934 L13,6.011066 L11.0463867,6.011066 L11.0463867,4 L15,4 L15,17 L1,17 L1,4 L3,6.5138325 Z" id="Shape" sketch:type="MSShapeGroup" transform="translate(8.000000, 10.500000) scale(-1, 1) translate(-8.000000, -10.500000) "></path>
<g id="arrows110-copy" transform="translate(8.263140, 7.580127) rotate(-30.000000) translate(-8.263140, -7.580127) translate(1.763140, 2.580127)" sketch:type="MSShapeGroup">
<g id="Capa_1" transform="translate(6.373914, 4.615044) rotate(-4.000000) translate(-6.373914, -4.615044) translate(0.373914, 0.615044)">
<path d="M0.908391223,7.22924417 C0.908391223,3.43005369 5.41839122,2.62076798 6.46601027,2.48405369 L6.46601027,0.740815597 C6.46601027,0.654910835 6.51315313,0.576339406 6.58910551,0.534958454 C6.66610551,0.49514893 6.75724837,0.500910835 6.82796265,0.547529882 L11.6480579,3.79200607 C11.7114388,3.83495845 11.7496769,3.90619655 11.7496769,3.98529179 C11.7496769,4.06229179 11.7114388,4.13405369 11.6480579,4.17700607 L6.8305817,7.42095845 C6.75881979,7.46810131 6.66662932,7.47333941 6.59120075,7.43300607 C6.51472456,7.39214893 6.4675817,7.31305369 6.4675817,7.22662512 L6.4675817,5.35138703 C5.70962932,5.35610131 5.08210551,5.38962512 4.55986741,5.45248226 C2.05343884,5.74948226 1.38348646,7.25438703 1.35624837,7.3188156 C1.31905789,7.40524417 1.23420075,7.46076798 1.14148646,7.46076798 C1.12577218,7.4618156 1.11005789,7.46076798 1.09591503,7.45762512 C0.985915033,7.4345775 0.908391223,7.33924417 0.908391223,7.22924417 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>share_on</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="share_on" sketch:type="MSArtboardGroup" fill="#138CDE">
<g id="Shape-+-arrows110-copy" sketch:type="MSLayerGroup" transform="translate(4.000000, 7.000000)">
<path d="M3,6.5138325 L3,14.988934 L13,14.988934 L13,6.011066 L11.0463867,6.011066 L11.0463867,4 L15,4 L15,17 L1,17 L1,4 L3,6.5138325 Z" id="Shape" sketch:type="MSShapeGroup" transform="translate(8.000000, 10.500000) scale(-1, 1) translate(-8.000000, -10.500000) "></path>
<g id="arrows110-copy" transform="translate(8.263140, 7.580127) rotate(-30.000000) translate(-8.263140, -7.580127) translate(1.763140, 2.580127)" sketch:type="MSShapeGroup">
<g id="Capa_1" transform="translate(6.373914, 4.615044) rotate(-4.000000) translate(-6.373914, -4.615044) translate(0.373914, 0.615044)">
<path d="M0.908391223,7.22924417 C0.908391223,3.43005369 5.41839122,2.62076798 6.46601027,2.48405369 L6.46601027,0.740815597 C6.46601027,0.654910835 6.51315313,0.576339406 6.58910551,0.534958454 C6.66610551,0.49514893 6.75724837,0.500910835 6.82796265,0.547529882 L11.6480579,3.79200607 C11.7114388,3.83495845 11.7496769,3.90619655 11.7496769,3.98529179 C11.7496769,4.06229179 11.7114388,4.13405369 11.6480579,4.17700607 L6.8305817,7.42095845 C6.75881979,7.46810131 6.66662932,7.47333941 6.59120075,7.43300607 C6.51472456,7.39214893 6.4675817,7.31305369 6.4675817,7.22662512 L6.4675817,5.35138703 C5.70962932,5.35610131 5.08210551,5.38962512 4.55986741,5.45248226 C2.05343884,5.74948226 1.38348646,7.25438703 1.35624837,7.3188156 C1.31905789,7.40524417 1.23420075,7.46076798 1.14148646,7.46076798 C1.12577218,7.4618156 1.11005789,7.46076798 1.09591503,7.45762512 C0.985915033,7.4345775 0.908391223,7.33924417 0.908391223,7.22924417 Z" id="Shape"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 571 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="28" height="25" viewBox="0 0 28 25" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g id="Page-1" fill="none" fill-rule="evenodd">
<g id="sitemap_hover" fill="#c2c2c2">
<path d="M15.0769202,12.075687 C16.0025381,12.0747431 23.334246,12.0672274 23.3613141,12.0659607 C23.5843981,12.0570264 23.8391114,12.0778205 24.1023486,12.158165 C24.70215,12.3412347 25.1279338,12.7935747 25.1255962,13.4263338 C25.1350698,13.5358966 25.1336637,17.7446923 25.1336637,17.7446923 L27.2852264,17.7446923 C27.679985,17.7446923 28,18.0681173 28,18.4512133 L28,24.1360483 C28,24.5262491 27.6806299,24.8425693 27.2852264,24.8425693 L20.8173377,24.8425693 C20.4225791,24.8425693 20.1025641,24.5191443 20.1025641,24.1360483 L20.1025641,18.4512133 C20.1025641,18.0610125 20.4219342,17.7446923 20.8173377,17.7446923 L22.999217,17.7446923 C23.0002943,17.4922611 23.0135831,14.1836367 22.9699915,14.18501 C22.9699915,14.18501 15.9798277,14.1909772 15.0769231,14.1861662 L15.0769231,17.7446923 L12.9230769,17.7446923 L12.923077,14.18501 L5.04768254,14.18501 C5.00409091,14.1836367 5.01737968,17.4922611 5.01845697,17.7446923 L7.18266231,17.7446923 C7.57742086,17.7446923 7.8974359,18.0681173 7.8974359,18.4512133 L7.8974359,24.1360483 C7.8974359,24.5262491 7.57806576,24.8425693 7.18266231,24.8425693 L0.714773589,24.8425693 C0.320015036,24.8425693 0,24.5191443 0,24.1360483 L0,18.4512133 C0,18.0610125 0.319370135,17.7446923 0.714773589,17.7446923 L2.88401029,17.7446923 C2.88401029,17.7446923 2.8826042,13.5358966 2.89207782,13.4263338 C2.8897402,12.7935747 3.31552395,12.3412347 3.91532541,12.158165 C4.17856258,12.0778205 4.43327588,12.0570264 4.65635992,12.0659607 C4.68525201,12.0673127 4.68525201,12.0673127 4.70009595,12.0683487 L12.923077,12.0746184 L12.923077,8.51745232 L10.0502068,8.51745232 C9.65428852,8.51745232 9.33333333,8.1939588 9.33333333,7.80590911 L9.33333333,0.711543208 C9.33333333,0.318568745 9.64387004,0 10.0502068,0 L17.9497932,0 C18.3457115,0 18.6666667,0.323493518 18.6666667,0.711543208 L18.6666667,7.80590911 C18.6666667,8.19888358 18.35613,8.51745232 17.9497932,8.51745232 L15.0769232,8.51745232 L15.0769231,12.075687 Z M10.0512821,18.4512133 C10.0512821,18.0610125 10.3706522,17.7446923 10.7660556,17.7446923 L17.2339444,17.7446923 C17.6287029,17.7446923 17.9487179,18.0681173 17.9487179,18.4512133 L17.9487179,24.1360483 C17.9487179,24.5262491 17.6293478,24.8425693 17.2339444,24.8425693 L10.7660556,24.8425693 C10.3712971,24.8425693 10.0512821,24.5191443 10.0512821,24.1360483 L10.0512821,18.4512133 Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="28" height="25" viewBox="0 0 28 25" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g id="Page-1" fill="none" fill-rule="evenodd">
<g id="sitemap_off" fill="#62666b">
<path d="M15.0769202,12.075687 C16.0025381,12.0747431 23.334246,12.0672274 23.3613141,12.0659607 C23.5843981,12.0570264 23.8391114,12.0778205 24.1023486,12.158165 C24.70215,12.3412347 25.1279338,12.7935747 25.1255962,13.4263338 C25.1350698,13.5358966 25.1336637,17.7446923 25.1336637,17.7446923 L27.2852264,17.7446923 C27.679985,17.7446923 28,18.0681173 28,18.4512133 L28,24.1360483 C28,24.5262491 27.6806299,24.8425693 27.2852264,24.8425693 L20.8173377,24.8425693 C20.4225791,24.8425693 20.1025641,24.5191443 20.1025641,24.1360483 L20.1025641,18.4512133 C20.1025641,18.0610125 20.4219342,17.7446923 20.8173377,17.7446923 L22.999217,17.7446923 C23.0002943,17.4922611 23.0135831,14.1836367 22.9699915,14.18501 C22.9699915,14.18501 15.9798277,14.1909772 15.0769231,14.1861662 L15.0769231,17.7446923 L12.9230769,17.7446923 L12.923077,14.18501 L5.04768254,14.18501 C5.00409091,14.1836367 5.01737968,17.4922611 5.01845697,17.7446923 L7.18266231,17.7446923 C7.57742086,17.7446923 7.8974359,18.0681173 7.8974359,18.4512133 L7.8974359,24.1360483 C7.8974359,24.5262491 7.57806576,24.8425693 7.18266231,24.8425693 L0.714773589,24.8425693 C0.320015036,24.8425693 0,24.5191443 0,24.1360483 L0,18.4512133 C0,18.0610125 0.319370135,17.7446923 0.714773589,17.7446923 L2.88401029,17.7446923 C2.88401029,17.7446923 2.8826042,13.5358966 2.89207782,13.4263338 C2.8897402,12.7935747 3.31552395,12.3412347 3.91532541,12.158165 C4.17856258,12.0778205 4.43327588,12.0570264 4.65635992,12.0659607 C4.68525201,12.0673127 4.68525201,12.0673127 4.70009595,12.0683487 L12.923077,12.0746184 L12.923077,8.51745232 L10.0502068,8.51745232 C9.65428852,8.51745232 9.33333333,8.1939588 9.33333333,7.80590911 L9.33333333,0.711543208 C9.33333333,0.318568745 9.64387004,0 10.0502068,0 L17.9497932,0 C18.3457115,0 18.6666667,0.323493518 18.6666667,0.711543208 L18.6666667,7.80590911 C18.6666667,8.19888358 18.35613,8.51745232 17.9497932,8.51745232 L15.0769232,8.51745232 L15.0769231,12.075687 Z M10.0512821,18.4512133 C10.0512821,18.0610125 10.3706522,17.7446923 10.7660556,17.7446923 L17.2339444,17.7446923 C17.6287029,17.7446923 17.9487179,18.0681173 17.9487179,18.4512133 L17.9487179,24.1360483 C17.9487179,24.5262491 17.6293478,24.8425693 17.2339444,24.8425693 L10.7660556,24.8425693 C10.3712971,24.8425693 10.0512821,24.5191443 10.0512821,24.1360483 L10.0512821,18.4512133 Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="28" height="25" viewBox="0 0 28 25" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g id="Page-1" fill="none" fill-rule="evenodd">
<g id="sitemap_on" fill="#ffffff">
<path d="M15.0769202,12.075687 C16.0025381,12.0747431 23.334246,12.0672274 23.3613141,12.0659607 C23.5843981,12.0570264 23.8391114,12.0778205 24.1023486,12.158165 C24.70215,12.3412347 25.1279338,12.7935747 25.1255962,13.4263338 C25.1350698,13.5358966 25.1336637,17.7446923 25.1336637,17.7446923 L27.2852264,17.7446923 C27.679985,17.7446923 28,18.0681173 28,18.4512133 L28,24.1360483 C28,24.5262491 27.6806299,24.8425693 27.2852264,24.8425693 L20.8173377,24.8425693 C20.4225791,24.8425693 20.1025641,24.5191443 20.1025641,24.1360483 L20.1025641,18.4512133 C20.1025641,18.0610125 20.4219342,17.7446923 20.8173377,17.7446923 L22.999217,17.7446923 C23.0002943,17.4922611 23.0135831,14.1836367 22.9699915,14.18501 C22.9699915,14.18501 15.9798277,14.1909772 15.0769231,14.1861662 L15.0769231,17.7446923 L12.9230769,17.7446923 L12.923077,14.18501 L5.04768254,14.18501 C5.00409091,14.1836367 5.01737968,17.4922611 5.01845697,17.7446923 L7.18266231,17.7446923 C7.57742086,17.7446923 7.8974359,18.0681173 7.8974359,18.4512133 L7.8974359,24.1360483 C7.8974359,24.5262491 7.57806576,24.8425693 7.18266231,24.8425693 L0.714773589,24.8425693 C0.320015036,24.8425693 0,24.5191443 0,24.1360483 L0,18.4512133 C0,18.0610125 0.319370135,17.7446923 0.714773589,17.7446923 L2.88401029,17.7446923 C2.88401029,17.7446923 2.8826042,13.5358966 2.89207782,13.4263338 C2.8897402,12.7935747 3.31552395,12.3412347 3.91532541,12.158165 C4.17856258,12.0778205 4.43327588,12.0570264 4.65635992,12.0659607 C4.68525201,12.0673127 4.68525201,12.0673127 4.70009595,12.0683487 L12.923077,12.0746184 L12.923077,8.51745232 L10.0502068,8.51745232 C9.65428852,8.51745232 9.33333333,8.1939588 9.33333333,7.80590911 L9.33333333,0.711543208 C9.33333333,0.318568745 9.64387004,0 10.0502068,0 L17.9497932,0 C18.3457115,0 18.6666667,0.323493518 18.6666667,0.711543208 L18.6666667,7.80590911 C18.6666667,8.19888358 18.35613,8.51745232 17.9497932,8.51745232 L15.0769232,8.51745232 L15.0769231,12.075687 Z M10.0512821,18.4512133 C10.0512821,18.0610125 10.3706522,17.7446923 10.7660556,17.7446923 L17.2339444,17.7446923 C17.6287029,17.7446923 17.9487179,18.0681173 17.9487179,18.4512133 L17.9487179,24.1360483 C17.9487179,24.5262491 17.6293478,24.8425693 17.2339444,24.8425693 L10.7660556,24.8425693 C10.3712971,24.8425693 10.0512821,24.5191443 10.0512821,24.1360483 L10.0512821,18.4512133 Z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>views</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="views" sketch:type="MSArtboardGroup" fill="#4A4A4A">
<path d="M3,16 L9,16 L9,24 L3,24 L3,16 Z M11,22 L18.9936523,22 L18.9936523,13 L7.02722168,13 L7.02722168,14.0028076 L5.15063477,14.0028076 L5.15063477,11 L20.9936523,11 L20.9936523,24 L11,24 L11,22 Z" id="Rectangle-18" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 886 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>views_hover</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="views_hover" sketch:type="MSArtboardGroup" fill="#138CDE">
<path d="M3,16 L9,16 L9,24 L3,24 L3,16 Z M11,22 L18.9936523,22 L18.9936523,13 L7.02722168,13 L7.02722168,14.0028076 L5.15063477,14.0028076 L5.15063477,11 L20.9936523,11 L20.9936523,24 L11,24 L11,22 Z" id="Rectangle-18" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 B

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
<title>views_on</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="views_on" sketch:type="MSArtboardGroup" fill="#138CDE">
<path d="M3,16 L9,16 L9,24 L3,24 L3,16 Z M11,22 L18.9936523,22 L18.9936523,13 L7.02722168,13 L7.02722168,14.0028076 L5.15063477,14.0028076 L5.15063477,11 L20.9936523,11 L20.9936523,24 L11,24 L11,22 Z" id="Rectangle-18" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 892 B

View File

@@ -0,0 +1,399 @@
#sitemapHost {
font-size: 12px;
color:#4a4a4a;
height: 100%;
}
#sitemapHostBtn a {
background: url('images/sitemap_on.png');
background: url('images/sitemap_on.svg'),linear-gradient(transparent, transparent);
}
.hashover #sitemapHostBtn a:hover {
background: url('images/sitemap_hover.png');
background: url('images/sitemap_hover.svg'),linear-gradient(transparent, transparent);
}
#sitemapHostBtn a.selected, #sitemapHostBtn a.selected:hover {
background: url('images/sitemap_off.png');
background: url('images/sitemap_off.svg'),linear-gradient(transparent, transparent);
}
#sitemapHost .pageButtonHeader {
top: -27px;
}
#sitemapTreeContainer {
overflow: auto;
width: 100%;
height: 100%;
-webkit-overflow-scrolling: touch;
}
.sitemapTree {
margin: 0px 0px 10px 0px;
overflow:visible;
}
.sitemapTree ul {
list-style-type: none;
margin: 0px 0px 0px 0px;
padding-left: 0px;
}
.sitemapPlusMinusLink
{
}
.sitemapMinus
{
vertical-align:middle;
background: url('images/minus.gif');
background-repeat: no-repeat;
margin-right: 3px;
margin-bottom: 1px;
height:9px;
width:9px;
display:inline-block;
}
.sitemapPlus
{
vertical-align:middle;
background: url('images/plus.gif');
background-repeat: no-repeat;
margin-right: 3px;
margin-bottom: 1px;
height:9px;
width:9px;
display:inline-block;
}
.sitemapPageLink
{
margin-left: 0px;
}
.sitemapPageIcon
{
margin: 0px 0px -3px 4px;
width: 16px;
height: 16px;
display: inline-block;
background: url('images/page.png') no-repeat center center;
background: url('images/page.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
.sitemapFlowIcon
{
background: url('images/flow.png') no-repeat center center;
background: url('images/flow.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
.sitemapFolderIcon
{
background: url('images/folder_closed.png') no-repeat center center;
background: url('images/folder_closed.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
.sitemapFolderOpenIcon
{
background: url('images/folder_open.png') no-repeat center center;
background: url('images/folder_open.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
.sitemapPageName
{
margin-left: 7px;
}
.sitemapNode
{
/*margin:4px 0px 4px 0px;*/
white-space:nowrap;
}
.sitemapPageLinkContainer {
/*display: inline-block;*/
margin-left: 0px;
padding: 4px 0px 4px 0px;
}
/*
.sitemapNode div
{
padding-top: 1px;
padding-bottom: 3px;
padding-left: 20px;
height: 14px;
}
*/
.sitemapExpandableNode
{
margin-left: 0px;
}
.sitemapHighlight
{
/*display: inline-block;*/
background-color : #C8E0F0;
font-weight: bold;
}
.sitemapGreyedName
{
color: #AAA;
}
.pluginNameHeader
{
font-family: 'Trebuchet MS';
font-size: 12px;
letter-spacing: 1px;
/*font-weight: bold;*/
white-space: nowrap;
margin-bottom: 5px;
}
.pageNameHeader
{
font-family: 'Trebuchet MS';
/*display: inline-block;*/
/*float: left;*/
font-size: 15px;
font-weight: bold;
/*height: 23px;*/
padding-right: 77px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.pageButtonHeader
{
float: right;
position: relative;
/*width: 72px;*/
height: 24px;
top: -22px;
margin-bottom: -24px;
}
.sitemapHeader
{
padding-top: 27px;
border-bottom: 1px solid #d9d9d9;
min-width: 110px;
}
.sitemapToolbar {
margin: 0px 5px 14px 12px;
}
.sitemapToolbarButton
{
float: left;
width: 22px;
height: 22px;
border: 1px solid transparent;
}
#linksButton {
background: url('images/share.png') no-repeat center center;
background: url('images/share.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#linksButton:hover {
background: url('images/share_hover.png') no-repeat center center;
background: url('images/share_hover.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#linksButton.sitemapToolbarButtonSelected, .hashover #linksButton.sitemapToolbarButtonSelected:hover {
background: url('images/share_on.png') no-repeat center center;
background: url('images/share_on.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#adaptiveButton {
background: url('images/views.png') no-repeat center center;
background: url('images/views.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#adaptiveButton:hover {
background: url('images/views_hover.png') no-repeat center center;
background: url('images/views_hover.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#adaptiveButton.sitemapToolbarButtonSelected, #adaptiveButton.sitemapToolbarButtonSelected:hover {
background: url('images/views_on.png') no-repeat center center;
background: url('images/views_on.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#highlightInteractiveButton {
background: url('images/hotspots.png') no-repeat center center;
background: url('images/hotspots.svg') no-repeat center center, linear-gradient(transparent,transparent);
margin-top: 1px;
}
#highlightInteractiveButton:hover {
background: url('images/hotspots_hover.png') no-repeat center center;
background: url('images/hotspots_hover.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
#highlightInteractiveButton.sitemapToolbarButtonSelected, #highlightInteractiveButton.sitemapToolbarButtonSelected:hover {
background: url('images/hotspots_on.png') no-repeat center center;
background: url('images/hotspots_on.svg') no-repeat center center, linear-gradient(transparent,transparent);
}
/*#variablesButton {
background: url('images/229_variables_16.png') no-repeat center center;
}*/
#searchButton {
background: url('images/232_search_16.png') no-repeat center center;
}
.sitemapLinkContainer
{
margin-top: 8px;
padding-right: 5px;
/*font-size: 12px;*/
}
.sitemapLinkField
{
width: 100%;
font-size: 12px;
margin-top: 3px;
padding: 5px;
}
.sitemapRadioSelected {
font-weight: bold;
}
.sitemapOptionContainer
{
margin-top: 8px;
padding-right: 5px;
/*font-size: 12px;*/
}
#sitemapOptionsDiv
{
margin-top: 10px;
/*margin-left: 16px;*/
}
#viewSelectDiv
{
padding: 2px 0px 0px 0px;
/*margin-left: 5px;*/
}
#viewSelect
{
width: 70%;
}
.sitemapUrlOption
{
padding-bottom: 8px;
}
.optionLabel
{
font-size: 12px;
}
.sitemapPopupContainer
{
display: none;
position: absolute;
background-color: #F4F4F4;
border: 1px solid #B9B9B9;
padding: 5px 5px 5px 5px;
margin: 5px 0px 0px 5px;
z-index: 1;
}
#sitemapLinksContainer {
border-top: 1px solid #d9d9d9;
padding: 10px;
margin-left: 0px;
/*line-height: 18px;*/
}
#adaptiveViewsContainer {
border-top: 1px solid #d9d9d9;
padding: 10px;
margin-left: 0px;
line-height: 18px;
}
.adaptiveViewOption
{
padding: 2px;
}
.adaptiveViewOption:hover
{
background-color: rgb(204,235,248);
cursor: pointer;
}
.currentAdaptiveView {
font-weight: bold;
}
.adaptiveCheckboxDiv {
height: 15px;
width: 15px;
float: left;
}
.checkedAdaptive {
background: url('images/adaptivecheck.png') no-repeat center center;
}
/*#variablesContainer
{
max-height: 350px;
overflow: auto;
}*/
/*#variablesClearLink
{
color: #069;
left: 5px;
}*/
#searchDiv {
padding: 8px 12px 11px 12px;
}
#searchBox {
width: 100%;
border: none;
border-top: 1px solid #d9d9d9;
/*border-bottom: 1px solid #d9d9d9;*/
padding: 5px;
font-size: 12px;
}
.searchBoxHint
{
color: #8f949a;
/*font-style: italic;*/
}
#sitemapLinksPageName
{
font-weight: bold;
}
#sitemapOptionsHeader
{
font-weight: bold;
}