Update SCSS

This commit is contained in:
Giulio Cesare Solaroli 2015-03-11 18:28:28 +01:00
parent 87d09890a4
commit 502f03d555
No known key found for this signature in database
GPG Key ID: 22E34C908F02CBA2
5 changed files with 27 additions and 9 deletions

View File

@ -1134,6 +1134,8 @@ div.cardContent {
.button {
cursor: pointer; }
.button.disabled {
cursor: default; }
div.dialogBox {
display: -webkit-box;
@ -1417,10 +1419,10 @@ div.dialogBox {
background-color: black;
cursor: pointer;
font-size: 24pt; }
#loginPage div.loginForm footer:before {
content: "> "; }
#loginPage div.loginForm footer a {
line-height: 50pt; }
#loginPage div.loginForm footer a:before {
content: "> "; }
#loginPage div.loginForm.extra-short header {
font-size: 18pt; }
#loginPage div.loginForm.extra-short div.form form {
@ -1929,11 +1931,15 @@ span.count {
-moz-border-radius: 2;
border-radius: 2;
display: inline-block;
padding: 4px 8px;
padding: 10px 16px;
background-color: green;
color: white; }
#extraFeaturesPanel > div ul li a.button:hover {
color: lightgrey; }
#extraFeaturesPanel > div ul li a.button.disabled {
background-color: #999; }
#extraFeaturesPanel > div ul li a.button.disabled:hover {
color: white; }
.miscInfo .proxyInfo {
border-bottom: 1px solid white;

File diff suppressed because one or more lines are too long

View File

@ -426,6 +426,10 @@ div.cardContent {
.button {
cursor: pointer;
&.disabled {
cursor: default;
}
}

View File

@ -107,12 +107,12 @@
cursor: pointer;
font-size: 24pt;
&:before {
content: "> ";
};
a {
line-height: 50pt;
&:before {
content: "> ";
};
}
}
}

View File

@ -85,13 +85,21 @@
a.button {
@include border-radius(2);
display: inline-block;
padding: 4px 8px;
padding: 10px 16px;
background-color: green;
color: white;
&:hover {
color: lightgrey;
};
&.disabled {
background-color: #999;
&:hover {
color: white;
};
}
}
}
}