Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New update BooDark v1.1.1 - pma 5.2 #106

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions boodark/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BooDark v1.1.0
# BooDark v1.1.1

![Screenshot](screen.png)
![Screenshot](screen-animated.png)

Bootstrap Dark theme for phpMyAdmin

Expand Down
5 changes: 2 additions & 3 deletions boodark/css/theme-nord.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion boodark/css/theme-nord.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions boodark/css/theme-nord.rtl.css

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions boodark/css/theme-orange.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion boodark/css/theme-orange.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions boodark/css/theme-orange.rtl.css

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions boodark/css/theme-teal.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion boodark/css/theme-teal.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions boodark/css/theme-teal.rtl.css

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions boodark/css/theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion boodark/css/theme.css.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions boodark/css/theme.rtl.css

Large diffs are not rendered by default.

Binary file added boodark/screen-animated.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified boodark/screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 29 additions & 27 deletions boodark/scss/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1408,14 +1408,12 @@ input#auto_increment_opt {
border: 1px solid $pma-border-color;
position: absolute;
box-shadow: 0 .2em .5em #333;
margin-left: 75%;
right: 0;
max-width: 100%;
overflow-wrap: break-word;

.lDiv div {
padding: .2em .5em .2em;
padding-left: .2em;
padding: .2em .5em;

&:hover {
background: $pma-component-hover-bg;
Expand Down Expand Up @@ -1536,63 +1534,67 @@ div.navigation_separator {
position: absolute;

input[type=text] {
background: $white;
background: $pma-component-bg;
height: 100%;
margin: 0;
padding: 0;
}

input {
@extend .form-control;
}

.edit_area {
background: $white;
border: 1px solid #999;
background: $pma-component-bg;
border: 1px solid $pma-border-color;
min-width: 10em;
padding: .3em .5em;

select,
textarea {
width: 97%;
}
}

.cell_edit_hint {
color: #555;
font-size: .8em;
margin: .3em .2em;
}

.edit_box {
overflow-x: hidden;
overflow-y: scroll;
padding: 0;
margin: 0;
}

.edit_box_posting {
background: $white url('../img/ajax_clock_small.gif') no-repeat right center;
padding-right: 1.5em;
// background-size: $pma-ajax-bg-zise;
// @extend .ic_ajax_spinner;
padding-right: 1.5rem;
background-color: $pma-component-bg;
background-size: $pma-ajax-bg-zise;
background-repeat: no-repeat;
background-position: right center;
@extend .ic_ajax_spinner;
}

.edit_area_loading {
background: $white url("../img/ajax_clock_small.gif") no-repeat center;
height: 10em;
// background-size: $pma-ajax-bg-zise;
// @extend .ic_ajax_spinner;
height: 6rem;
border: 1px solid #6c757d;
background-color: $pma-component-bg;
background-size: $pma-ajax-bg-zise;
background-repeat: no-repeat;
background-position: center;
@extend .ic_ajax_spinner;
}

.goto_link {
background: #eee;
color: #555;
padding: .2em .3em;

a {
color: $pma-link-color;
}
}
}

.saving_edited_data {
background: url('../img/ajax_clock_small.gif') no-repeat left;
padding-left: 20px;
// background-size: $pma-ajax-bg-zise;
// @extend .ic_ajax_spinner;
background-size: $pma-ajax-bg-zise;
background-repeat: no-repeat;
background-position: left;
@extend .ic_ajax_spinner;
}

.relationalTable {
Expand Down
3 changes: 2 additions & 1 deletion boodark/scss/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ input {
background-size: contain;
border: $form-check-input-border;
appearance: none;
color-adjust: exact; // Keep themed appearance for print
print-color-adjust: exact; // Keep themed appearance for print

&:active {
filter: $form-check-input-active-filter;
Expand Down Expand Up @@ -170,6 +170,7 @@ select {
textarea {
background-color: $input-bg;
border: $input-border-width solid $input-border-color;
resize: both;

&:focus {
color: $input-focus-color;
Expand Down
2 changes: 1 addition & 1 deletion boodark/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// =============================================================================

// Theme version
$pma-theme-version: "1.1.0";
$pma-theme-version: "1.1.1";

// PMA color system
// -----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion boodark/theme.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "BooDark",
"version": "1.1.0",
"version": "1.1.1",
"description": "Bootstrap Dark theme for phpMyAdmin",
"author": "adorade",
"url": "https://github.com/adorade/boodark",
Expand Down