系统公告功能修改

添加notice,layNotify提示插件
This commit is contained in:
tqzhang 2024-02-27 09:59:46 +08:00
parent 77a13e46cf
commit 20464c9090
16 changed files with 16842 additions and 16 deletions

View File

@ -0,0 +1,762 @@
[class^=layx-] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: transparent;
margin: 0;
padding: 0
}
#layx-body.zlayx-body-noscroll {
overflow: hidden !important
}
.layx-flexbox {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex
}
.layx-flex-row {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-flow: row;
-ms-flex-flow: row;
flex-flow: row
}
.layx-flex-row-reverse {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-webkit-flex-flow: row-reverse;
-ms-flex-flow: row-reverse;
flex-flow: row-reverse
}
.layx-flex-column {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-flow: column;
-ms-flex-flow: column;
flex-flow: column
}
.layx-flex-center, .layx-flex-vertical-center {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
.layx-flex-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
.layx-flex-item {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1
}
#layx-salver-bar {
position: fixed
}
#layx-salver-bar.layx-animate-salver-slide-up {
-webkit-animation-name: layx-animate-salver-slide-up;
animation-name: layx-animate-salver-slide-up
}
#layx-salver-bar.layx-animate-salver-slide-down {
-webkit-animation-name: layx-animate-salver-slide-down;
animation-name: layx-animate-salver-slide-down
}
.layx-salver-button {
position: relative;
overflow: hidden;
background-color: #f1f1f1
}
.layx-salver-button:after {
position: absolute;
content: "";
border-top: 5px solid #ddd;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%
}
.layx-salver-button:hover {
background-color: #e9e9e9
}
.layx-salver-button.layx-salver-button-active {
background-color: #f5f5f5
}
.layx-salver-button.layx-salver-button-active:after {
border-top: 5px solid #3baced
}
.layx-salver-button .layx-icon {
font-size: 20px;
color: #666
}
.layx-salver-button.layx-salver-button-active .layx-icon {
color: #3baced
}
.layx-icon {
width: 1em;
height: 1em;
vertical-align: -.15em;
fill: currentColor;
overflow: hidden;
font-size: 14px;
display: inline-block;
line-height: normal;
pointer-events: none
}
.layx-window {
position: relative;
overflow: hidden
}
.layx-window.layx-window-layer {
position: fixed
}
.layx-window.layx-window-min {
opacity: 0;
display: none
}
.layx-drag-layer {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: transparent;
display: none
}
.layx-drag-layer.layx-drag-layer-active {
display: block
}
.layx-animate {
-webkit-animation-duration: .1s;
animation-duration: .1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.layx-animate-d3s {
-webkit-animation-duration: .3s;
animation-duration: .3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.layx-animate-zoom-show {
-webkit-animation-name: layx-animate-zoom-show;
animation-name: layx-animate-zoom-show
}
.layx-animate-zoom-destroy {
-webkit-animation-name: layx-animate-zoom-destroy;
animation-name: layx-animate-zoom-destroy
}
.layx-animate-zoom-to-min {
-webkit-animation-name: layx-animate-zoom-to-min;
animation-name: layx-animate-zoom-to-min
}
.layx-animate-zoom-drag-to-normal {
-webkit-animation-name: layx-animate-zoom-drag-to-normal;
animation-name: layx-animate-zoom-drag-to-normal
}
.layx-animate-zoom-to-max, .layx-animate-zoom-to-normal {
-webkit-transition-property: left, top, width, height;
transition-property: left, top, width, height;
-webkit-transition-duration: .1s;
transition-duration: .1s;
-webkit-transition-timing-function: ease-in-out;
transition-timing-function: ease-in-out
}
@-webkit-keyframes layx-animate-zoom-show {
0% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9)
}
}
@keyframes layx-animate-zoom-show {
0% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9)
}
}
@-webkit-keyframes layx-animate-zoom-drag-to-normal {
0% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
}
@keyframes layx-animate-zoom-drag-to-normal {
0% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
}
@-webkit-keyframes layx-animate-zoom-destroy {
0% {
opacity: 1
}
50% {
opacity: 0
}
to {
opacity: 0;
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9)
}
}
@keyframes layx-animate-zoom-destroy {
0% {
opacity: 1
}
50% {
opacity: 0
}
to {
opacity: 0;
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9)
}
}
@-webkit-keyframes layx-animate-zoom-to-min {
0% {
opacity: 1
}
50% {
opacity: 0
}
to {
opacity: 0;
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9)
}
}
@keyframes layx-animate-zoom-to-min {
0% {
opacity: 1
}
50% {
opacity: 0
}
to {
opacity: 0;
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9)
}
}
@-webkit-keyframes layx-animate-salver-slide-up {
0% {
bottom: -45px
}
to {
bottom: 0
}
}
@keyframes layx-animate-salver-slide-up {
0% {
bottom: -45px
}
to {
bottom: 0
}
}
@-webkit-keyframes layx-animate-salver-slide-down {
0% {
bottom: 0
}
to {
bottom: -45px
}
}
@keyframes layx-animate-salver-slide-down {
0% {
bottom: 0
}
to {
bottom: -45px
}
}
@-webkit-keyframes layx-animate-fade-in-right {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@keyframes layx-animate-fade-in-right {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@-webkit-keyframes layx-animate-fade-in-right-reverse {
0% {
opacity: 1;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
@keyframes layx-animate-fade-in-right-reverse {
0% {
opacity: 1;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
@-webkit-keyframes layx-animate-fade-in-left {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@keyframes layx-animate-fade-in-left {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
}
@-webkit-keyframes layx-animate-slide-to-top {
0% {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@keyframes layx-animate-slide-to-top {
0% {
-webkit-transform: translateZ(0);
transform: translateZ(0)
}
to {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
.layx-parclose {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: transparent
}
.layx-context-menu-bar {
position: fixed;
background-color: #fff;
-webkit-box-shadow: rgba(0, 0, 0, .3) 0 2px 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
border: 1px solid #d5d5d5;
width: 180px;
max-width: 240px;
display: none
}
.layx-context-menu-bar.layx-context-menu-bar-active {
display: block
}
.layx-context-menu-button:hover {
background-color: #e9e9e9
}
.layx-context-menu-button-label {
padding-left: 10px;
display: inline-block;
font-size: 13px;
color: #444
}
.layx-context-menu-more {
color: #999;
padding: 0 5px
}
.layx-resize-bar > [class^=layx-resize-item-] {
position: absolute;
z-index: 3;
overflow: hidden;
-ms-touch-action: none;
touch-action: none
}
.layx-resize-item-bottom, .layx-resize-item-top {
height: 6px;
left: 6px;
right: 6px
}
.layx-resize-item-top {
top: 0;
cursor: n-resize
}
.layx-resize-item-bottom {
bottom: 0;
cursor: s-resize
}
.layx-resize-item-left, .layx-resize-item-right {
width: 6px;
top: 6px;
bottom: 6px
}
.layx-resize-item-left {
left: 0;
cursor: w-resize
}
.layx-resize-item-right {
right: 0;
cursor: e-resize
}
.layx-resize-item-left-bottom, .layx-resize-item-left-top, .layx-resize-item-right-bottom, .layx-resize-item-right-top {
width: 6px;
height: 6px
}
.layx-resize-item-left-top {
left: 0;
top: 0;
cursor: nw-resize
}
.layx-resize-item-right-top {
right: 0;
top: 0;
cursor: ne-resize
}
.layx-resize-item-left-bottom {
left: 0;
bottom: 0;
cursor: sw-resize
}
.layx-resize-item-right-bottom {
right: 0;
bottom: 0;
cursor: se-resize
}
.layx-resize-bar.layx-resize-bar-disabled > [class^=layx-resize-item-] {
cursor: default !important
}
.layx-tool-bar {
-ms-touch-action: none;
touch-action: none;
-webkit-overflow-scrolling: touch
}
.layx-action-button {
text-align: center
}
.layx-action-button:hover {
background-color: #e5e5e5
}
.layx-action-button.layx-action-button-destroy:hover {
background-color: #e81123;
color: #fff
}
.layx-action-button.layx-action-button-hidden {
display: none;
pointer-events: none
}
.layx-title-bar {
min-width: 0;
padding: 0 5px
}
.layx-window-title {
font-size: 14px;
min-width: 0;
line-height: 0
}
.layx-window-title .layx-window-title-label {
display: inline-block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 100%;
word-wrap: break-word;
line-height: normal
}
.layx-title-bar .layx-window-icon {
margin-right: 5px
}
.layx-top-menu-bar {
min-height: 25px;
background: #fff
}
.layx-top-menu-button {
float: left;
padding: 0 8px;
line-height: 25px
}
.layx-top-menu-button-label {
display: inline-block;
font-size: 13px;
color: #444
}
.layx-top-menu-button.layx-top-menu-button-active, .layx-top-menu-button:hover {
background-color: #e9e9e9
}
.layx-content-container {
width: 100%;
position: relative;
overflow: auto;
font-size: 14px;
opacity: 1
}
.layx-html-content {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text
}
.layx-content-penetrate {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
background: transparent;
visibility: hidden
}
.layx-content-penetrate.layx-content-penetrate-active {
visibility: visible
}
.layx-content-container.layx-content-container-fade-out {
opacity: 0
}
.layx-url-content {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1
}
.layx-notice {
position: fixed;
margin-bottom: 10px;
padding: 16px;
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
background: #fff;
width: 320px;
right: 24px;
overflow: hidden
}
.layx-notice.layx-animate-fade-in-right {
-webkit-animation-name: layx-animate-fade-in-right;
animation-name: layx-animate-fade-in-right
}
.layx-notice.layx-animate-fade-in-right-reverse {
-webkit-animation-name: layx-animate-fade-in-right-reverse;
animation-name: layx-animate-fade-in-right-reverse
}
.layx-notice.layx-animate-slide-to-top {
-webkit-animation-name: layx-animate-slide-to-top;
animation-name: layx-animate-slide-to-top
}
.layx-notice-close-button {
position: absolute;
top: 10px;
right: 10px;
z-index: 1;
width: 16px;
height: 16px;
border-radius: 50%;
cursor: pointer
}
.layx-notice-close-button .layx-icon {
font-size: 10px
}
.layx-notice-close-button:hover {
background-color: #e81123
}
.layx-notice-close-button:hover .layx-icon {
color: #fff
}
.layx-notice-icon {
margin-right: 16px
}
.layx-notice-icon .layx-icon {
font-size: 26px
}
.layx-notice-title {
font-weight: 700;
margin-bottom: 8px;
font-size: 14px;
line-height: 17px;
color: #17233d;
white-space: nowrap
}
.layx-notice-content {
font-size: 13px;
color: #515a6e;
line-height: 1.5
}
.layx-notice-time {
font-size: 10px;
color: #999;
text-align: right;
margin-top: 8px
}
.layx-notice-process {
position: absolute;
left: 0;
bottom: 0;
height: 2px;
z-index: 1;
background: #dedede;
width: 0
}
.layx-notice-info {
color: #909399
}
.layx-notice-success {
color: #1890ff
}
.layx-notice-warning {
color: #ff9900
}
.layx-notice-error {
color: #fa3534
}
.layx-statu-bar {
position: relative;
font-size: 13px
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-view{display:block;position:relative;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#fafafa;color:#333;font-family:Courier New;font-size:13px}.layui-code-title{position:relative;padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee;font-size:12px}.layui-code-title>.layui-code-about{position:absolute;right:10px;top:0;color:#b7b7b7}.layui-code-about>a{padding-left:10px}.layui-code-view>.layui-code-ol,.layui-code-view>.layui-code-ul{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,.layui-code-view>.layui-code-ul>li:first-child{padding-top:10px}.layui-code-view>.layui-code-ol>li:last-child,.layui-code-view>.layui-code-ul>li:last-child{padding-bottom:10px}.layui-code-view>.layui-code-ul>li{position:relative;line-height:20px;padding:0 10px;list-style-type:none;*list-style-type:none;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-dark{border:1px solid #0c0c0c;border-left-color:#3f3f3f;background-color:#0c0c0c;color:#c2be9e}.layui-code-dark>.layui-code-title{border-bottom:none}.layui-code-dark>.layui-code-ol>li,.layui-code-dark>.layui-code-ul>li{background-color:#3f3f3f;border-left:none}.layui-code-dark>.layui-code-ul>li{margin-left:6px}.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}

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: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,228 @@
.toast-title {
font-weight: bold;
}
.toast-message {
-ms-word-wrap: break-word;
word-wrap: break-word;
}
.toast-message a,
.toast-message label {
color: #FFFFFF;
}
.toast-message a:hover {
color: #CCCCCC;
text-decoration: none;
}
.toast-close-button {
position: relative;
right: -0.3em;
top: -0.3em;
float: right;
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
-webkit-text-shadow: 0 1px 0 #ffffff;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.8;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
filter: alpha(opacity=80);
line-height: 1;
}
.toast-close-button:hover,
.toast-close-button:focus {
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.4;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
filter: alpha(opacity=40);
}
.rtl .toast-close-button {
left: -0.3em;
float: left;
right: 0.3em;
}
/*Additional properties for button version
iOS requires the button element instead of an anchor tag.
If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.toast-top-center {
top: 0;
right: 0;
width: 100%;
}
.toast-bottom-center {
bottom: 0;
right: 0;
width: 100%;
}
.toast-top-full-width {
top: 0;
right: 0;
width: 100%;
}
.toast-bottom-full-width {
bottom: 0;
right: 0;
width: 100%;
}
.toast-top-left {
top: 12px;
left: 12px;
}
.toast-top-right {
top: 12px;
right: 12px;
}
.toast-bottom-right {
right: 12px;
bottom: 12px;
}
.toast-bottom-left {
bottom: 12px;
left: 12px;
}
#toast-container {
position: fixed;
z-index: 999999;
pointer-events: none;
/*overrides*/
}
#toast-container * {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#toast-container > div {
position: relative;
pointer-events: auto;
overflow: hidden;
margin: 0 0 6px;
padding: 15px 15px 15px 50px;
width: 300px;
-moz-border-radius: 3px 3px 3px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
border-radius: 3px 3px 3px 3px;
background-position: 15px center;
background-repeat: no-repeat;
-moz-box-shadow: 0 0 12px #999999;
-webkit-box-shadow: 0 0 12px #999999;
box-shadow: 0 0 12px #999999;
color: #FFFFFF;
opacity: 0.8;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
filter: alpha(opacity=80);
}
#toast-container > div.rtl {
direction: rtl;
padding: 15px 50px 15px 15px;
background-position: right 15px center;
}
#toast-container > div:hover {
-moz-box-shadow: 0 0 12px #000000;
-webkit-box-shadow: 0 0 12px #000000;
box-shadow: 0 0 12px #000000;
opacity: 1;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
filter: alpha(opacity=100);
cursor: pointer;
}
#toast-container > .toast-info {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-error {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
width: 300px;
margin-left: auto;
margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
width: 96%;
margin-left: auto;
margin-right: auto;
}
.toast {
background-color: #030303;
}
.toast-success {
background-color: #1890ff;
}
.toast-error {
background-color: #fa3534;
}
.toast-info {
background-color: #909399;
}
.toast-warning {
background-color: #ff9900;
}
.toast-progress {
position: absolute;
left: 0;
bottom: 0;
height: 4px;
background-color: #000000;
opacity: 0.4;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
filter: alpha(opacity=40);
}
/*Responsive Design*/
@media all and (max-width: 240px) {
#toast-container > div {
padding: 8px 8px 8px 50px;
width: 11em;
}
#toast-container > div.rtl {
padding: 8px 50px 8px 8px;
}
#toast-container .toast-close-button {
right: -0.2em;
top: -0.2em;
}
#toast-container .rtl .toast-close-button {
left: -0.2em;
right: 0.2em;
}
}
@media all and (min-width: 241px) and (max-width: 480px) {
#toast-container > div {
padding: 8px 8px 8px 50px;
width: 18em;
}
#toast-container > div.rtl {
padding: 8px 50px 8px 8px;
}
#toast-container .toast-close-button {
right: -0.2em;
top: -0.2em;
}
#toast-container .rtl .toast-close-button {
left: -0.2em;
right: 0.2em;
}
}
@media all and (min-width: 481px) and (max-width: 768px) {
#toast-container > div {
padding: 15px 15px 15px 50px;
width: 25em;
}
#toast-container > div.rtl {
padding: 15px 50px 15px 15px;
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -17,20 +17,6 @@
text-align: right;
}
/* 自定义滚动条样式 */
/* WebKit 浏览器 */
::-webkit-scrollbar {
width: 8px; /* 滚动条宽度 */
}
::-webkit-scrollbar-track {
background-color: #f1f1f1; /* 滚动条背景色 */
}
::-webkit-scrollbar-thumb {
background-color: #888; /* 滚动条滑块颜色 */
}
#commit {
position: fixed;
bottom: 20px;
@ -201,7 +187,7 @@
</body>
</html>
<script src="../../js/jquery/jquery-3.6.0.js"></script>
<script src="../../js/jquery-3.6.0.js"></script>
<script src="../../js/layui-v2.9.6/layui.js"></script>
<script type="text/javascript" src="../../js/jq.js"></script>
<script src="../../js/common_methon.js"></script>