Unix line endings

This commit is contained in:
Jason Barnabe 2015-02-08 22:24:58 -06:00
parent d54f8c655f
commit 0006e001b4

View File

@ -1,109 +1,109 @@
<html> <html>
<head> <head>
<title></title> <title></title>
<style> <style>
body { body {
margin: 0px; margin: 0px;
font: 12px arial,sans-serif; font: 12px arial,sans-serif;
} }
a, a:visited { a, a:visited {
color: #555; color: #555;
-webkit-transition: color 0.5s; -webkit-transition: color 0.5s;
} }
a:hover { a:hover {
color: #999; color: #999;
} }
#header { #header {
height: 100%; height: 100%;
width: 250px; width: 250px;
position: fixed; position: fixed;
top: 0px; top: 0px;
padding: 15px; padding: 15px;
border-right: 1px dashed #AAA; border-right: 1px dashed #AAA;
} }
#header { #header {
-webkit-box-shadow: 0px 0px 50px -18px black; -webkit-box-shadow: 0px 0px 50px -18px black;
} }
#installed { #installed {
padding-left: 280px; padding-left: 280px;
} }
.enabled, .disabled { .enabled, .disabled {
margin: 10px; margin: 10px;
padding: 0px 15px; padding: 0px 15px;
} }
.enabled:not(:first-child), .disabled:not(:first-child) { .enabled:not(:first-child), .disabled:not(:first-child) {
border-top: 2px solid gray; border-top: 2px solid gray;
} }
.applies-to, .actions { .applies-to, .actions {
padding-left: 15px; padding-left: 15px;
} }
.actions > * { .actions > * {
margin-right: 5px; margin-right: 5px;
} }
.applies-to-extra { .applies-to-extra {
font-weight: bold; font-weight: bold;
} }
.disabled h2::after { .disabled h2::after {
content: " (Disabled)"; content: " (Disabled)";
} }
.disabled { .disabled {
opacity: 0.5; opacity: 0.5;
} }
.disabled .disable { .disabled .disable {
display: none; display: none;
} }
.enabled .enable { .enabled .enable {
display: none; display: none;
} }
/* Default, no update buttons */ /* Default, no update buttons */
.update, .check-update { .update, .check-update {
display: none; display: none;
} }
/* Check update button for things that can*/ /* Check update button for things that can*/
*[style-update-url] .check-update { *[style-update-url] .check-update {
display: inline; display: inline;
} }
/* Update check in progress */ /* Update check in progress */
.checking-update .check-update { .checking-update .check-update {
display: none; display: none;
} }
/* Updates available */ /* Updates available */
.can-update .update { .can-update .update {
display: inline; display: inline;
} }
.can-update .check-update { .can-update .check-update {
display: none; display: none;
} }
/* Updates not available */ /* Updates not available */
.no-update .check-update { .no-update .check-update {
display: none; display: none;
} }
/* Updates done */ /* Updates done */
.update-done .check-update { .update-done .check-update {
display: none; display: none;
} }
</style> </style>
<script src="localization.js"></script> <script src="localization.js"></script>
<script src="health.js"></script> <script src="health.js"></script>
<script src="storage.js"></script> <script src="storage.js"></script>
<script src="messaging.js"></script> <script src="messaging.js"></script>
</head> </head>
<body id="stylish-manage"> <body id="stylish-manage">
<div id="header"> <div id="header">
<img src="128.png"> <img src="128.png">
<h1 id="manage-heading"></h1> <h1 id="manage-heading"></h1>
<p id="manage-text"></p> <p id="manage-text"></p>
<p><button id="check-all-updates"></button></p> <p><button id="check-all-updates"></button></p>
<p><a href="edit.html"><button id="add-style-label"></button></a></p> <p><a href="edit.html"><button id="add-style-label"></button></a></p>
<div id="options"> <div id="options">
<h2 id="options-heading"></h2> <h2 id="options-heading"></h2>
<input id="show-badge" type="checkbox"><label id="show-badge-label" for="show-badge"></label> <input id="show-badge" type="checkbox"><label id="show-badge-label" for="show-badge"></label>
</div> </div>
</div> </div>
<div id="installed"></div> <div id="installed"></div>
<script src="manage.js"></script> <script src="manage.js"></script>
</body> </body>
</html> </html>