mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 11:22:41 +01:00
commit
eed18feed7
2 changed files with 293 additions and 217 deletions
|
@ -1,12 +1,87 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
height: 100%;
|
||||||
|
color: #333;
|
||||||
|
font: 14px helvetica, sans-serif;
|
||||||
|
background: #ddd;
|
||||||
|
background: -webkit-radial-gradient(circle,#aaa,#eee 60%) center fixed;
|
||||||
|
background: -moz-radial-gradient(circle,#aaa,#eee 60%) center fixed;
|
||||||
|
background: -ms-radial-gradient(circle,#aaa,#eee 60%) center fixed;
|
||||||
|
background: -o-radial-gradient(circle,#aaa,#eee 60%) center fixed;
|
||||||
|
border-top: 8px solid rgba(51,51,51,.8);
|
||||||
|
}
|
||||||
|
#wrapper {
|
||||||
|
margin-top: 160px;
|
||||||
|
padding: 15px;
|
||||||
|
background: #fff;
|
||||||
|
opacity: .9;
|
||||||
|
box-shadow: 0px 1px 8px rgba(0,0,0,0.3);
|
||||||
|
max-width: 700px;
|
||||||
|
margin: auto;
|
||||||
|
border-radius: 0 0 7px 7px;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-size: 29px;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
.seperator {
|
||||||
|
margin: 10px 0;
|
||||||
|
height: 1px;
|
||||||
|
background: #aaa;
|
||||||
|
background: -webkit-linear-gradient(left, #fff, #aaa 20%, #aaa 80%, #fff);
|
||||||
|
background: -moz-linear-gradient(left, #fff, #aaa 20%, #aaa 80%, #fff);
|
||||||
|
background: -ms-linear-gradient(left, #fff, #aaa 20%, #aaa 80%, #fff);
|
||||||
|
background: -o-linear-gradient(left, #fff, #aaa 20%, #aaa 80%, #fff);
|
||||||
|
}
|
||||||
|
form {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
#inner {
|
||||||
|
width: 300px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
button, input {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
input[type="button"] {
|
||||||
|
height: 30px;
|
||||||
|
margin: 0;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
input[value="Uninstall"], input[value="Install"] {
|
||||||
|
float: right;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
input[type="text"] {
|
||||||
|
border-radius: 3px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
padding: 10px;
|
||||||
|
*padding: 0; /* IE7 hack */
|
||||||
|
width: 100%;
|
||||||
|
outline: none;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
margin: 0 0 5px 1px;
|
||||||
|
max-width: 500px;
|
||||||
|
}
|
||||||
|
button{
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border: 1px solid #ddd;
|
||||||
|
border-radius: 3px;
|
||||||
|
border-spacing: 0;
|
||||||
|
width: 100%;
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
|
table thead tr {
|
||||||
|
background: #eee;
|
||||||
}
|
}
|
||||||
td, th {
|
td, th {
|
||||||
border: 1px solid black;
|
padding: 5px;
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px;
|
|
||||||
padding-top: 2px;
|
|
||||||
padding-bottom: 2px;
|
|
||||||
}
|
}
|
||||||
.template {
|
.template {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -46,4 +121,3 @@ td, th {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -95,6 +95,12 @@
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div id="wrapper">
|
||||||
|
|
||||||
|
<h1>Etherpad Lite</h1>
|
||||||
|
|
||||||
|
<div class="seperator"></div>
|
||||||
|
|
||||||
<% if (errors.length) { %>
|
<% if (errors.length) { %>
|
||||||
<div class="errors">
|
<div class="errors">
|
||||||
<% errors.forEach(function (item) { %>
|
<% errors.forEach(function (item) { %>
|
||||||
|
@ -104,7 +110,7 @@
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
||||||
|
|
||||||
<h1>Installed plugins</h1>
|
<h2>Installed plugins</h2>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -125,12 +131,10 @@
|
||||||
<tbody id="installed-plugins">
|
<tbody id="installed-plugins">
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<div class="seperator"></div>
|
||||||
|
<h2>Search for plugins to install</h2>
|
||||||
|
|
||||||
<h1>Search for plugins to install</h1>
|
|
||||||
<form>
|
<form>
|
||||||
<input type="text" name="search" value="" id="search-query">
|
<input type="text" name="search" placeholder="Search term" id="search-query">
|
||||||
<input type="button" value="Search" id="do-search">
|
<input type="button" value="Search" id="do-search">
|
||||||
</form>
|
</form>
|
||||||
<table>
|
<table>
|
||||||
|
@ -154,15 +158,13 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
||||||
<div id="progress" class="dialog">
|
<div id="progress" class="dialog">
|
||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
Please wait: <span class="message"></span>
|
Please wait: <span class="message"></span>
|
||||||
<input type="button" class="close" value="Close">
|
<input type="button" class="close" value="Close">
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<div class="history"></div>
|
<div class="history"></div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue