Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNN1 committed Sep 3, 2023
1 parent 02a5ee8 commit f8b149f
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 19 deletions.
12 changes: 8 additions & 4 deletions Material/css/theme-gray.css
Original file line number Diff line number Diff line change
Expand Up @@ -1391,8 +1391,8 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder select,
.elfinder textarea {
padding: 4px;
color: #666;
background: #fff;
color: #ddd;
background: rgba(0, 0, 0, 0.8);
border-radius: 0;
font-weight: normal;
border: 0;
Expand All @@ -1404,8 +1404,8 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder input:focus,
.elfinder select:focus,
.elfinder textarea:focus {
background: #fff !important;
color: #666 !important;
background: rgba(0, 0, 0, 0.8) !important;
color: #ddd !important;
border: 0 !important;
}
.elfinder input[type="checkbox"] {
Expand Down Expand Up @@ -1756,3 +1756,7 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder-preference-checkboxes label {
margin: 4px;
}
.elfinder-notify-cancel .ui-state-hover {
background: transparent;
color: #fff;
}
2 changes: 1 addition & 1 deletion Material/css/theme-gray.min.css

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions Material/css/theme-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -1391,8 +1391,8 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder select,
.elfinder textarea {
padding: 4px;
color: #666;
background: #fff;
color: #ddd;
background: rgba(0, 0, 0, 0.8);
border-radius: 0;
font-weight: normal;
border: 0;
Expand All @@ -1404,8 +1404,8 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder input:focus,
.elfinder select:focus,
.elfinder textarea:focus {
background: #fff !important;
color: #666 !important;
background: rgba(0, 0, 0, 0.8) !important;
color: #ddd !important;
border: 0 !important;
}
.elfinder input[type="checkbox"] {
Expand Down Expand Up @@ -1756,3 +1756,7 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder-preference-checkboxes label {
margin: 4px;
}
.elfinder-notify-cancel .ui-state-hover {
background: transparent;
color: #fff;
}
2 changes: 1 addition & 1 deletion Material/css/theme-light.min.css

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions Material/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -1391,8 +1391,8 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder select,
.elfinder textarea {
padding: 4px;
color: #666;
background: #fff;
color: #ddd;
background: rgba(0, 0, 0, 0.8);
border-radius: 0;
font-weight: normal;
border: 0;
Expand All @@ -1404,8 +1404,8 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder input:focus,
.elfinder select:focus,
.elfinder textarea:focus {
background: #fff !important;
color: #666 !important;
background: rgba(0, 0, 0, 0.8) !important;
color: #ddd !important;
border: 0 !important;
}
.elfinder input[type="checkbox"] {
Expand Down Expand Up @@ -1756,3 +1756,7 @@ div.elfinder-cwd-wrapper-list .ui-icon-grip-dotted-vertical {
.elfinder-preference-checkboxes label {
margin: 4px;
}
.elfinder-notify-cancel .ui-state-hover {
background: transparent;
color: #fff;
}
2 changes: 1 addition & 1 deletion Material/css/theme.min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions src/less/dialogs.less
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,10 @@
margin: 4px;
}
}

.elfinder-notify-cancel {
.ui-state-hover {
background: transparent;
color: #fff;
}
}
8 changes: 4 additions & 4 deletions src/less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
select,
textarea {
padding: 4px;
color: #666;
background: #fff;
color: #ddd;
background: rgba(0, 0, 0, .80);
border-radius: 0;
font-weight: normal;
border: 0;
box-shadow: none !important;

&.ui-state-hover,
&:focus {
background: #fff !important;
color: #666 !important;
background: rgba(0, 0, 0, .80) !important;
color: #ddd !important;
border: 0 !important;
}
}
Expand Down

0 comments on commit f8b149f

Please sign in to comment.