123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- .sync-wizard .form-input-wrapper {
- position: relative;
- }
- .sync-wizard .form-input-error .form-input {
- border-color: #ed5555;
- }
- .sync-wizard .form-input-errmsg {
- position: absolute;
- top: -14px;
- left: 0;
- font-size: 12px;
- line-height: 12px;
- color: #ed5555;
- }
- .sync-wizard .form-input {
- font-size: 12px;
- border-radius: 2px;
- border: 1px solid #c8d3e9;
- color: #4a4a4a;
- outline: 1px solid transparent;
- transition: all 0.2s ease;
- }
- .sync-wizard .form-input::placeholder {
- color: #bbbbbb;
- }
- .sync-wizard .form-input:focus {
- border-color: #4883fb;
- outline: 1px solid #4883fb;
- }
- .sync-wizard select.form-input {
- width: 200px;
- height: 32px;
- padding: 0 30px 0 10px;
- -moz-appearance: none;
- -webkit-appearance: none;
- appearance: none;
- background-image: url('../img/caret.png');
- background-repeat: no-repeat;
- background-position: right 0.7em top 50%;
- background-size: 15px auto;
- }
- .sync-wizard input.form-input {
- width: 200px;
- height: 32px;
- padding: 0 10px;
- }
- .sync-wizard textarea.form-input {
- width: 410px;
- height: 100px;
- resize: none;
- padding: 10px;
- }
- .sync-wizard .form-input-number {
- position: relative;
- }
- .sync-wizard .form-input-number button {
- position: absolute;
- top: 1px;
- width: 32px;
- height: 30px;
- border: none;
- border-radius: 0;
- background-color: #efeff1;
- padding: 0;
- margin: 0;
- cursor: pointer;
- }
- .sync-wizard .form-input-number button:first-child {
- left: 1px;
- border-right: 1px solid #c8d3e9;
- border-top-left-radius: 2px;
- border-bottom-left-radius: 2px;
- background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzdmN2M3ZiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNNCA4YS41LjUgMCAwIDEgLjUtLjVoN2EuNS41IDAgMCAxIDAgMWgtN0EuNS41IDAgMCAxIDQgOHoiLz48L3N2Zz4');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 20px auto;
- }
- .sync-wizard .form-input-number button:last-child {
- right: 1px;
- border-left: 1px solid #c8d3e9;
- border-top-right-radius: 2px;
- border-bottom-right-radius: 2px;
- background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iIzdmN2M3ZiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNOCA0YS41LjUgMCAwIDEgLjUuNXYzaDNhLjUuNSAwIDAgMSAwIDFoLTN2M2EuNS41IDAgMCAxLTEgMHYtM2gtM2EuNS41IDAgMCAxIDAtMWgzdi0zQS41LjUgMCAwIDEgOCA0eiIvPjwvc3ZnPg==');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 20px auto;
- }
- .sync-wizard .form-input-number .form-input {
- text-align: center;
- }
- .sync-wizard .form-label {
- color: #4a4a4a;
- height: 32px;
- width: 104px;
- padding-left: 12px;
- position: relative;
- display: flex;
- align-items: center;
- margin-right: 15px;
- }
- .sync-wizard .form-label.field-required::before {
- content: '*';
- color: #ed5555;
- position: absolute;
- left: 0;
- top: 0;
- line-height: 32px;
- }
- .sync-wizard .form-group {
- display: flex;
- margin-bottom: 25px;
- }
- .sync-wizard .form-group:last-child {
- margin-bottom: 0;
- }
- .sync-wizard p.form-hint {
- color: #bbbbbb;
- margin: 0;
- font-size: 12px;
- }
|