update fixes #4
This commit is contained in:
parent
b424098f75
commit
3586e4c317
1 changed files with 22 additions and 14 deletions
|
@ -42,10 +42,13 @@ body {
|
|||
}
|
||||
.read-more-button-wrap {
|
||||
a.more-link {
|
||||
.faux-button { // Button: »Weiterlesen«
|
||||
background: $blau !important;
|
||||
padding: 0.5em 2.2em !important; // Groesse aendern
|
||||
text-transform: none !important; // nicht unterstrichen
|
||||
.faux-button { // Button: "Weiterlesen"
|
||||
background: $blau;
|
||||
color: rgb(245, 245, 255);
|
||||
font-weight: initial;
|
||||
padding: 10px 40px; // Groesse aendern
|
||||
text-transform: none; // nicht unterstrichen
|
||||
transition: background .2s;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
background: $blau-dark;
|
||||
|
@ -147,12 +150,15 @@ body.post-template {
|
|||
article.comment-body {
|
||||
footer.comment-footer-meta {
|
||||
.comment-reply {
|
||||
a.comment-reply-link { // Button: »Kommentieren«
|
||||
background: $blau !important;
|
||||
text-transform: none !important;
|
||||
a.comment-reply-link { // Button: "Kommentieren"
|
||||
background: $blau ;
|
||||
color: rgb(245, 245, 255);
|
||||
font-weight: initial;
|
||||
text-transform: none;
|
||||
transition: background .2s;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
background: $blau-dark;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -183,14 +189,16 @@ body.post-template {
|
|||
}
|
||||
}
|
||||
.form-submit {
|
||||
.submit {
|
||||
background: $blau !important;
|
||||
color: rgb(255, 255, 255);
|
||||
padding: 0.5em 2.2em !important; // Groesse aendern
|
||||
text-transform: none !important; // nicht unterstrichen
|
||||
.submit { // Button "Kommentar abschicken"
|
||||
background: $blau;
|
||||
color: rgb(245, 245, 255);
|
||||
font-weight: initial;
|
||||
padding: 10px 40px; // Groesse aendern
|
||||
text-transform: none; // nicht unterstrichen
|
||||
transition: background .2s;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
background: $blau-dark;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue