remove unneded files in classic theme folder
This commit is contained in:
parent
1645981080
commit
8a0cc3ee2b
2 changed files with 0 additions and 107 deletions
|
@ -1,102 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<style>
|
||||
input {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
padding: 2px;
|
||||
border: 1px solid rgb(128, 128, 128);
|
||||
border-radius: 8px;
|
||||
margin: 2px;
|
||||
background: -moz-linear-gradient(top, rgb(224, 224, 224), rgb(192, 192, 192));
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(rgb(224, 224, 224)), to(rgb(192, 192, 192)));
|
||||
}
|
||||
input[src="symbols/loading.svg"] {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
}
|
||||
div.symbol {
|
||||
float: left;
|
||||
position: relative;
|
||||
width: 256px;
|
||||
height: 256px;
|
||||
margin: 4px;
|
||||
background-image: 'grid.png' repeat;
|
||||
}
|
||||
div.symbol > div {
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
img {
|
||||
position: relative;
|
||||
top: -256px;
|
||||
width: 256px;
|
||||
height: 256px;
|
||||
}
|
||||
</style>
|
||||
<script src="../../../../build/Ox.UI/jquery/jquery.js"></script>
|
||||
<script src="../../../../build/Ox.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var $body = $('body')
|
||||
.css({
|
||||
margin: '2px',
|
||||
background: 'rgb(240, 240, 240)'
|
||||
}),
|
||||
$buttons = $('<div>').appendTo($body),
|
||||
$symbols = $('<div>').appendTo($body);
|
||||
[
|
||||
'Add', 'Remove', 'Close', 'Select',
|
||||
'ArrowLeft', 'ArrowRight', 'ArrowUp', 'ArrowDown',
|
||||
'Left', 'Right', 'Up', 'Down',
|
||||
'Pause', 'PlayInToOut', 'GoToIn', 'GoToOut', 'SetIn', 'SetOut',
|
||||
'GoToPoster', 'SetPoster',
|
||||
'Center', 'Zoom', 'Grow', 'Shrink', 'Fill', 'Fit',
|
||||
'Unmute', 'VolumeUp', 'VolumeDown', 'Mute',
|
||||
'Undo', 'Redo', 'Unlock', 'Lock',
|
||||
'Volume', 'Mount', 'Unmount', 'Sync',
|
||||
'Info', 'Warning', 'Help',
|
||||
'Check', 'Embed', 'Bracket',
|
||||
'Upload', 'Download',
|
||||
'Copyright', 'NoCopyright',
|
||||
'List', 'Grid', 'Map', 'Calendar',
|
||||
'Click', 'Delete', 'Edit', 'Find', 'Flag', 'Icon', 'Like',
|
||||
'Mail', 'Publish', 'Set', 'Star', 'User', 'View', 'Loading'
|
||||
].forEach(function(symbol) {
|
||||
var $symbol, src = 'svg/symbol' + symbol + '.svg';
|
||||
console.log(symbol)
|
||||
$('<input>')
|
||||
.attr({
|
||||
src: src,
|
||||
title: symbol,
|
||||
type: 'image'
|
||||
})
|
||||
.appendTo($buttons);
|
||||
$symbol = $('<div>')
|
||||
.addClass('symbol')
|
||||
.appendTo($symbols);
|
||||
for (var i = 0; i < 256; i++) {
|
||||
color = (i + Math.floor(i / 16)) % 2 == 0 ? 224 : 192;
|
||||
$('<div>')
|
||||
.css({
|
||||
backgroundColor: 'rgb(' + [color, color, color].join(', ') + ')'
|
||||
})
|
||||
.appendTo($symbol)
|
||||
}
|
||||
$('<img>')
|
||||
.attr({
|
||||
src: src
|
||||
})
|
||||
.appendTo($symbol);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="40" y="40" width="176" height="176" fill="none" stroke="#404040" stroke-width="16"/>
|
||||
<line x1="101" y1="40" x2="101" y2="216" stroke="#404040" stroke-width="16"/>
|
||||
<line x1="155" y1="40" x2="155" y2="216" stroke="#404040" stroke-width="16"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 334 B |
Loading…
Reference in a new issue