Skip to content

Commit 313c520

Browse files
committed
v3.2.20
1 parent 79dfa43 commit 313c520

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

cms/app/JR.Cms.WebUI/public/mui/html/summary.html

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
margin: 2em 0 1em 0;
4646
display: block;
4747
}
48+
.ui-dialog .close {
49+
display: none !important;
50+
}
4851
</style>
4952
</head>
5053
<body>

cms/core/JR.Cms.Web/Resource/SiteResouce/cms.core.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ $b.event.add(window, 'load', function () {
190190

191191
// 滚动到目标
192192
var scrollLock = 0;
193-
$b.$fn(".scoll-to").click(function () {
193+
$b.$fn(".scroll-to").click(function () {
194194
if (scrollLock == 1) return;
195195
scrollLock = 1;
196196
var target = this.attr("target");
@@ -210,7 +210,7 @@ $b.event.add(window, 'load', function () {
210210
} else {
211211
doc.scrollTop += setup;
212212
}
213-
}, 10);
213+
},10);
214214
});
215215

216216
// 将元素绝对定位

cms/core/JR.Cms.Web/Resource/SiteResouce/site-base.css

+13-6
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,19 @@ img{max-width:100%;border:0;}
8484
.gra-circle-fill-button:hover{color:#2699FB;background:#FFF;color:#2699FB}
8585

8686
/* 气泡 */
87-
.gra-pop{position:relative;background:#FFF;border-radius:8px;
88-
background:#F00;color:#FFF;padding:10px;}
89-
.gra-pop i{position:absolute;bottom:-10px;left:0;right:0;margin:0 auto; width: 0;height: 0;
90-
border-left: 10px solid transparent;border-right: 10px solid transparent;border-top: 10px solid #F00;}
91-
.gra-pop-dark{background:#333;}
92-
.gra-pop-dark i{border-top-color:#333}
87+
.gra-pop{position:relative;background:#FFE;border-radius:10px;color:#000;padding:10px;}
88+
.gra-pop-left,.gra-pop-right,.gra-pop-top,.gra-pop-bottom{position:absolute;top:0;bottom:0;
89+
left:0;right:0;margin:0 auto;width: 0;height: 0;border:solid 10px transparent;}
90+
.gra-pop .gra-pop-left,.gra-pop .gra-pop-right{top:calc(50% - 10px);}
91+
.gra-pop .gra-pop-top{top:-10px;bottom:inherit;border-bottom-color:#FFE;border-top:0;}
92+
.gra-pop .gra-pop-bottom{bottom:-10px;top:inherit;border-top-color:#FFE;border-bottom:0;}
93+
.gra-pop .gra-pop-left{left:-10px;right:inherit;border-right-color: #FFE;border-left:0;}
94+
.gra-pop .gra-pop-right{right:-10px;left:inherit;border-left-color:#FFE;border-right:0;}
95+
.gra-pop-dark{background:#333;color:#FFF;}
96+
.gra-pop-dark .gra-pop-left{border-right-color:#333;}
97+
.gra-pop-dark .gra-pop-right{border-left-color:#333;}
98+
.gra-pop-dark .gra-pop-top{border-bottom-color:#333;}
99+
.gra-pop-dark .gra-pop-bottom{border-top-color:#333;}
93100

94101
/* big-title */
95102
.gra-big-tit{font-size:1.6em;margin:30px 0;font-weight:400;text-align:center;}

0 commit comments

Comments
 (0)