mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 01:16:15 -04:00
/admin/plugins: Add progress indicators and report errors
This commit is contained in:
parent
b35d9c14fd
commit
e8bae61cf5
4 changed files with 101 additions and 53 deletions
|
@ -35,7 +35,8 @@ div.menu li:last-child {
|
|||
|
||||
div.innerwrapper {
|
||||
padding: 15px;
|
||||
padding-left: 265px;
|
||||
margin-left: 265px;
|
||||
position:relative; /* Allows us to position the loading indicator relative to this div */
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
|
@ -121,6 +122,7 @@ table {
|
|||
border-spacing: 0;
|
||||
width: 100%;
|
||||
margin: 20px 0;
|
||||
position:relative; /* Allows us to position the loading indicator relative to the table */
|
||||
}
|
||||
|
||||
table thead tr {
|
||||
|
@ -135,13 +137,23 @@ td, th {
|
|||
display: none;
|
||||
}
|
||||
|
||||
#progress {
|
||||
.progress {
|
||||
position: absolute;
|
||||
bottom: 50px;
|
||||
top: 0; left: 0; bottom:0; right:0;
|
||||
padding: auto;
|
||||
padding-top: 20%;
|
||||
|
||||
background: rgba(255,255,255,0.85);
|
||||
display: none;
|
||||
/*border-radius: 7px;
|
||||
border: 1px solid #ddd;*/
|
||||
}
|
||||
|
||||
#progress img {
|
||||
vertical-align: top;
|
||||
.progress * {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.settings {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue