1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-24 05:43:10 +02:00

fix(admin-plugin): fix dark theme for admin panel #186 #168

This commit is contained in:
Awilum
2019-09-09 19:49:44 +03:00
parent 8df4803b0f
commit 67ca499462
2 changed files with 49 additions and 11 deletions

View File

@@ -183,12 +183,12 @@ a {
background-color: $navbar-table-background-color-hover;
}
> tbody,
> tfoot,
> thead,
> tfoot {
> tbody {
> tr {
> td,
> th {
> th,
> td {
border-color: $border-color;
color: $base-font-color;
}
@@ -688,3 +688,38 @@ ul.messenger-theme-flat .messenger-message-slot.messenger-first.messenger-last .
border: 1px solid #ced4da;
}
.bootstrap-tagsinput {
background-color: #fff;
border: 1px solid #dbdbdc;
color: #424243;
border-radius: 4px;
font-size: .875rem;
padding: 8px 12px;
height: 40px;
box-shadow: none;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
content: "x";
padding: 3px 5px;
margin-right: -9px;
margin-left: 4px;
color: #424243;
background: #ced4da;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
cursor: pointer;
}
.bootstrap-tagsinput > input {
border: none;
}
.bootstrap-tagsinput .tag {
background-color: #e9ecef;
border: 1px solid #ced4da;
border-radius: .25rem;
padding: 3px 8px 3px 3px;
}

View File

@@ -55,9 +55,9 @@
}
.bootstrap-tagsinput {
background-color: #fff;
border: 1px solid #dbdbdc;
color: #424243;
background-color: #1b1d23;
border: 1px solid #000;
color: white;
border-radius: 4px;
font-size: .875rem;
@@ -72,8 +72,8 @@
padding: 3px 5px;
margin-right: -9px;
margin-left: 4px;
color: #424243;
background: #ced4da;
color: #7b838f;
background: #3d424e;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
cursor: pointer;
@@ -81,11 +81,14 @@
.bootstrap-tagsinput > input {
border: none;
background-color: #1b1d23;
color: white;
}
.bootstrap-tagsinput .tag {
background-color: #e9ecef;
border: 1px solid #ced4da;
color: #7b838f;
background-color: #3a3f4a;
border: 1px solid black;
border-radius: .25rem;
padding: 3px 8px 3px 3px;
}