first commit

This commit is contained in:
Mr.Qin
2022-08-19 19:48:37 +08:00
commit afdd648b65
3275 changed files with 631084 additions and 0 deletions

View File

@@ -0,0 +1 @@
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#FAFAFA;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 10px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view .layui-code-ol li:first-child{padding-top:10px}.layui-code-view .layui-code-ol li:last-child{padding-bottom:10px}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}.layui-code-demo .layui-code{visibility:visible!important;margin:-15px;border-top:none;border-right:none;border-bottom:none}.layui-code-demo .layui-tab-content{padding:15px;border-top:none}

View File

@@ -0,0 +1,16 @@
/** 图标字体 **/
@font-face {font-family: 'laydate-icon';
src: url('./font/iconfont.eot');
src: url('./font/iconfont.eot#iefix') format('embedded-opentype'),
url('./font/iconfont.svg#iconfont') format('svg'),
url('./font/iconfont.woff') format('woff'),
url('./font/iconfont.ttf') format('truetype');
}
.laydate-icon{
font-family:"laydate-icon" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,100 @@
/*!
* tags标签组件
* by meystack to www.swiftadmin.net
* Apache2.0 Licensed
*/
.layui-tags {
border: 1px solid #e3e7f1;
height: 31px;
line-height: 31px;
border-width: 1px;
border-style: solid;
background-color: #fff;
border-radius: 2px;
cursor: text;
padding-left: 10px;
}
.layui-tags input {
width: 93px;
font-family: helvetica;
font-size: 13px;
border: 1px solid transparent;
background: 0 0;
color: #000;
outline: 0;
height: 31px;
float: left;
}
.layui-tags span.tag-elem {
float: left;
height: 25px;
line-height: 16px;
font-size: 12px;
box-sizing: border-box;
margin-right: 5px;
padding: 5px;
margin-top: 4px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
font-family: helvetica;
color: #1890ff;
background: #e6f7ff;
border: 1px solid #91d5ff;
cursor: pointer;
}
.layui-tags span.tag-elem i {
font-family: Verdana;
color: #0084ff;
margin-left: 5px;
font-size: 12px;
cursor: pointer;
}
.layui-tags span.tag-elem i:hover {
color: red;
}
#layui-tags-ajax {
text-align: left;
cursor: default;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 2px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
position: absolute;
display: none;
z-index: 1029;
max-height: 254px;
overflow: hidden;
overflow-y: auto;
width: 138px;
box-sizing: border-box;
}
#layui-tags-ajax li {
position: relative;
line-height: 20px;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1em;
color: #333;
padding: 5px 10px;
cursor: pointer;
white-space: nowrap;
}
#layui-tags-ajax li:hover,#layui-tags-ajax .layui-tag-this {
background: #f0f0f0;
}
#layui-tags-ajax li b {
color: red;
}