Commit e6175cca authored by Sergey's avatar Sergey

Start doing edits

parent 1f4f7d81
...@@ -271,7 +271,7 @@ ...@@ -271,7 +271,7 @@
<form action="" name="form-enter-account" id="form-enter-account"> <form action="" name="form-enter-account" id="form-enter-account">
<div class="block-mb-orange"> <div class="block-mb-orange">
<label for="phone">Телефон</label> <label for="phone">Телефон</label>
<input type="text" placeholder="+7" name="phone" id="phone"> <input type="text" name="phone" id="phone" data-phone="true" pattern="^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$" placeholder="+7 (___)___-__-__">
</div> </div>
<div class="block-mb-orange"> <div class="block-mb-orange">
<label for="password">Пароль</label> <label for="password">Пароль</label>
......
...@@ -521,6 +521,9 @@ ...@@ -521,6 +521,9 @@
<div class="label-top" style="background-image: url(./img/icon_label_top.svg);"></div> <div class="label-top" style="background-image: url(./img/icon_label_top.svg);"></div>
</a> </a>
</div> </div>
<div class="col-6">
<a href="#" class="image-companies" style="background-image: url(./img/img_banner4.png);"></a>
</div>
<div class="col-6"> <div class="col-6">
<a href="#" class="company-card popular"> <a href="#" class="company-card popular">
<div class="company-card__left"> <div class="company-card__left">
......
...@@ -445,6 +445,9 @@ ...@@ -445,6 +445,9 @@
<div class="label-top" style="background-image: url(./img/icon_label_top.svg);"></div> <div class="label-top" style="background-image: url(./img/icon_label_top.svg);"></div>
</div> </div>
</div> </div>
<div class="col-4">
<a href="#" class="image-vacancies" style="background-image: url(./img/img_banner3.png);"></a>
</div>
<div class="col-4"> <div class="col-4">
<div class="card"> <div class="card">
<div class="card__desc"> <div class="card__desc">
......
...@@ -350,7 +350,9 @@ if(inputFile.length) ...@@ -350,7 +350,9 @@ if(inputFile.length)
input.addEventListener('change', function(e) input.addEventListener('change', function(e)
{ {
if(input.id === 'load-photo') return; if(input.id === 'load-photo') return;
var value = input.value; console.log(input.files);
let value = input.value;
// console.log(value);
value = value.replace( 'C:\\fakepath\\', ''); value = value.replace( 'C:\\fakepath\\', '');
input.parentElement.querySelector('.file-value').innerHTML = value; input.parentElement.querySelector('.file-value').innerHTML = value;
}); });
...@@ -1332,7 +1334,7 @@ if(addPlaceWork.length) ...@@ -1332,7 +1334,7 @@ if(addPlaceWork.length)
<option value="other">Другая</option> <option value="other">Другая</option>
</select> </select>
<div class="block-mb-yellow"> <div class="block-mb-yellow">
<input type="text" name="other-position${indexPlacework}" id="other-position${indexPlacework}" placeholder="ЖЕЛАЕМАЯ ДОЛЖНОСТЬ"> <input type="text" name="other-position${indexPlacework}" id="other-position${indexPlacework}" placeholder="ЖЕЛАЕМАЯ ДОЛЖНОСТЬ" disabled>
</div> </div>
</div> </div>
<div class="block-mb-yellow"> <div class="block-mb-yellow">
......
...@@ -272,7 +272,7 @@ ...@@ -272,7 +272,7 @@
<form action="" name="form-password-recovery" id="form-password-recovery" enctype="multipart/form-data" data-ajax="true"> <form action="" name="form-password-recovery" id="form-password-recovery" enctype="multipart/form-data" data-ajax="true">
<div class="block-mb-green"> <div class="block-mb-green">
<label for="phone">Телефон</label> <label for="phone">Телефон</label>
<input type="text" placeholder="+7" name="phone" id="phone" pattern="^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$" data-required="true"> <input type="text" name="phone" id="phone" data-phone="true" pattern="^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$" placeholder="+7 (___)___-__-__" data-required="true">
</div> </div>
<div class="block-mb-green"> <div class="block-mb-green">
<div class="little-title"> <div class="little-title">
...@@ -286,7 +286,7 @@ ...@@ -286,7 +286,7 @@
<div class="block-mb-green"> <div class="block-mb-green">
<div class="block-file"> <div class="block-file">
<label for="file"> <label for="file">
<input type="file" name="file" id="file" hidden> <input type="file" name="files[]" id="file" hidden multiple>
<div class="other-button button-attach-file">Прикрепить файл</div> <div class="other-button button-attach-file">Прикрепить файл</div>
<span class="file-value">Файл не выбран</span> <span class="file-value">Файл не выбран</span>
</label> </label>
......
...@@ -353,6 +353,9 @@ ...@@ -353,6 +353,9 @@
<div class="block-mb-green"> <div class="block-mb-green">
<label for="password">Пароль <span>*</span></label> <label for="password">Пароль <span>*</span></label>
<input type="password" name="password" id="password" data-required="true" placeholder="ПАРОЛЬ" value="111111111111" disabled> <input type="password" name="password" id="password" data-required="true" placeholder="ПАРОЛЬ" value="111111111111" disabled>
<a href="#" class="toggle-password">
<img src="./img/icon_toggle_password.svg" alt="">
</a>
</div> </div>
<p class="block-mb-green" style="font-size: 14px;"><span>*</span> - поля, обязательные для заполнения</p> <p class="block-mb-green" style="font-size: 14px;"><span>*</span> - поля, обязательные для заполнения</p>
<a href="#" class="main-button">Редактировать</a> <a href="#" class="main-button">Редактировать</a>
......
...@@ -364,7 +364,7 @@ ...@@ -364,7 +364,7 @@
</div> </div>
<div class="block-mb-yellow"> <div class="block-mb-yellow">
<label for="phone">Телефон <span>*</span></label> <label for="phone">Телефон <span>*</span></label>
<input type="text" name="phone" id="phone" placeholder="+7" pattern="^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$" data-required="true"> <input type="text" name="phone" id="phone" data-phone="true" pattern="^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$" placeholder="+7 (___)___-__-__" data-required="true">
</div> </div>
<div class="tabs-content-block" data-tab="tab-extended-registration"> <div class="tabs-content-block" data-tab="tab-extended-registration">
<div class="block-mb-yellow"> <div class="block-mb-yellow">
......
...@@ -43,3 +43,21 @@ ...@@ -43,3 +43,21 @@
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@font-face
{
font-family: 'Montserrat Medium';
src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
url('../fonts/Montserrat-Medium.woff') format('woff'),
url('../fonts/Montserrat-Medium.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face
{
font-family: 'Montserrat Semibold';
src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
url('../fonts/Montserrat-SemiBold.woff') format('woff'),
url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
...@@ -247,6 +247,7 @@ a:hover ...@@ -247,6 +247,7 @@ a:hover
transition: .3s; transition: .3s;
text-transform: uppercase; text-transform: uppercase;
width: auto !important; width: auto !important;
border-radius: 0;
} }
.main-button:hover .main-button:hover
...@@ -287,6 +288,7 @@ button ...@@ -287,6 +288,7 @@ button
letter-spacing: normal; letter-spacing: normal;
color: $color-ref; color: $color-ref;
justify-content: center; justify-content: center;
border-radius: 0;
border: 0; border: 0;
.img-svg .img-svg
{ {
...@@ -349,6 +351,7 @@ button ...@@ -349,6 +351,7 @@ button
box-shadow: 0 10px 20px 0 rgba(15, 20, 91, 0.1); box-shadow: 0 10px 20px 0 rgba(15, 20, 91, 0.1);
transition: .3s; transition: .3s;
width: max-content; width: max-content;
border-radius: 0;
border: 0; border: 0;
} }
...@@ -458,7 +461,7 @@ button ...@@ -458,7 +461,7 @@ button
// Поля формы // Поля формы
input, button, a, textarea input, button, textarea
{ {
border-radius: 0 !important; border-radius: 0 !important;
} }
...@@ -967,6 +970,11 @@ ul ...@@ -967,6 +970,11 @@ ul
border-color:#dddce8; border-color:#dddce8;
background: transparent; background: transparent;
} }
input[type="radio"]:disabled
{
cursor: none !important;
pointer-events: none;
}
input[type="radio"]:disabled ~ p input[type="radio"]:disabled ~ p
{ {
color: #b7b6c3; color: #b7b6c3;
...@@ -1048,6 +1056,11 @@ ul ...@@ -1048,6 +1056,11 @@ ul
{ {
opacity: 1; opacity: 1;
} }
input[type="checkbox"]:disabled
{
cursor: none !important;
pointer-events: none;
}
input[type="checkbox"].check-error ~ .check input[type="checkbox"].check-error ~ .check
{ {
border-color: red !important; border-color: red !important;
...@@ -4862,6 +4875,14 @@ input[type="submit"] ...@@ -4862,6 +4875,14 @@ input[type="submit"]
} }
} }
} }
.table-views-column, .table-feedback-column, .table-date-column
{
font-family: Montserrat Semibold !important;
p
{
font-family: Montserrat Semibold;
}
}
} }
} }
&__name &__name
...@@ -4911,12 +4932,12 @@ input[type="submit"] ...@@ -4911,12 +4932,12 @@ input[type="submit"]
.table-feedback-column .table-feedback-column
{ {
justify-content: center; justify-content: center;
width: 10% width: 10%;
} }
.table-date-column .table-date-column
{ {
justify-content: center; justify-content: center;
width: 10% width: 10%;
} }
} }
&-drafts &-drafts
......
...@@ -620,6 +620,9 @@ ...@@ -620,6 +620,9 @@
<div class="label-top" style="background-image: url(./img/icon_label_top.svg);"></div> <div class="label-top" style="background-image: url(./img/icon_label_top.svg);"></div>
</div> </div>
</div> </div>
<div class="col-4">
<a href="#" class="image-vacancies" style="background-image: url(./img/img_banner3.png);"></a>
</div>
<div class="col-4"> <div class="col-4">
<div class="card"> <div class="card">
<div class="card__desc"> <div class="card__desc">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment