Spaces:
Running
Running
Update styles.css
Browse files- styles.css +18 -32
styles.css
CHANGED
@@ -83,46 +83,32 @@ th {
|
|
83 |
|
84 |
tr:hover {
|
85 |
background-color: #222;
|
86 |
-
}
|
87 |
-
|
88 |
-
.actions {
|
89 |
-
display: flex;
|
90 |
-
gap: 5px;
|
91 |
-
}
|
92 |
-
|
93 |
-
.add-to-cart-btn, .add-stock-btn, .delete-btn {
|
94 |
-
padding: 5px 10px;
|
95 |
-
border: none;
|
96 |
-
border-radius: 3px;
|
97 |
cursor: pointer;
|
98 |
-
font-size: 14px;
|
99 |
-
}
|
100 |
-
|
101 |
-
.add-to-cart-btn {
|
102 |
-
background-color: #17a2b8;
|
103 |
-
color: #fff;
|
104 |
-
}
|
105 |
-
|
106 |
-
.add-to-cart-btn:hover {
|
107 |
-
background-color: #138496;
|
108 |
}
|
109 |
|
110 |
-
.
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
|
|
117 |
}
|
118 |
|
119 |
-
.
|
120 |
-
|
|
|
|
|
|
|
|
|
|
|
121 |
color: #fff;
|
|
|
122 |
}
|
123 |
|
124 |
-
.
|
125 |
-
background-color: #
|
126 |
}
|
127 |
|
128 |
.cart {
|
|
|
83 |
|
84 |
tr:hover {
|
85 |
background-color: #222;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
}
|
88 |
|
89 |
+
.context-menu {
|
90 |
+
display: none;
|
91 |
+
position: absolute;
|
92 |
+
background-color: #333;
|
93 |
+
border: 1px solid #444;
|
94 |
+
border-radius: 5px;
|
95 |
+
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
|
96 |
+
z-index: 1000;
|
97 |
}
|
98 |
|
99 |
+
.context-menu button {
|
100 |
+
display: block;
|
101 |
+
width: 100%;
|
102 |
+
padding: 10px;
|
103 |
+
text-align: left;
|
104 |
+
background-color: transparent;
|
105 |
+
border: none;
|
106 |
color: #fff;
|
107 |
+
cursor: pointer;
|
108 |
}
|
109 |
|
110 |
+
.context-menu button:hover {
|
111 |
+
background-color: #444;
|
112 |
}
|
113 |
|
114 |
.cart {
|