|
|
@@ -19,6 +19,9 @@ input.form-control,
|
|
|
textarea.form-control {
|
|
|
color: lighten($color-global, 30%);
|
|
|
background-color: darken($bgcolor-global, 5%);
|
|
|
+ &:focus {
|
|
|
+ background-color: $bgcolor-global;
|
|
|
+ }
|
|
|
// FIXME: accent color
|
|
|
// border: 1px solid darken($border, 30%);
|
|
|
}
|
|
|
@@ -75,6 +78,22 @@ textarea.form-control {
|
|
|
@extend .bg-dark;
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * Pagination
|
|
|
+ */
|
|
|
+ul.pagination {
|
|
|
+ li.page-item {
|
|
|
+ button.page-link {
|
|
|
+ @extend .btn-dark;
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ button {
|
|
|
+ @extend .active;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.table > thead > tr > th,
|
|
|
.table > tbody > tr > th,
|
|
|
.table > tfoot > tr > th,
|