-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodifier_equipment.css
More file actions
125 lines (113 loc) · 2.91 KB
/
Copy pathmodifier_equipment.css
File metadata and controls
125 lines (113 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.container {
padding: 20px; /* Réduit de 25px */
background-color: var(--container-bg);
border: 1px solid var(--border-color);
border-radius: 20px;
margin: 20px auto; /* Centré avec moins de marge */
width: 95%;
max-width: 800px; /* Aligné sur add_equipment */
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
}
.container h2 {
text-align: center;
text-decoration: none;
color: #ffffff !important;
margin-bottom: 15px; /* Réduit de 25px */
border-bottom: 2px solid var(--accent-blue);
padding-bottom: 8px;
font-size: 1.4em;
}
.form-row {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 10px;
}
.form-group {
flex: 1;
min-width: 250px;
margin-bottom: 10px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: 600;
color: var(--text-color) !important;
font-size: 0.95em;
}
.form-group input[type="text"],
.form-group input[type="date"],
.form-group select {
width: 100%;
padding: 8px;
background-color: #1e252e !important;
border: 1px solid var(--border-color);
color: var(--text-color) !important;
border-radius: 8px;
box-sizing: border-box;
font-size: 0.95em;
transition: all 0.3s ease;
}
/* Style spécifique pour les listes déroulantes */
.form-group select {
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e0e0e0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: calc(100% - 12px) center;
}
.form-group select option {
background-color: #1e252e;
color: #e0e0e0;
}
.form-actions {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
}
.form-actions button {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
padding: 10px 20px;
border-radius: 8px;
cursor: pointer;
font-size: 1em;
font-weight: 600;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
background-color: var(--accent-green);
color: white;
}
.form-actions .back-btn {
background-color: var(--accent-blue);
}
.form-actions button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.form-actions .btn-save:hover { background-color: #27ae60; }
.form-actions .back-btn:hover { background-color: #005f99; }
.back-link {
display: block;
text-align: center;
margin-top: 20px;
color: black;
text-decoration: none;
font-size: 1.2em;
}
.back-link:hover {
text-decoration: underline;
}
.form-row {
display: flex;
gap: 16px;
margin-bottom: 8px;
}
.form-row .form-group {
flex: 1;
}