mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-08 16:05:05 -04:00
small cleanups
This commit is contained in:
parent
11682661e4
commit
b3904a6497
3 changed files with 1 additions and 50 deletions
|
@ -520,7 +520,6 @@ table#otheruserstable { display: none; }
|
||||||
z-index: 11;
|
z-index: 11;
|
||||||
}
|
}
|
||||||
#connectionboxinner .connecting {
|
#connectionboxinner .connecting {
|
||||||
/*margin-top: 20px;*/
|
|
||||||
font-size: 2.0em; color: #555;
|
font-size: 2.0em; color: #555;
|
||||||
text-align: center; display: none;
|
text-align: center; display: none;
|
||||||
}
|
}
|
||||||
|
@ -533,7 +532,6 @@ table#otheruserstable { display: none; }
|
||||||
#connectionboxinner .disconnected h2 {
|
#connectionboxinner .disconnected h2 {
|
||||||
font-size: 1.8em; color: #333;
|
font-size: 1.8em; color: #333;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
/*margin-top: 10px; margin-left: 10px; margin-right: 10px;*/
|
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
#connectionboxinner .disconnected p {
|
#connectionboxinner .disconnected p {
|
||||||
|
@ -546,7 +544,6 @@ table#otheruserstable { display: none; }
|
||||||
.cboxdisconnected #connectionboxinner .disconnected { display: block; }
|
.cboxdisconnected #connectionboxinner .disconnected { display: block; }
|
||||||
|
|
||||||
#connectionboxinner .reconnecting {
|
#connectionboxinner .reconnecting {
|
||||||
/*margin-top: 20px;*/
|
|
||||||
font-size: 1.6em; color: #555;
|
font-size: 1.6em; color: #555;
|
||||||
text-align: center; display: none;
|
text-align: center; display: none;
|
||||||
}
|
}
|
||||||
|
@ -616,7 +613,6 @@ table#otheruserstable { display: none; }
|
||||||
background: white;
|
background: white;
|
||||||
border: 1px solid #999;
|
border: 1px solid #999;
|
||||||
}
|
}
|
||||||
/*.modaldialog .modaldialog-inner { padding: 10pt; }*/
|
|
||||||
.modaldialog .modaldialog-hide {
|
.modaldialog .modaldialog-hide {
|
||||||
float: right;
|
float: right;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -697,20 +693,6 @@ table#otheruserstable { display: none; }
|
||||||
top: 5px; right: 220px;
|
top: 5px; right: 220px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*#modaloverlay {
|
|
||||||
z-index: 500; display: none;
|
|
||||||
background-repeat: repeat-both;
|
|
||||||
width: 100%; position: absolute;
|
|
||||||
height: 100%; left: 0; top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
* html #modaloverlay { /* for IE 6+ *//*
|
|
||||||
opacity: 1; /* in case this is looked at *//*
|
|
||||||
background-image: none;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
/* scale the image *//*
|
|
||||||
}*/
|
|
||||||
|
|
||||||
a#topbarmaximize {
|
a#topbarmaximize {
|
||||||
float: right;
|
float: right;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
@ -1198,16 +1180,6 @@ input[type=checkbox] {
|
||||||
width: 185px !important;
|
width: 185px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*@media screen and (max-width: 960px) {
|
|
||||||
.modaldialog {
|
|
||||||
position: relative;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 80%;
|
|
||||||
top: 40px;
|
|
||||||
left: 0;
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
@media screen and (max-width: 600px) {
|
@media screen and (max-width: 600px) {
|
||||||
#editbar ul li {
|
#editbar ul li {
|
||||||
padding: 4px 1px;
|
padding: 4px 1px;
|
||||||
|
|
|
@ -190,13 +190,6 @@ var padmodals = (function()
|
||||||
{
|
{
|
||||||
'opacity': 1
|
'opacity': 1
|
||||||
}, duration);
|
}, duration);
|
||||||
/*$("#modaloverlay").show().css(
|
|
||||||
{
|
|
||||||
'opacity': 0
|
|
||||||
}).animate(
|
|
||||||
{
|
|
||||||
'opacity': 1
|
|
||||||
}, duration);*/
|
|
||||||
},
|
},
|
||||||
hideModal: function(duration)
|
hideModal: function(duration)
|
||||||
{
|
{
|
||||||
|
@ -206,17 +199,7 @@ var padmodals = (function()
|
||||||
$(".modaldialog").animate(
|
$(".modaldialog").animate(
|
||||||
{
|
{
|
||||||
'opacity': 0
|
'opacity': 0
|
||||||
}, duration, function()
|
}, duration);
|
||||||
{
|
|
||||||
//$("#modaloverlay").hide();
|
|
||||||
});
|
|
||||||
/*$("#modaloverlay").animate(
|
|
||||||
{
|
|
||||||
'opacity': 0
|
|
||||||
}, duration, function()
|
|
||||||
{
|
|
||||||
$("#modaloverlay").hide();
|
|
||||||
});*/
|
|
||||||
},
|
},
|
||||||
hideFeedbackLaterIfNoOtherInteraction: function()
|
hideFeedbackLaterIfNoOtherInteraction: function()
|
||||||
{
|
{
|
||||||
|
|
|
@ -253,10 +253,6 @@
|
||||||
|
|
||||||
<div id="focusprotector"> </div>
|
<div id="focusprotector"> </div>
|
||||||
|
|
||||||
<!--<div id="modaloverlay">
|
|
||||||
<div id="modaloverlay-inner"></div>
|
|
||||||
</div>-->
|
|
||||||
|
|
||||||
<script type="text/javascript" src="../static/js/require-kernel.js"></script>
|
<script type="text/javascript" src="../static/js/require-kernel.js"></script>
|
||||||
<script type="text/javascript" src="../socket.io/socket.io.js"></script>
|
<script type="text/javascript" src="../socket.io/socket.io.js"></script>
|
||||||
<script type="text/javascript" src="../minified/pad.js?callback=require.define"></script>
|
<script type="text/javascript" src="../minified/pad.js?callback=require.define"></script>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue