32 changed files with 4838 additions and 307 deletions
@ -0,0 +1,539 @@ |
|||
/* Logo 字体 */ |
|||
@font-face { |
|||
font-family: "iconfont logo"; |
|||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); |
|||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), |
|||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'), |
|||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'), |
|||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg'); |
|||
} |
|||
|
|||
.logo { |
|||
font-family: "iconfont logo"; |
|||
font-size: 160px; |
|||
font-style: normal; |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
} |
|||
|
|||
/* tabs */ |
|||
.nav-tabs { |
|||
position: relative; |
|||
} |
|||
|
|||
.nav-tabs .nav-more { |
|||
position: absolute; |
|||
right: 0; |
|||
bottom: 0; |
|||
height: 42px; |
|||
line-height: 42px; |
|||
color: #666; |
|||
} |
|||
|
|||
#tabs { |
|||
border-bottom: 1px solid #eee; |
|||
} |
|||
|
|||
#tabs li { |
|||
cursor: pointer; |
|||
width: 100px; |
|||
height: 40px; |
|||
line-height: 40px; |
|||
text-align: center; |
|||
font-size: 16px; |
|||
border-bottom: 2px solid transparent; |
|||
position: relative; |
|||
z-index: 1; |
|||
margin-bottom: -1px; |
|||
color: #666; |
|||
} |
|||
|
|||
|
|||
#tabs .active { |
|||
border-bottom-color: #f00; |
|||
color: #222; |
|||
} |
|||
|
|||
.tab-container .content { |
|||
display: none; |
|||
} |
|||
|
|||
/* 页面布局 */ |
|||
.main { |
|||
padding: 30px 100px; |
|||
width: 960px; |
|||
margin: 0 auto; |
|||
} |
|||
|
|||
.main .logo { |
|||
color: #333; |
|||
text-align: left; |
|||
margin-bottom: 30px; |
|||
line-height: 1; |
|||
height: 110px; |
|||
margin-top: -50px; |
|||
overflow: hidden; |
|||
*zoom: 1; |
|||
} |
|||
|
|||
.main .logo a { |
|||
font-size: 160px; |
|||
color: #333; |
|||
} |
|||
|
|||
.helps { |
|||
margin-top: 40px; |
|||
} |
|||
|
|||
.helps pre { |
|||
padding: 20px; |
|||
margin: 10px 0; |
|||
border: solid 1px #e7e1cd; |
|||
background-color: #fffdef; |
|||
overflow: auto; |
|||
} |
|||
|
|||
.icon_lists { |
|||
width: 100% !important; |
|||
overflow: hidden; |
|||
*zoom: 1; |
|||
} |
|||
|
|||
.icon_lists li { |
|||
width: 100px; |
|||
margin-bottom: 10px; |
|||
margin-right: 20px; |
|||
text-align: center; |
|||
list-style: none !important; |
|||
cursor: default; |
|||
} |
|||
|
|||
.icon_lists li .code-name { |
|||
line-height: 1.2; |
|||
} |
|||
|
|||
.icon_lists .icon { |
|||
display: block; |
|||
height: 100px; |
|||
line-height: 100px; |
|||
font-size: 42px; |
|||
margin: 10px auto; |
|||
color: #333; |
|||
-webkit-transition: font-size 0.25s linear, width 0.25s linear; |
|||
-moz-transition: font-size 0.25s linear, width 0.25s linear; |
|||
transition: font-size 0.25s linear, width 0.25s linear; |
|||
} |
|||
|
|||
.icon_lists .icon:hover { |
|||
font-size: 100px; |
|||
} |
|||
|
|||
.icon_lists .svg-icon { |
|||
/* 通过设置 font-size 来改变图标大小 */ |
|||
width: 1em; |
|||
/* 图标和文字相邻时,垂直对齐 */ |
|||
vertical-align: -0.15em; |
|||
/* 通过设置 color 来改变 SVG 的颜色/fill */ |
|||
fill: currentColor; |
|||
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示 |
|||
normalize.css 中也包含这行 */ |
|||
overflow: hidden; |
|||
} |
|||
|
|||
.icon_lists li .name, |
|||
.icon_lists li .code-name { |
|||
color: #666; |
|||
} |
|||
|
|||
/* markdown 样式 */ |
|||
.markdown { |
|||
color: #666; |
|||
font-size: 14px; |
|||
line-height: 1.8; |
|||
} |
|||
|
|||
.highlight { |
|||
line-height: 1.5; |
|||
} |
|||
|
|||
.markdown img { |
|||
vertical-align: middle; |
|||
max-width: 100%; |
|||
} |
|||
|
|||
.markdown h1 { |
|||
color: #404040; |
|||
font-weight: 500; |
|||
line-height: 40px; |
|||
margin-bottom: 24px; |
|||
} |
|||
|
|||
.markdown h2, |
|||
.markdown h3, |
|||
.markdown h4, |
|||
.markdown h5, |
|||
.markdown h6 { |
|||
color: #404040; |
|||
margin: 1.6em 0 0.6em 0; |
|||
font-weight: 500; |
|||
clear: both; |
|||
} |
|||
|
|||
.markdown h1 { |
|||
font-size: 28px; |
|||
} |
|||
|
|||
.markdown h2 { |
|||
font-size: 22px; |
|||
} |
|||
|
|||
.markdown h3 { |
|||
font-size: 16px; |
|||
} |
|||
|
|||
.markdown h4 { |
|||
font-size: 14px; |
|||
} |
|||
|
|||
.markdown h5 { |
|||
font-size: 12px; |
|||
} |
|||
|
|||
.markdown h6 { |
|||
font-size: 12px; |
|||
} |
|||
|
|||
.markdown hr { |
|||
height: 1px; |
|||
border: 0; |
|||
background: #e9e9e9; |
|||
margin: 16px 0; |
|||
clear: both; |
|||
} |
|||
|
|||
.markdown p { |
|||
margin: 1em 0; |
|||
} |
|||
|
|||
.markdown>p, |
|||
.markdown>blockquote, |
|||
.markdown>.highlight, |
|||
.markdown>ol, |
|||
.markdown>ul { |
|||
width: 80%; |
|||
} |
|||
|
|||
.markdown ul>li { |
|||
list-style: circle; |
|||
} |
|||
|
|||
.markdown>ul li, |
|||
.markdown blockquote ul>li { |
|||
margin-left: 20px; |
|||
padding-left: 4px; |
|||
} |
|||
|
|||
.markdown>ul li p, |
|||
.markdown>ol li p { |
|||
margin: 0.6em 0; |
|||
} |
|||
|
|||
.markdown ol>li { |
|||
list-style: decimal; |
|||
} |
|||
|
|||
.markdown>ol li, |
|||
.markdown blockquote ol>li { |
|||
margin-left: 20px; |
|||
padding-left: 4px; |
|||
} |
|||
|
|||
.markdown code { |
|||
margin: 0 3px; |
|||
padding: 0 5px; |
|||
background: #eee; |
|||
border-radius: 3px; |
|||
} |
|||
|
|||
.markdown strong, |
|||
.markdown b { |
|||
font-weight: 600; |
|||
} |
|||
|
|||
.markdown>table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0px; |
|||
empty-cells: show; |
|||
border: 1px solid #e9e9e9; |
|||
width: 95%; |
|||
margin-bottom: 24px; |
|||
} |
|||
|
|||
.markdown>table th { |
|||
white-space: nowrap; |
|||
color: #333; |
|||
font-weight: 600; |
|||
} |
|||
|
|||
.markdown>table th, |
|||
.markdown>table td { |
|||
border: 1px solid #e9e9e9; |
|||
padding: 8px 16px; |
|||
text-align: left; |
|||
} |
|||
|
|||
.markdown>table th { |
|||
background: #F7F7F7; |
|||
} |
|||
|
|||
.markdown blockquote { |
|||
font-size: 90%; |
|||
color: #999; |
|||
border-left: 4px solid #e9e9e9; |
|||
padding-left: 0.8em; |
|||
margin: 1em 0; |
|||
} |
|||
|
|||
.markdown blockquote p { |
|||
margin: 0; |
|||
} |
|||
|
|||
.markdown .anchor { |
|||
opacity: 0; |
|||
transition: opacity 0.3s ease; |
|||
margin-left: 8px; |
|||
} |
|||
|
|||
.markdown .waiting { |
|||
color: #ccc; |
|||
} |
|||
|
|||
.markdown h1:hover .anchor, |
|||
.markdown h2:hover .anchor, |
|||
.markdown h3:hover .anchor, |
|||
.markdown h4:hover .anchor, |
|||
.markdown h5:hover .anchor, |
|||
.markdown h6:hover .anchor { |
|||
opacity: 1; |
|||
display: inline-block; |
|||
} |
|||
|
|||
.markdown>br, |
|||
.markdown>p>br { |
|||
clear: both; |
|||
} |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
background: white; |
|||
padding: 0.5em; |
|||
color: #333333; |
|||
overflow-x: auto; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta { |
|||
color: #969896; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-strong, |
|||
.hljs-emphasis, |
|||
.hljs-quote { |
|||
color: #df5000; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-type { |
|||
color: #a71d5d; |
|||
} |
|||
|
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name { |
|||
color: #63a35c; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #333333; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-attr, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #795da3; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
color: #55a532; |
|||
background-color: #eaffea; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #bd2c00; |
|||
background-color: #ffecec; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
/* 代码高亮 */ |
|||
/* PrismJS 1.15.0 |
|||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */ |
|||
/** |
|||
* prism.js default theme for JavaScript, CSS and HTML |
|||
* Based on dabblet (http://dabblet.com) |
|||
* @author Lea Verou |
|||
*/ |
|||
code[class*="language-"], |
|||
pre[class*="language-"] { |
|||
color: black; |
|||
background: none; |
|||
text-shadow: 0 1px white; |
|||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; |
|||
text-align: left; |
|||
white-space: pre; |
|||
word-spacing: normal; |
|||
word-break: normal; |
|||
word-wrap: normal; |
|||
line-height: 1.5; |
|||
|
|||
-moz-tab-size: 4; |
|||
-o-tab-size: 4; |
|||
tab-size: 4; |
|||
|
|||
-webkit-hyphens: none; |
|||
-moz-hyphens: none; |
|||
-ms-hyphens: none; |
|||
hyphens: none; |
|||
} |
|||
|
|||
pre[class*="language-"]::-moz-selection, |
|||
pre[class*="language-"] ::-moz-selection, |
|||
code[class*="language-"]::-moz-selection, |
|||
code[class*="language-"] ::-moz-selection { |
|||
text-shadow: none; |
|||
background: #b3d4fc; |
|||
} |
|||
|
|||
pre[class*="language-"]::selection, |
|||
pre[class*="language-"] ::selection, |
|||
code[class*="language-"]::selection, |
|||
code[class*="language-"] ::selection { |
|||
text-shadow: none; |
|||
background: #b3d4fc; |
|||
} |
|||
|
|||
@media print { |
|||
|
|||
code[class*="language-"], |
|||
pre[class*="language-"] { |
|||
text-shadow: none; |
|||
} |
|||
} |
|||
|
|||
/* Code blocks */ |
|||
pre[class*="language-"] { |
|||
padding: 1em; |
|||
margin: .5em 0; |
|||
overflow: auto; |
|||
} |
|||
|
|||
:not(pre)>code[class*="language-"], |
|||
pre[class*="language-"] { |
|||
background: #f5f2f0; |
|||
} |
|||
|
|||
/* Inline code */ |
|||
:not(pre)>code[class*="language-"] { |
|||
padding: .1em; |
|||
border-radius: .3em; |
|||
white-space: normal; |
|||
} |
|||
|
|||
.token.comment, |
|||
.token.prolog, |
|||
.token.doctype, |
|||
.token.cdata { |
|||
color: slategray; |
|||
} |
|||
|
|||
.token.punctuation { |
|||
color: #999; |
|||
} |
|||
|
|||
.namespace { |
|||
opacity: .7; |
|||
} |
|||
|
|||
.token.property, |
|||
.token.tag, |
|||
.token.boolean, |
|||
.token.number, |
|||
.token.constant, |
|||
.token.symbol, |
|||
.token.deleted { |
|||
color: #905; |
|||
} |
|||
|
|||
.token.selector, |
|||
.token.attr-name, |
|||
.token.string, |
|||
.token.char, |
|||
.token.builtin, |
|||
.token.inserted { |
|||
color: #690; |
|||
} |
|||
|
|||
.token.operator, |
|||
.token.entity, |
|||
.token.url, |
|||
.language-css .token.string, |
|||
.style .token.string { |
|||
color: #9a6e3a; |
|||
background: hsla(0, 0%, 100%, .5); |
|||
} |
|||
|
|||
.token.atrule, |
|||
.token.attr-value, |
|||
.token.keyword { |
|||
color: #07a; |
|||
} |
|||
|
|||
.token.function, |
|||
.token.class-name { |
|||
color: #DD4A68; |
|||
} |
|||
|
|||
.token.regex, |
|||
.token.important, |
|||
.token.variable { |
|||
color: #e90; |
|||
} |
|||
|
|||
.token.important, |
|||
.token.bold { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.token.italic { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.token.entity { |
|||
cursor: help; |
|||
} |
|||
File diff suppressed because it is too large
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,611 @@ |
|||
{ |
|||
"id": "1990368", |
|||
"name": "lucksheet", |
|||
"font_family": "iconfont", |
|||
"css_prefix_text": "icon-", |
|||
"description": "", |
|||
"glyphs": [ |
|||
{ |
|||
"icon_id": "16746498", |
|||
"name": "logo2", |
|||
"font_class": "logo2", |
|||
"unicode": "e7df", |
|||
"unicode_decimal": 59359 |
|||
}, |
|||
{ |
|||
"icon_id": "16746532", |
|||
"name": "logo", |
|||
"font_class": "logo", |
|||
"unicode": "e7e0", |
|||
"unicode_decimal": 59360 |
|||
}, |
|||
{ |
|||
"icon_id": "16730159", |
|||
"name": "文本倾斜", |
|||
"font_class": "wenbenqingxie1", |
|||
"unicode": "e7de", |
|||
"unicode_decimal": 59358 |
|||
}, |
|||
{ |
|||
"icon_id": "16728412", |
|||
"name": "加粗", |
|||
"font_class": "jiacu", |
|||
"unicode": "e7d9", |
|||
"unicode_decimal": 59353 |
|||
}, |
|||
{ |
|||
"icon_id": "16728080", |
|||
"name": "搜索", |
|||
"font_class": "sousuo", |
|||
"unicode": "e78a", |
|||
"unicode_decimal": 59274 |
|||
}, |
|||
{ |
|||
"icon_id": "16728081", |
|||
"name": "关闭", |
|||
"font_class": "guanbi", |
|||
"unicode": "e78b", |
|||
"unicode_decimal": 59275 |
|||
}, |
|||
{ |
|||
"icon_id": "16728082", |
|||
"name": "下一个", |
|||
"font_class": "xiayige", |
|||
"unicode": "e78c", |
|||
"unicode_decimal": 59276 |
|||
}, |
|||
{ |
|||
"icon_id": "16728083", |
|||
"name": "下拉", |
|||
"font_class": "xiala", |
|||
"unicode": "e78d", |
|||
"unicode_decimal": 59277 |
|||
}, |
|||
{ |
|||
"icon_id": "16728084", |
|||
"name": "文本颜色", |
|||
"font_class": "wenbenyanse", |
|||
"unicode": "e78e", |
|||
"unicode_decimal": 59278 |
|||
}, |
|||
{ |
|||
"icon_id": "16728085", |
|||
"name": "上一个", |
|||
"font_class": "shangyige", |
|||
"unicode": "e78f", |
|||
"unicode_decimal": 59279 |
|||
}, |
|||
{ |
|||
"icon_id": "16728086", |
|||
"name": "数据透视", |
|||
"font_class": "shujutoushi", |
|||
"unicode": "e790", |
|||
"unicode_decimal": 59280 |
|||
}, |
|||
{ |
|||
"icon_id": "16728087", |
|||
"name": "填充", |
|||
"font_class": "tianchong", |
|||
"unicode": "e791", |
|||
"unicode_decimal": 59281 |
|||
}, |
|||
{ |
|||
"icon_id": "16728088", |
|||
"name": "增加小数位", |
|||
"font_class": "zengjiaxiaoshuwei", |
|||
"unicode": "e792", |
|||
"unicode_decimal": 59282 |
|||
}, |
|||
{ |
|||
"icon_id": "16728089", |
|||
"name": "编辑2", |
|||
"font_class": "bianji2", |
|||
"unicode": "e793", |
|||
"unicode_decimal": 59283 |
|||
}, |
|||
{ |
|||
"icon_id": "16728090", |
|||
"name": "截屏", |
|||
"font_class": "jieping", |
|||
"unicode": "e794", |
|||
"unicode_decimal": 59284 |
|||
}, |
|||
{ |
|||
"icon_id": "16728092", |
|||
"name": "减小小数位", |
|||
"font_class": "jianxiaoxiaoshuwei", |
|||
"unicode": "e796", |
|||
"unicode_decimal": 59286 |
|||
}, |
|||
{ |
|||
"icon_id": "16728093", |
|||
"name": "菜单", |
|||
"font_class": "caidan", |
|||
"unicode": "e797", |
|||
"unicode_decimal": 59287 |
|||
}, |
|||
{ |
|||
"icon_id": "16728094", |
|||
"name": "数据库", |
|||
"font_class": "shujuku", |
|||
"unicode": "e798", |
|||
"unicode_decimal": 59288 |
|||
}, |
|||
{ |
|||
"icon_id": "16728095", |
|||
"name": "无边框", |
|||
"font_class": "wubiankuang", |
|||
"unicode": "e799", |
|||
"unicode_decimal": 59289 |
|||
}, |
|||
{ |
|||
"icon_id": "16728096", |
|||
"name": "编辑", |
|||
"font_class": "bianji", |
|||
"unicode": "e79a", |
|||
"unicode_decimal": 59290 |
|||
}, |
|||
{ |
|||
"icon_id": "16728097", |
|||
"name": "清除样式", |
|||
"font_class": "qingchuyangshi", |
|||
"unicode": "e79b", |
|||
"unicode_decimal": 59291 |
|||
}, |
|||
{ |
|||
"icon_id": "16728099", |
|||
"name": "删除", |
|||
"font_class": "shanchu", |
|||
"unicode": "e79c", |
|||
"unicode_decimal": 59292 |
|||
}, |
|||
{ |
|||
"icon_id": "16728100", |
|||
"name": "文本居中对齐", |
|||
"font_class": "wenbenjuzhongduiqi", |
|||
"unicode": "e79d", |
|||
"unicode_decimal": 59293 |
|||
}, |
|||
{ |
|||
"icon_id": "16728101", |
|||
"name": "打印", |
|||
"font_class": "dayin", |
|||
"unicode": "e79e", |
|||
"unicode_decimal": 59294 |
|||
}, |
|||
{ |
|||
"icon_id": "16728102", |
|||
"name": "文本分割", |
|||
"font_class": "wenbenfenge", |
|||
"unicode": "e79f", |
|||
"unicode_decimal": 59295 |
|||
}, |
|||
{ |
|||
"icon_id": "16728103", |
|||
"name": "函数‘", |
|||
"font_class": "hanshu", |
|||
"unicode": "e7a0", |
|||
"unicode_decimal": 59296 |
|||
}, |
|||
{ |
|||
"icon_id": "16728104", |
|||
"name": "降序", |
|||
"font_class": "jiangxu", |
|||
"unicode": "e7a1", |
|||
"unicode_decimal": 59297 |
|||
}, |
|||
{ |
|||
"icon_id": "16728105", |
|||
"name": "顶部对齐", |
|||
"font_class": "dingbuduiqi", |
|||
"unicode": "e7a2", |
|||
"unicode_decimal": 59298 |
|||
}, |
|||
{ |
|||
"icon_id": "16728106", |
|||
"name": "图片", |
|||
"font_class": "tupian", |
|||
"unicode": "e7a3", |
|||
"unicode_decimal": 59299 |
|||
}, |
|||
{ |
|||
"icon_id": "16728107", |
|||
"name": "向下90", |
|||
"font_class": "xiangxia90", |
|||
"unicode": "e7a4", |
|||
"unicode_decimal": 59300 |
|||
}, |
|||
{ |
|||
"icon_id": "16728108", |
|||
"name": "竖排文字", |
|||
"font_class": "shupaiwenzi", |
|||
"unicode": "e7a5", |
|||
"unicode_decimal": 59301 |
|||
}, |
|||
{ |
|||
"icon_id": "16728109", |
|||
"name": "全加边框", |
|||
"font_class": "quanjiabiankuang", |
|||
"unicode": "e7a6", |
|||
"unicode_decimal": 59302 |
|||
}, |
|||
{ |
|||
"icon_id": "16728110", |
|||
"name": "升序", |
|||
"font_class": "shengxu", |
|||
"unicode": "e7a7", |
|||
"unicode_decimal": 59303 |
|||
}, |
|||
{ |
|||
"icon_id": "16728111", |
|||
"name": "裁剪", |
|||
"font_class": "caijian", |
|||
"unicode": "e7a8", |
|||
"unicode_decimal": 59304 |
|||
}, |
|||
{ |
|||
"icon_id": "16728112", |
|||
"name": "金额", |
|||
"font_class": "jine", |
|||
"unicode": "e7a9", |
|||
"unicode_decimal": 59305 |
|||
}, |
|||
{ |
|||
"icon_id": "16728113", |
|||
"name": "菜单1", |
|||
"font_class": "caidan1", |
|||
"unicode": "e7aa", |
|||
"unicode_decimal": 59306 |
|||
}, |
|||
{ |
|||
"icon_id": "16728114", |
|||
"name": "取消合并", |
|||
"font_class": "quxiaohebing", |
|||
"unicode": "e7ab", |
|||
"unicode_decimal": 59307 |
|||
}, |
|||
{ |
|||
"icon_id": "16728115", |
|||
"name": "文本下划线", |
|||
"font_class": "wenbenxiahuaxian", |
|||
"unicode": "e7ac", |
|||
"unicode_decimal": 59308 |
|||
}, |
|||
{ |
|||
"icon_id": "16728116", |
|||
"name": "上边框", |
|||
"font_class": "shangbiankuang", |
|||
"unicode": "e7ad", |
|||
"unicode_decimal": 59309 |
|||
}, |
|||
{ |
|||
"icon_id": "16728117", |
|||
"name": "定位", |
|||
"font_class": "dingwei", |
|||
"unicode": "e7ae", |
|||
"unicode_decimal": 59310 |
|||
}, |
|||
{ |
|||
"icon_id": "16728118", |
|||
"name": "四周加边框", |
|||
"font_class": "sizhoujiabiankuang", |
|||
"unicode": "e7af", |
|||
"unicode_decimal": 59311 |
|||
}, |
|||
{ |
|||
"icon_id": "16728119", |
|||
"name": "侧边栏收起", |
|||
"font_class": "cebianlanshouqi", |
|||
"unicode": "e7b0", |
|||
"unicode_decimal": 59312 |
|||
}, |
|||
{ |
|||
"icon_id": "16728120", |
|||
"name": "合并", |
|||
"font_class": "hebing", |
|||
"unicode": "e7b1", |
|||
"unicode_decimal": 59313 |
|||
}, |
|||
{ |
|||
"icon_id": "16728121", |
|||
"name": "向上倾斜", |
|||
"font_class": "xiangshangqingxie", |
|||
"unicode": "e7b2", |
|||
"unicode_decimal": 59314 |
|||
}, |
|||
{ |
|||
"icon_id": "16728122", |
|||
"name": "水平对齐", |
|||
"font_class": "shuipingduiqi", |
|||
"unicode": "e7b3", |
|||
"unicode_decimal": 59315 |
|||
}, |
|||
{ |
|||
"icon_id": "16728123", |
|||
"name": "文本删除线", |
|||
"font_class": "wenbenshanchuxian", |
|||
"unicode": "e7b4", |
|||
"unicode_decimal": 59316 |
|||
}, |
|||
{ |
|||
"icon_id": "16728124", |
|||
"name": "文本右对齐", |
|||
"font_class": "wenbenyouduiqi", |
|||
"unicode": "e7b5", |
|||
"unicode_decimal": 59317 |
|||
}, |
|||
{ |
|||
"icon_id": "16728125", |
|||
"name": "前进", |
|||
"font_class": "qianjin", |
|||
"unicode": "e7b6", |
|||
"unicode_decimal": 59318 |
|||
}, |
|||
{ |
|||
"icon_id": "16728126", |
|||
"name": "图表", |
|||
"font_class": "tubiao", |
|||
"unicode": "e7b7", |
|||
"unicode_decimal": 59319 |
|||
}, |
|||
{ |
|||
"icon_id": "16728127", |
|||
"name": "右边框", |
|||
"font_class": "youbiankuang", |
|||
"unicode": "e7b8", |
|||
"unicode_decimal": 59320 |
|||
}, |
|||
{ |
|||
"icon_id": "16728128", |
|||
"name": "百分号", |
|||
"font_class": "baifenhao", |
|||
"unicode": "e7b9", |
|||
"unicode_decimal": 59321 |
|||
}, |
|||
{ |
|||
"icon_id": "16728129", |
|||
"name": "格式刷", |
|||
"font_class": "geshishua", |
|||
"unicode": "e7ba", |
|||
"unicode_decimal": 59322 |
|||
}, |
|||
{ |
|||
"icon_id": "16728130", |
|||
"name": "保存", |
|||
"font_class": "baocun", |
|||
"unicode": "e7bb", |
|||
"unicode_decimal": 59323 |
|||
}, |
|||
{ |
|||
"icon_id": "16728131", |
|||
"name": "数据验证", |
|||
"font_class": "shujuyanzheng", |
|||
"unicode": "e7bc", |
|||
"unicode_decimal": 59324 |
|||
}, |
|||
{ |
|||
"icon_id": "16728132", |
|||
"name": "截断", |
|||
"font_class": "jieduan", |
|||
"unicode": "e7bd", |
|||
"unicode_decimal": 59325 |
|||
}, |
|||
{ |
|||
"icon_id": "16728133", |
|||
"name": "格式条件", |
|||
"font_class": "geshitiaojian", |
|||
"unicode": "e7be", |
|||
"unicode_decimal": 59326 |
|||
}, |
|||
{ |
|||
"icon_id": "16728134", |
|||
"name": "自动换行", |
|||
"font_class": "zidonghuanhang", |
|||
"unicode": "e7bf", |
|||
"unicode_decimal": 59327 |
|||
}, |
|||
{ |
|||
"icon_id": "16728135", |
|||
"name": "侧边栏展开", |
|||
"font_class": "cebianlanzhankai", |
|||
"unicode": "e7c0", |
|||
"unicode_decimal": 59328 |
|||
}, |
|||
{ |
|||
"icon_id": "16728136", |
|||
"name": "筛选2", |
|||
"font_class": "shaixuan2", |
|||
"unicode": "e7c1", |
|||
"unicode_decimal": 59329 |
|||
}, |
|||
{ |
|||
"icon_id": "16728137", |
|||
"name": "向下倾斜", |
|||
"font_class": "xiangxiaqingxie", |
|||
"unicode": "e7c2", |
|||
"unicode_decimal": 59330 |
|||
}, |
|||
{ |
|||
"icon_id": "16728138", |
|||
"name": "溢出", |
|||
"font_class": "yichu", |
|||
"unicode": "e7c3", |
|||
"unicode_decimal": 59331 |
|||
}, |
|||
{ |
|||
"icon_id": "16728139", |
|||
"name": "垂直合并", |
|||
"font_class": "chuizhihebing", |
|||
"unicode": "e7c4", |
|||
"unicode_decimal": 59332 |
|||
}, |
|||
{ |
|||
"icon_id": "16728140", |
|||
"name": "文本分散对齐", |
|||
"font_class": "wenbenfensanduiqi", |
|||
"unicode": "e7c5", |
|||
"unicode_decimal": 59333 |
|||
}, |
|||
{ |
|||
"icon_id": "16728141", |
|||
"name": "左边框", |
|||
"font_class": "zuobiankuang", |
|||
"unicode": "e7c6", |
|||
"unicode_decimal": 59334 |
|||
}, |
|||
{ |
|||
"icon_id": "16728142", |
|||
"name": "分页查看", |
|||
"font_class": "fenyechakan", |
|||
"unicode": "e7c7", |
|||
"unicode_decimal": 59335 |
|||
}, |
|||
{ |
|||
"icon_id": "16728143", |
|||
"name": "运行", |
|||
"font_class": "yunhang", |
|||
"unicode": "e7c8", |
|||
"unicode_decimal": 59336 |
|||
}, |
|||
{ |
|||
"icon_id": "16728144", |
|||
"name": "列", |
|||
"font_class": "lie", |
|||
"unicode": "e7c9", |
|||
"unicode_decimal": 59337 |
|||
}, |
|||
{ |
|||
"icon_id": "16728145", |
|||
"name": "全屏", |
|||
"font_class": "quanping", |
|||
"unicode": "e7ca", |
|||
"unicode_decimal": 59338 |
|||
}, |
|||
{ |
|||
"icon_id": "16728146", |
|||
"name": "筛选", |
|||
"font_class": "shaixuan", |
|||
"unicode": "e7cb", |
|||
"unicode_decimal": 59339 |
|||
}, |
|||
{ |
|||
"icon_id": "16728147", |
|||
"name": "更新", |
|||
"font_class": "gengxin", |
|||
"unicode": "e7cc", |
|||
"unicode_decimal": 59340 |
|||
}, |
|||
{ |
|||
"icon_id": "16728148", |
|||
"name": "清除", |
|||
"font_class": "qingchu", |
|||
"unicode": "e7cd", |
|||
"unicode_decimal": 59341 |
|||
}, |
|||
{ |
|||
"icon_id": "16728149", |
|||
"name": "行", |
|||
"font_class": "hang", |
|||
"unicode": "e7ce", |
|||
"unicode_decimal": 59342 |
|||
}, |
|||
{ |
|||
"icon_id": "16728150", |
|||
"name": "注释", |
|||
"font_class": "zhushi", |
|||
"unicode": "e7cf", |
|||
"unicode_decimal": 59343 |
|||
}, |
|||
{ |
|||
"icon_id": "16728151", |
|||
"name": "剪", |
|||
"font_class": "jian", |
|||
"unicode": "e7d0", |
|||
"unicode_decimal": 59344 |
|||
}, |
|||
{ |
|||
"icon_id": "16728152", |
|||
"name": "计算", |
|||
"font_class": "jisuan", |
|||
"unicode": "e7d1", |
|||
"unicode_decimal": 59345 |
|||
}, |
|||
{ |
|||
"icon_id": "16728153", |
|||
"name": "加", |
|||
"font_class": "jia", |
|||
"unicode": "e7d2", |
|||
"unicode_decimal": 59346 |
|||
}, |
|||
{ |
|||
"icon_id": "16728154", |
|||
"name": "底部对齐", |
|||
"font_class": "dibuduiqi", |
|||
"unicode": "e7d3", |
|||
"unicode_decimal": 59347 |
|||
}, |
|||
{ |
|||
"icon_id": "16728155", |
|||
"name": "向上90", |
|||
"font_class": "xiangshang90", |
|||
"unicode": "e7d4", |
|||
"unicode_decimal": 59348 |
|||
}, |
|||
{ |
|||
"icon_id": "16728156", |
|||
"name": "无选装", |
|||
"font_class": "wuxuanzhuang", |
|||
"unicode": "e7d5", |
|||
"unicode_decimal": 59349 |
|||
}, |
|||
{ |
|||
"icon_id": "16728157", |
|||
"name": "显示隐藏网格", |
|||
"font_class": "xianshiyincangwangge", |
|||
"unicode": "e7d6", |
|||
"unicode_decimal": 59350 |
|||
}, |
|||
{ |
|||
"icon_id": "16728158", |
|||
"name": "冻结", |
|||
"font_class": "dongjie", |
|||
"unicode": "e7d7", |
|||
"unicode_decimal": 59351 |
|||
}, |
|||
{ |
|||
"icon_id": "16728159", |
|||
"name": "文本左对齐", |
|||
"font_class": "wenbenzuoduiqi", |
|||
"unicode": "e7d8", |
|||
"unicode_decimal": 59352 |
|||
}, |
|||
{ |
|||
"icon_id": "16728161", |
|||
"name": "后退", |
|||
"font_class": "houtui", |
|||
"unicode": "e7da", |
|||
"unicode_decimal": 59354 |
|||
}, |
|||
{ |
|||
"icon_id": "16728162", |
|||
"name": "水平合并", |
|||
"font_class": "shuipinghebing", |
|||
"unicode": "e7db", |
|||
"unicode_decimal": 59355 |
|||
}, |
|||
{ |
|||
"icon_id": "16728163", |
|||
"name": "下边框", |
|||
"font_class": "xiabiankuang", |
|||
"unicode": "e7dc", |
|||
"unicode_decimal": 59356 |
|||
}, |
|||
{ |
|||
"icon_id": "16728164", |
|||
"name": "设置", |
|||
"font_class": "shezhi", |
|||
"unicode": "e7dd", |
|||
"unicode_decimal": 59357 |
|||
} |
|||
] |
|||
} |
|||
|
After Width: | Height: | Size: 66 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,66 @@ |
|||
.luckysheet-icon-img-container.iconfont, |
|||
.luckysheet-submenu-arrow .iconfont |
|||
{ |
|||
font-size: 24px; |
|||
} |
|||
|
|||
.luckysheet-toolbar-menu-button .icon-xiayige, |
|||
.luckysheet-toolbar-combo-button .icon-xiayige |
|||
{ |
|||
font-size: 12px; |
|||
top: -8px; |
|||
left: -3px; |
|||
} |
|||
|
|||
.luckysheet-toolbar-select .icon-xiayige{ |
|||
margin-right: 4px; |
|||
} |
|||
|
|||
#luckysheet-icon-morebtn{ |
|||
position: absolute; |
|||
right: 30px; |
|||
} |
|||
|
|||
|
|||
.toolbar .luckysheet-icon-text-color, |
|||
.toolbar .luckysheet-icon-cell-color, |
|||
.toolbar .luckysheet-icon-border-all, |
|||
.toolbar .luckysheet-icon-valign, |
|||
.toolbar .luckysheet-icon-textwrap |
|||
{ |
|||
margin-right: -3px; |
|||
} |
|||
|
|||
.toolbar .luckysheet-icon-merge-button, |
|||
.toolbar .luckysheet-icon-align, |
|||
.toolbar .luckysheet-icon-rotation, |
|||
.toolbar .luckysheet-icon-function, |
|||
.toolbar .luckysheet-freezen-btn-horizontal |
|||
{ |
|||
margin-right: -4px; |
|||
} |
|||
|
|||
#luckysheet-icon-morebtn{ |
|||
padding: 0 13px 0 5px; |
|||
} |
|||
#luckysheet-icon-morebtn .iconfont{ |
|||
top:-9px; |
|||
} |
|||
|
|||
|
|||
/* custom common style */ |
|||
|
|||
.lucky-button-custom{ |
|||
cursor: pointer; |
|||
display: flex; |
|||
align-items: center; |
|||
justify-content: center; |
|||
} |
|||
.lucky-button-custom:hover{ |
|||
background-color: #E1E4E8; |
|||
} |
|||
|
|||
#luckysheet-icon-morebtn-div{ |
|||
border-left: 1px solid rgb(212, 212, 212); |
|||
border-right: 1px solid rgb(212, 212, 212); |
|||
} |
|||
Loading…
Reference in new issue