1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00
This commit is contained in:
antelle 2019-09-09 17:07:24 +02:00
parent e82732c8c0
commit 0953a29b4e
5 changed files with 134 additions and 114 deletions

View File

@ -246,25 +246,26 @@
}
&__donate-btn {
background: #fff;
border: 2px solid #89ABED;
border: 2px solid #89abed;
border-radius: 2.8rem;
text-align: center;
display: inline-block;
text-decoration: none;
padding: .2rem 2.4rem .1rem;
padding: 0.2rem 2.4rem 0.1rem;
line-height: 1.4;
height: 2.8rem;
margin-bottom: $base-padding-v;
&-top, &-bottom {
&-top,
&-bottom {
pointer-events: none;
display: block;
}
&-top {
color: #606A79;
color: #606a79;
}
&-bottom {
color: #89ABED;
color: #89abed;
font-weight: bold;
}
}

View File

@ -25,7 +25,8 @@ button.pika-next:after {
left: 6px;
}
button.pika-prev:after, button.pika-next:after {
button.pika-prev:after,
button.pika-next:after {
left: 50%;
transform: translateX(-50%);
}

View File

@ -9,7 +9,7 @@ $themes: map-merge(
medium-color: #b7b7b8,
text-color: #f7f7f7,
action-color: #3063d4,
error-color: #EC655A,
error-color: #ec655a,
focus-shadow-blur: 0,
focus-shadow-spread: 3px,
button-border-radius: 2px,
@ -52,17 +52,33 @@ body.th-macdark {
color: #8f8f91;
}
}
input, textarea, select {
input,
textarea,
select {
background-color: rgba(108, 108, 109, 0.025);
}
input:focus, textarea:focus, select:focus {
input:focus,
textarea:focus,
select:focus {
background-color: rgba(108, 108, 109, 0.05);
}
}
.yellow-color { color: #E0C24C; }
.red-color { color: #EC655A; }
.orange-color { color: #E78F42; }
.green-color { color: #71BF47; }
.blue-color { color: #3062D1; }
.violet-color { color: #E55C9C; }
.yellow-color {
color: #e0c24c;
}
.red-color {
color: #ec655a;
}
.orange-color {
color: #e78f42;
}
.green-color {
color: #71bf47;
}
.blue-color {
color: #3062d1;
}
.violet-color {
color: #e55c9c;
}
}

View File

@ -8,4 +8,6 @@
'plugins/**/*.js' \
'util/**/*.js' \
'*.js' \
'package.json'
'package.json' \
'!app/scripts/locales/de-DE.json' \
'!app/scripts/locales/fr-FR.json'