|
@@ -82,9 +82,6 @@
|
|
box-shadow: 0 0 6px rgb(179, 179, 179);
|
|
box-shadow: 0 0 6px rgb(179, 179, 179);
|
|
}
|
|
}
|
|
|
|
|
|
-[class='btn__^'] {
|
|
|
|
- cursor: pointer;
|
|
|
|
-}
|
|
|
|
.btn__arTitle {
|
|
.btn__arTitle {
|
|
border-radius: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
@@ -174,6 +171,46 @@ label[for="file"] {
|
|
.btn:active, .btn:focus {
|
|
.btn:active, .btn:focus {
|
|
transform: translateY(2px);
|
|
transform: translateY(2px);
|
|
}
|
|
}
|
|
|
|
+.btn__edit {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ width: 2.5rem;
|
|
|
|
+ height: 2.5rem;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ box-shadow: 0 0 6px rgb(179, 179, 179);
|
|
|
|
+ padding: 0.5rem;
|
|
|
|
+ padding-left: 0.7rem;
|
|
|
|
+ outline: none;
|
|
|
|
+ border: none;
|
|
|
|
+ transition: all 0.3s;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ color: black;
|
|
|
|
+ background-color: white;
|
|
|
|
+}
|
|
|
|
+.btn__edit i {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ line-height: 24px;
|
|
|
|
+}
|
|
|
|
+.btn__edit:hover {
|
|
|
|
+ background-color: rgb(211, 211, 211);
|
|
|
|
+ color: black;
|
|
|
|
+}
|
|
|
|
+.btn__delete {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ width: 2.5rem;
|
|
|
|
+ height: 2.5rem;
|
|
|
|
+ border-radius: 50%;
|
|
|
|
+ box-shadow: 0 0 6px rgb(179, 179, 179);
|
|
|
|
+ color: black;
|
|
|
|
+ margin-right: 0;
|
|
|
|
+ background-color: #E74C3C;
|
|
|
|
+}
|
|
|
|
+.btn__delete:hover {
|
|
|
|
+ background-color: #D0ECE7;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.btn__delete i {
|
|
|
|
+ color: white;
|
|
|
|
+}
|
|
.btn__edit:active, .btn__edit:focus {
|
|
.btn__edit:active, .btn__edit:focus {
|
|
background-color: #b9bcbe !important;
|
|
background-color: #b9bcbe !important;
|
|
}
|
|
}
|
|
@@ -187,6 +224,10 @@ label[for="file"] {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+tbody:nth-of-type(2n) {
|
|
|
|
+ background-color: #EEEEEE;
|
|
|
|
+}
|
|
|
|
+
|
|
/* toTop */
|
|
/* toTop */
|
|
.toTop {
|
|
.toTop {
|
|
position: fixed ;
|
|
position: fixed ;
|
|
@@ -329,3 +370,8 @@ textarea {
|
|
resize: None;
|
|
resize: None;
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+/* --- Table */
|
|
|
|
+.table .table__data {
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+}
|