|
|
@@ -11,13 +11,13 @@
|
|
|
</head>
|
|
|
<body>
|
|
|
<section style="-webkit-app-region: drag" class="bowerHeader">
|
|
|
- <ul class="bowerCreaterWindow" style="-webkit-app-region: drag">
|
|
|
+ <ul class="bowerCreaterWindow" style="-webkit-app-region: drag;padding:15px 0 0">
|
|
|
<button class="BrowwerAdd"></button>
|
|
|
</ul>
|
|
|
<section style="-webkit-app-region: no-drag" class="bowerHeaderMenu clearfix">
|
|
|
- <button type="button" class="icon-minus min"></button>
|
|
|
- <button type="button" class="icon-window-restore max"></button>
|
|
|
- <button type="button" class="icon-cancel close"></button>
|
|
|
+ <button type="button" class="icon-window-minimize"></button>
|
|
|
+ <button type="button" class="icon-window-maximize max"></button>
|
|
|
+ <button type="button" class="icon-times close" style="font-size:16px"></button>
|
|
|
</section>
|
|
|
</section>
|
|
|
<ul class="bowerHeaderSeach" id="CampusInfoBrowserHeaderSeach">
|
|
|
@@ -64,10 +64,12 @@
|
|
|
$(document).on("click",".max",function () {//最大化
|
|
|
if(isBig){
|
|
|
ipc.send('show-window');
|
|
|
+ $(".max")[0].className='icon-window-restore max';
|
|
|
$(".bowerCreaterWindow")[0].style.padding = "0";
|
|
|
|
|
|
}else{
|
|
|
ipc.send('orignal-window');
|
|
|
+ $(".max")[0].className='icon-window-maximize max';
|
|
|
$(".bowerCreaterWindow")[0].style.padding = "15px 0 0";
|
|
|
|
|
|
}
|