main
parent
27eb79f91f
commit
09b461b7d9
|
|
@ -121,6 +121,8 @@
|
|||
#search-container {
|
||||
margin-top: 20px;
|
||||
text-align: left;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
#search-container.dark-theme input, #search-container.dark-theme select {
|
||||
background-color: #333;
|
||||
|
|
@ -129,12 +131,13 @@
|
|||
}
|
||||
#search-input {
|
||||
width: 300px;
|
||||
height: 40px;
|
||||
height: 60px;
|
||||
font-size: 16px;
|
||||
padding: 5px 10px;
|
||||
border: 2px solid #007bff;
|
||||
border-radius: 5px;
|
||||
transition: border-color 0.3s ease;
|
||||
margin-right: 10px;
|
||||
}
|
||||
#search-input:focus {
|
||||
border-color: #0056b3;
|
||||
|
|
@ -146,6 +149,25 @@
|
|||
#search-input.dark-theme:focus {
|
||||
border-color: #99ccff;
|
||||
}
|
||||
#folder-select {
|
||||
width: 300px;
|
||||
height: 60px;
|
||||
font-size: 16px;
|
||||
padding: 5px 10px;
|
||||
border: 2px solid #007bff;
|
||||
border-radius: 5px;
|
||||
transition: border-color 0.3s ease;
|
||||
}
|
||||
#folder-select:focus {
|
||||
border-color: #0056b3;
|
||||
outline: none;
|
||||
}
|
||||
#folder-select.dark-theme {
|
||||
border-color: #66b3ff;
|
||||
}
|
||||
#folder-select.dark-theme:focus {
|
||||
border-color: #99ccff;
|
||||
}
|
||||
#installs-list { margin-top: 0; }
|
||||
.header {
|
||||
display: table;
|
||||
|
|
@ -353,7 +375,8 @@
|
|||
}
|
||||
#add-record-button {
|
||||
display: block;
|
||||
margin: 20px auto;
|
||||
margin-left: 0;
|
||||
margin-top: 20px;
|
||||
width: 250px;
|
||||
height: 60px;
|
||||
font-size: 18px;
|
||||
|
|
@ -400,12 +423,12 @@
|
|||
</form>
|
||||
</div>
|
||||
<div id="search-container">
|
||||
<button id="add-record-button" onclick="openAddModal()">Добавить запись</button>
|
||||
<input type="text" id="search-input" placeholder="Поиск по ID или имени">
|
||||
<select id="folder-select" class="folder-select">
|
||||
<option value="">Все папки</option>
|
||||
</select>
|
||||
</div>
|
||||
<button id="add-record-button" onclick="openAddModal()">Добавить запись</button>
|
||||
<div class="header">
|
||||
<div onclick="sortInstalls('computer_name')">Имя компьютера<span class="sort-arrow"></span></div>
|
||||
<div onclick="sortInstalls('rust_id')">ID подключения<span class="sort-arrow"></span></div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue