Skip to content

Commit

Permalink
Update v2.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNN1 committed Apr 9, 2021
1 parent a117ae2 commit a847501
Show file tree
Hide file tree
Showing 21 changed files with 182 additions and 324 deletions.
109 changes: 35 additions & 74 deletions Material/css/theme-gray.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Material/css/theme-gray.min.css

Large diffs are not rendered by default.

109 changes: 35 additions & 74 deletions Material/css/theme-light.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions Material/css/theme-light.min.css

Large diffs are not rendered by default.

109 changes: 35 additions & 74 deletions Material/css/theme.css

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Material/src/less/contextmenu.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
*/
.elfinder .elfinder-contextmenu,
.elfinder .elfinder-contextmenu-sub {
.border-radius(2px);
.box-shadow(0 1px 6px rgba(0, 0, 0, 0.3));
border-radius: 2px;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
border: none;

&-separator {
Expand Down
15 changes: 10 additions & 5 deletions Material/src/less/core.less
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
@import (css) url("https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&subset=cyrillic,cyrillic-ext,devanagari,greek,greek-ext,latin-ext,vietnamese");

.remove-borders() {
border-radius: 0;
border: 0;
}

.elfinder {
color: @body-color;
font-family: @base-font;
Expand All @@ -8,7 +13,7 @@

&.ui-widget.ui-widget-content {
font-family: @base-font;
.box-shadow(0 1px 8px rgba(0, 0, 0, 0.6));
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
.remove-borders;
}

Expand Down Expand Up @@ -55,7 +60,7 @@

.elfinder-notify-progress,
.elfinder-notify-progressbar {
.border-radius(0);
border-radius: 0;
}

.elfinder-notify-progress,
Expand All @@ -75,7 +80,7 @@
> div {
background-color: #323232 !important;
color: #d6d6d6;
.box-shadow(none);
box-shadow: none;
opacity: inherit;
padding: 10px 60px;

Expand Down Expand Up @@ -119,7 +124,7 @@
*/
#ace_settingsmenu {
font-family: @base-font;
.box-shadow(0 1px 30px rgba(0, 0, 0, 0.6)) !important;
box-shadow: 0 1px 30px rgba(0, 0, 0, 0.6) !important;
background-color: #1d2736 !important;
color: #e6e6e6 !important;
}
Expand All @@ -145,7 +150,7 @@
#ace_settingsmenu select {
margin: 1px 2px 2px;
padding: 2px 5px;
.border-radius(3px);
border-radius: 3px;
border: 0;
background: rgba(9, 53, 121, 0.75);
color: white !important;
Expand Down
21 changes: 11 additions & 10 deletions Material/src/less/dialogs.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
.elfinder .elfinder-dialog {
.remove-borders;
.box-shadow(0 1px 30px rgba(0, 0, 0, 0.6));
box-shadow: 0 1px 30px rgba(0, 0, 0, 0.6);

.ui-dialog-content[id*="edit-elfinder-elfinder-"] {
padding: 0;
Expand Down Expand Up @@ -33,14 +33,14 @@
.ui-tabs-selected a,
.ui-state-active a,
li:hover a {
.box-shadow(inset 0 -2px 0 @dialog-tab-color);
box-shadow: inset 0 -2px 0 @dialog-tab-color;
color: @dialog-tab-color;
}
}

.elfinder-tabstop.ui-state-hover {
background: transparent;
.box-shadow(inset 0 -2px 0 @dialog-tab-color);
box-shadow: inset 0 -2px 0 @dialog-tab-color;
color: @dialog-tab-color;
}
}
Expand All @@ -61,7 +61,7 @@

.elfinder-titlebar-button .ui-icon {
border-color: inherit;
.transition(.2s ease-out);
transition: .2s ease-out;
opacity: 0.8;
color: #fff;
width: auto;
Expand Down Expand Up @@ -131,10 +131,10 @@
padding: 7px;
margin-left: 5px;
color: #222;
.box-shadow(1px 1px 4px rgba(0, 0, 0, 0.4));
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
background: #fff;
bottom: 4px;
.border-radius(2px);
border-radius: 2px;

&.ui-state-hover {
background: @buttons-bg-hover !important;
Expand Down Expand Up @@ -194,14 +194,14 @@
.ui-slider-handle {
background-image: none;
background-color: #5d5858;
.border-radius(50%);
border-radius: 50%;
border: 0;
margin-top: -3px;

&.ui-state-hover {
background: #5d5858 !important;
box-shadow: none !important;
.border-radius(50%);
border-radius: 50%;
cursor: pointer;
}
}
Expand All @@ -212,12 +212,13 @@
*/
.elfinder-quicklook {
background: #232323;
.border-radius(2px);
border-radius: 2px;
}

.elfinder-quicklook-titlebar {
background: inherit;

&-icon,
&-icon .ui-icon {
background: transparent;
color: #fff;
Expand All @@ -227,7 +228,7 @@
.elfinder-quicklook-fullscreen .elfinder-quicklook-navbar {
border: inherit;
opacity: inherit;
.border-radius(4px);
border-radius: 4px;
background: rgba(66, 66, 66, 0.73);
}

Expand Down
12 changes: 6 additions & 6 deletions Material/src/less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
border-radius: 3px;
font-weight: normal;
border-color: #888;
.box-shadow(none) !important;
box-shadow: none !important;

&.ui-state-hover {
background: #fff !important;
Expand All @@ -31,7 +31,7 @@
height: 12px;
border: 1px solid #707070;
background-color: #fff;
.border-radius(2px);
border-radius: 2px;
}

input[type="checkbox"]:checked:before {
Expand All @@ -45,7 +45,7 @@
border: 2px solid #707070;
border-top-width: 0;
border-left-width: 0;
.transform(rotate(45deg));
transform: rotate(45deg);
}
}

Expand All @@ -62,10 +62,10 @@
vertical-align: middle;
cursor: pointer;
white-space: nowrap;
.border-radius(3px);
border-radius: 3px;
text-transform: uppercase;
.box-shadow(1px 1px 4px rgba(0, 0, 0, 0.4)) !important;
.transition(all .4s);
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4) !important;
transition: all .4s;
background: @buttons-bg;
color: @buttons-color;
border: none;
Expand Down
4 changes: 2 additions & 2 deletions Material/src/less/icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -792,15 +792,15 @@ div.elfinder-cwd-wrapper-list {
}

.elfinder-drag-helper-move .elfinder-drag-helper-icon-status {
.transform(rotate(180deg));
transform: rotate(180deg);

&:before {
content: '\e854';
}
}

.elfinder-drag-helper-plus .elfinder-drag-helper-icon-status {
.transform(rotate(90deg));
transform: rotate(90deg);

&:before {
content: '\e84c';
Expand Down
2 changes: 1 addition & 1 deletion Material/src/less/mimetypes.less
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

.elfinder-cwd-icon {
background: url("@{images}icons-big.svg") 0 0 no-repeat;
.border-radius(0);
border-radius: 0;

&:before {
font-size: 10px;
Expand Down
38 changes: 0 additions & 38 deletions Material/src/less/mixins.less

This file was deleted.

4 changes: 2 additions & 2 deletions Material/src/less/navbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
.elfinder .elfinder-navbar {
background: @navbar-bg;
.box-shadow(0 1px 8px rgba(0, 0, 0, 0.6));
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
border: none;

.elfinder-lock,
Expand All @@ -17,7 +17,7 @@
.elfinder-navbar-dir {
color: @navbar-dir-color;
cursor: pointer;
.border-radius(2px);
border-radius: 2px;
padding: 5px;
border: none;

Expand Down
4 changes: 2 additions & 2 deletions Material/src/less/theme-gray.less
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@charset "UTF-8";
/*!
* elFinder-Material-Theme (Gray) v2.1.10 (https://github.com/RobiNN1/elFinder-Material-Theme)
* elFinder-Material-Theme (Gray) v2.1.11 (https://github.com/RobiNN1/elFinder-Material-Theme)
* Copyright 2016-2021 Róbert Kelčák {RobiNN}
* Licensed under MIT (https://github.com/RobiNN1/elFinder-Material-Theme/blob/master/LICENSE)
*/
@import "variables-gray";
@import "mixins";
@import "core";
@import "icons";
@import "mimetypes";
Expand Down
4 changes: 2 additions & 2 deletions Material/src/less/theme-light.less
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@charset "UTF-8";
/*!
* elFinder-Material-Theme (Light) v2.1.10 (https://github.com/RobiNN1/elFinder-Material-Theme)
* elFinder-Material-Theme (Light) v2.1.11 (https://github.com/RobiNN1/elFinder-Material-Theme)
* Copyright 2016-2021 Róbert Kelčák {RobiNN}
* Licensed under MIT (https://github.com/RobiNN1/elFinder-Material-Theme/blob/master/LICENSE)
*/
@import "variables-light";
@import "mixins";
@import "core";
@import "icons";
@import "mimetypes";
Expand Down
4 changes: 2 additions & 2 deletions Material/src/less/theme.less
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@charset "UTF-8";
/*!
* elFinder-Material-Theme (Default) v2.1.10 (https://github.com/RobiNN1/elFinder-Material-Theme)
* elFinder-Material-Theme (Default) v2.1.11 (https://github.com/RobiNN1/elFinder-Material-Theme)
* Copyright 2016-2021 Róbert Kelčák {RobiNN}
* Licensed under MIT (https://github.com/RobiNN1/elFinder-Material-Theme/blob/master/LICENSE)
*/
@import "variables";
@import "mixins";
@import "core";
@import "icons";
@import "mimetypes";
Expand Down
14 changes: 7 additions & 7 deletions Material/src/less/toolbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

.elfinder .elfinder-button {
background: transparent;
.border-radius(0);
border-radius: 0;
cursor: pointer;
color: @toolbar-color;
}
Expand All @@ -36,8 +36,8 @@
}

.elfinder-button-menu {
.border-radius(2px);
.box-shadow(0 1px 6px rgba(0, 0, 0, 0.3));
border-radius: 2px;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
border: none;
margin-top: 5px;

Expand Down Expand Up @@ -71,8 +71,8 @@

input {
background: @search-bg;
.border-radius(2px);
.box-sizing(content-box);
border-radius: 2px;
box-sizing: content-box;
border: 0;
margin: 0;
padding: 0 23px;
Expand All @@ -83,11 +83,11 @@
.elfinder-button-menu {
margin-top: 4px;
border: none;
.box-shadow(0 1px 3px rgba(0, 0, 0, .5));
box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

&-menu {
.border-radius(0);
border-radius: 0;
top: 30px !important;

.ui-button {
Expand Down
Loading

0 comments on commit a847501

Please sign in to comment.