mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-13 07:49:01 +01:00
Update SCSS
This commit is contained in:
parent
87d09890a4
commit
502f03d555
@ -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
@ -426,6 +426,10 @@ div.cardContent {
|
||||
|
||||
.button {
|
||||
cursor: pointer;
|
||||
|
||||
&.disabled {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -107,12 +107,12 @@
|
||||
cursor: pointer;
|
||||
font-size: 24pt;
|
||||
|
||||
&:before {
|
||||
content: "> ";
|
||||
};
|
||||
|
||||
a {
|
||||
line-height: 50pt;
|
||||
|
||||
&:before {
|
||||
content: "> ";
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user