Revize 76a0a13d
Přidáno uživatelem Marek Zábran před téměř 5 roky(ů)
resources/sass/_custom.scss | ||
---|---|---|
143 | 143 |
} |
144 | 144 |
} |
145 | 145 |
|
146 |
/*input:-internal-autofill-selected{ |
|
147 |
|
|
148 |
}*/ |
|
149 |
//Oprava barev pro Chrom |
|
150 |
input:-webkit-autofill { |
|
151 |
-webkit-box-shadow:0 0 0 50px $theme-color-five inset; |
|
152 |
-webkit-text-fill-color: $theme-color-one; |
|
153 |
&:active, &:focus, &:visited, &:hover{ |
|
154 |
-webkit-box-shadow:0 0 0 50px $theme-color-five inset; |
|
155 |
-webkit-text-fill-color: $theme-color-one; |
|
156 |
} |
|
157 |
} |
|
158 |
|
|
146 | 159 |
.card-body { |
147 | 160 |
background-color: $theme-color-five; |
148 | 161 |
font-weight: $font-weight-one; |
... | ... | |
218 | 231 |
.pin-left { |
219 | 232 |
border-left: .5pt solid $theme-color-four; |
220 | 233 |
display: inline-block; |
221 |
margin: 10rem 50px 0px -5rem;
|
|
234 |
margin: 12rem 50px 0px -5rem;
|
|
222 | 235 |
position: fixed; |
223 | 236 |
top: 0; |
224 | 237 |
bottom: 0; |
... | ... | |
233 | 246 |
} |
234 | 247 |
} |
235 | 248 |
|
249 |
.register{ |
|
250 |
.pin-left{ |
|
251 |
margin-top: 17rem; |
|
252 |
} |
|
253 |
} |
|
254 |
|
|
236 | 255 |
li{ |
237 | 256 |
list-style-type: none; |
238 | 257 |
} |
... | ... | |
640 | 659 |
body { |
641 | 660 |
.pin-left { |
642 | 661 |
margin-left: -33vw; |
643 |
margin-top: 12rem;
|
|
662 |
margin-top: 15rem;
|
|
644 | 663 |
//left: 20vw; |
645 | 664 |
} |
665 |
.register{ |
|
666 |
.pin-left{ |
|
667 |
margin-top: 20rem; |
|
668 |
} |
|
669 |
} |
|
670 |
|
|
646 | 671 |
} |
647 | 672 |
} |
648 | 673 |
|
resources/views/auth/register.blade.php | ||
---|---|---|
10 | 10 |
<div class="container"> |
11 | 11 |
<div class="row justify-content-center"> |
12 | 12 |
<div class="col-md-8"> |
13 |
<div class="auth"> |
|
13 |
<div class="auth register">
|
|
14 | 14 |
<div class="card"> |
15 | 15 |
{{--<div class="card-header">{{ __('Register') }}</div>--}} |
16 | 16 |
|
... | ... | |
32 | 32 |
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('e-mail') }}</label> |
33 | 33 |
|
34 | 34 |
<div class="col-md-6"> |
35 |
<input id="email" type="email" class="form-control text2 @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" {{--required autocomplete="email"--}}> |
|
35 |
<input id="email" type="email @error('email') is-invalid @enderror" class="form-control text2 @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" {{--required autocomplete="email"--}}>
|
|
36 | 36 |
|
37 | 37 |
</div> |
38 | 38 |
</div> |
Také k dispozici: Unified diff
Issue #7995 @2.25h
Opraveny barvy auto-inputu, už jsou vždy stejné.
Upravena výška error hlášek, ale nevím, co je myšleno "Nutno pozicovat od spoda." Pozicováno je to od hora i spoda, jinak by to nebylo rozšířené na celou výšku.
Opravena error hláška pro špatný formát e-mailu, už je taky v pinu.