fix placeholder text
This commit is contained in:
parent
9b367e5d08
commit
b69c6bc97a
@ -51,13 +51,6 @@
|
||||
inkscape:window-y="54"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<rect
|
||||
style="fill:#f5f5f6;fill-opacity:1;stroke:#d8dde0;stroke-width:3.77952766;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect817"
|
||||
width="1717.1526"
|
||||
height="1092.339"
|
||||
x="-602.57629"
|
||||
y="-290.16949" />
|
||||
<path
|
||||
d="m 235.62851,202.1526 c -3.38906,-0.31992 -6.54323,1.7722 -7.40937,5.07666 l -3.10593,11.84344 c 39.34747,1.15551 65.965,27.49017 67.63017,66.72064 l 11.9414,-3.32129 c 3.29677,-0.91767 5.34573,-4.14216 4.95356,-7.55606 -4.37894,-38.04972 -35.85985,-69.14953 -74.00983,-72.76339 z m -12.26226,23.57322 -20.94044,79.87325 a 3.3995443,3.4118034 0 0 0 4.19438,4.15688 L 286.10367,287.635 c -0.8955,-36.81001 -25.8122,-61.48823 -62.73742,-61.90076 z m 5.78824,63.9529 a 6.7110067,6.7352075 0 1 1 6.711,-6.73521 6.7110067,6.7352075 0 0 1 -6.711,6.73521 z M 239.221,257.68648 a 6.7110067,6.7352075 0 1 1 6.71101,-6.7352 6.7110067,6.7352075 0 0 1 -6.71101,6.7352 z m 21.81077,21.88943 a 6.7110067,6.7352075 0 1 1 6.71101,-6.73521 6.7110067,6.7352075 0 0 1 -6.71101,6.73521 z"
|
||||
id="path2"
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.4 KiB |
6
cookbook/static/themes/tandoor.min.css
vendored
6
cookbook/static/themes/tandoor.min.css
vendored
@ -4634,13 +4634,15 @@ input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].bt
|
||||
.card-img-top {
|
||||
width: 100%;
|
||||
border-top-left-radius: calc(.25rem - 1px);
|
||||
border-top-right-radius: calc(.25rem - 1px)
|
||||
border-top-right-radius: calc(.25rem - 1px);
|
||||
background-color: #f5f5f6;
|
||||
}
|
||||
|
||||
.card-img-bottom {
|
||||
width: 100%;
|
||||
border-bottom-right-radius: calc(.25rem - 1px);
|
||||
border-bottom-left-radius: calc(.25rem - 1px)
|
||||
border-bottom-left-radius: calc(.25rem - 1px);
|
||||
background-color: #f5f5f6;
|
||||
}
|
||||
|
||||
.card-deck {
|
||||
|
18
cookbook/static/themes/tandoor_dark.min.css
vendored
18
cookbook/static/themes/tandoor_dark.min.css
vendored
@ -4637,13 +4637,15 @@ input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].bt
|
||||
.card-img-top {
|
||||
width: 100%;
|
||||
border-top-left-radius: calc(.25rem - 1px);
|
||||
border-top-right-radius: calc(.25rem - 1px)
|
||||
border-top-right-radius: calc(.25rem - 1px);
|
||||
background-color: #141414;
|
||||
}
|
||||
|
||||
.card-img-bottom {
|
||||
width: 100%;
|
||||
border-bottom-right-radius: calc(.25rem - 1px);
|
||||
border-bottom-left-radius: calc(.25rem - 1px)
|
||||
border-bottom-left-radius: calc(.25rem - 1px);
|
||||
background-color: #141414;
|
||||
}
|
||||
|
||||
.card-deck {
|
||||
@ -10500,11 +10502,7 @@ textarea, input:not([type="submit"]):not([class="multiselect__input"]):not([clas
|
||||
color: rgb(20, 20, 20) !important
|
||||
}
|
||||
|
||||
.multiselect__input::placeholder
|
||||
.multiselect__input::-ms-input-placeholder
|
||||
.multiselect__input:-ms-input-placeholder
|
||||
.multiselect__input::-moz-placeholder,
|
||||
.multiselect__input::-webkit-input-placeholder {
|
||||
.multiselect__input::placeholder {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
@ -10562,9 +10560,5 @@ textarea, input:not([type="submit"]):not([class="multiselect__input"]):not([clas
|
||||
}
|
||||
|
||||
.bottom-nav-link {
|
||||
color: #898989 !important;
|
||||
}
|
||||
|
||||
.bottom-nav-link-active {
|
||||
color: var(--primary) !important;
|
||||
color: #898989;
|
||||
}
|
||||
|
@ -425,6 +425,7 @@
|
||||
v-if="!ingredient.is_header">
|
||||
<input
|
||||
class="form-control"
|
||||
style="height: 100%;"
|
||||
v-model="ingredient.amount"
|
||||
type="number"
|
||||
step="any"
|
||||
@ -506,6 +507,7 @@
|
||||
<input
|
||||
class="form-control"
|
||||
maxlength="256"
|
||||
style="height: 100%;"
|
||||
v-model="ingredient.note"
|
||||
v-bind:placeholder="$t('Note')"
|
||||
v-on:keydown.tab="
|
||||
|
Loading…
Reference in New Issue
Block a user