Spaces:
Sleeping
Sleeping
Update templates/customer_details.html
Browse files
templates/customer_details.html
CHANGED
@@ -71,7 +71,7 @@
|
|
71 |
cursor: pointer;
|
72 |
}
|
73 |
|
74 |
-
.update-btn {
|
75 |
background-color: #0FAA39;
|
76 |
color: white;
|
77 |
border: none;
|
@@ -102,7 +102,50 @@
|
|
102 |
.edit-btn:hover {
|
103 |
background-color: #0f8e29;
|
104 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
/* Flexbox for equally spaced buttons */
|
107 |
.button-container {
|
108 |
display: flex;
|
|
|
71 |
cursor: pointer;
|
72 |
}
|
73 |
|
74 |
+
/* .update-btn {
|
75 |
background-color: #0FAA39;
|
76 |
color: white;
|
77 |
border: none;
|
|
|
102 |
.edit-btn:hover {
|
103 |
background-color: #0f8e29;
|
104 |
}
|
105 |
+
*/
|
106 |
+
.update-btn {
|
107 |
+
background-color: #0FAA39;
|
108 |
+
color: white;
|
109 |
+
border: none;
|
110 |
+
border-radius: 5px;
|
111 |
+
padding: 8px 16px; /* Reduced padding for a smaller button */
|
112 |
+
font-size: 0.9rem; /* Slightly smaller font size */
|
113 |
+
cursor: pointer;
|
114 |
+
font-weight: bold;
|
115 |
+
transition: background-color 0.3s ease; /* Smooth transition for hover effect */
|
116 |
+
}
|
117 |
|
118 |
+
.update-btn:hover {
|
119 |
+
background-color: #0f8e29;
|
120 |
+
}
|
121 |
+
|
122 |
+
.edit-btn {
|
123 |
+
background-color: #0FAA39;
|
124 |
+
color: white;
|
125 |
+
border: none;
|
126 |
+
border-radius: 5px;
|
127 |
+
padding: 8px 16px; /* Reduced padding for a smaller button */
|
128 |
+
font-size: 0.9rem; /* Slightly smaller font size */
|
129 |
+
cursor: pointer;
|
130 |
+
font-weight: bold;
|
131 |
+
transition: background-color 0.3s ease; /* Smooth transition for hover effect */
|
132 |
+
}
|
133 |
+
|
134 |
+
.edit-btn:hover {
|
135 |
+
background-color: #0f8e29;
|
136 |
+
}
|
137 |
+
|
138 |
+
/* Button container adjustments */
|
139 |
+
.button-container {
|
140 |
+
display: flex;
|
141 |
+
justify-content: space-between;
|
142 |
+
gap: 10px; /* Add space between buttons */
|
143 |
+
}
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
/* Flexbox for equally spaced buttons */
|
150 |
.button-container {
|
151 |
display: flex;
|