Installer tweaks and a pypo bugfix
* Moved all the remaining DEB requirements into the requirements files * The installer should now be distro agnostic (unless you ask it to install third-party deps for you) * Fixed pypo not being able to find replaygainupdater * Tweaked a bunch of styling for the installer
This commit is contained in:
parent
861bb42f3f
commit
d46f4a52eb
11 changed files with 218 additions and 130 deletions
|
@ -3,13 +3,11 @@
|
|||
}
|
||||
|
||||
.table {
|
||||
padding: 0;
|
||||
padding: 5px;
|
||||
margin: 1em 0 0 0;
|
||||
}
|
||||
|
||||
.checklist {
|
||||
overflow: auto;
|
||||
height: 50%;
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
|
@ -22,8 +20,12 @@
|
|||
width: 20%;
|
||||
}
|
||||
|
||||
.description, .solution {
|
||||
width: 40%;
|
||||
.error {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.description {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
.check {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
html {
|
||||
background: -webkit-linear-gradient(midnightblue, black); /* For Safari 5.1 to 6.0 */
|
||||
background: -o-linear-gradient(midnightblue, black); /* For Opera 11.1 to 12.0 */
|
||||
background: -moz-linear-gradient(midnightblue, black); /* For Firefox 3.6 to 15 */
|
||||
background: linear-gradient(midnightblue, black); /* Standard syntax */
|
||||
background: -webkit-linear-gradient(#444, black); /* For Safari 5.1 to 6.0 */
|
||||
background: -o-linear-gradient(#444, black); /* For Opera 11.1 to 12.0 */
|
||||
background: -moz-linear-gradient(#444, black); /* For Firefox 3.6 to 15 */
|
||||
background: linear-gradient(#444, black); /* Standard syntax */
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -15,6 +15,14 @@ body {
|
|||
margin: auto;
|
||||
}
|
||||
|
||||
p, h1, h2, h3, h4, h5, h6 {
|
||||
text-shadow: 0px 1px 1px #000;
|
||||
}
|
||||
|
||||
code {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding-top: 1em;
|
||||
height: 10%;
|
||||
|
@ -36,8 +44,33 @@ body {
|
|||
}
|
||||
|
||||
#airtimeLogo {
|
||||
padding-top: .7em;
|
||||
float: left;
|
||||
padding-top: 0.6em;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
text-shadow: 0px 1px 1px #000000;
|
||||
background-color: #ff5d1a;
|
||||
border-color: #8d3715;
|
||||
}
|
||||
|
||||
.btn-primary:focus, .btn-primary:active, .form-control:focus
|
||||
{
|
||||
border-color: #ff5d1a;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 93, 26, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 93, 26, 0.6);
|
||||
}
|
||||
|
||||
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary,
|
||||
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover,
|
||||
fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus,
|
||||
.btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active,
|
||||
.btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active,
|
||||
fieldset[disabled] .btn-primary.active
|
||||
{
|
||||
background-color: #dc5118;
|
||||
border-color: #632910;
|
||||
}
|
||||
|
||||
/* ############################################################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue